* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0F0F0F;
    color: #F5F5F5;
}

/* ================= NAVBAR ================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 60px;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: #F5F5F5;
    font-size: 16px;
    letter-spacing: 1px;
    transition: 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #00C26E;
    transition: 0.3s ease;
}

nav a:hover {
    color: #00C26E;
}

nav a:hover::after {
    width: 100%;
}

nav a.active {
    color: #00C26E;
}

nav a.active::after {
    width: 100%;
}

/* ================= HERO ================= */

.page-hero {
    height: 50vh;
    padding-top: 120px;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
        url("https://i0.wp.com/picjumbo.com/wp-content/uploads/upscale-luxury-villa-with-swimming-pool-architect-sketching-plan-free-photo.jpg?w=2210&quality=70") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    max-width: 650px;
    color: #B5B5B5;
    line-height: 1.7;
}

/* ================= STORY ================= */

.about-story {
    padding: 120px 80px;
    background: #111;
}

.story-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: auto;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.story-text p {
    color: #b5b5b5;
    line-height: 1.8;
    margin-bottom: 15px;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* ================= VISION MISSION ================= */

.vision-mission {
    padding: 120px 80px;
    background: #0f0f0f;
}

.vm-container {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: auto;
}

.vm-card {
    flex: 1;
    background: #1a1a1a;
    padding: 40px;
    border-radius: 14px;
}

.vm-card h3 {
    margin-bottom: 10px;
    color: #00C26E;
}

.vm-card p {
    color: #b5b5b5;
    line-height: 1.7;
}

/* ================= STATS ================= */

.about-stats {
    padding: 120px 80px;
    background: #111;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.stat-box h2 {
    font-size: 48px;
    color: #00C26E;
    margin-bottom: 10px;
}

.stat-box p {
    color: #b5b5b5;
}

/* ================= WHY US ================= */

.why-us {
    padding: 120px 80px;
    background: #0f0f0f;
    text-align: center;
}

.why-container h2 {
    font-size: 42px;
    margin-bottom: 60px;
    font-family: 'Playfair Display', serif;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: auto;
}

.why-card {
    background: #1a1a1a;
    padding: 35px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
}

.why-card h3 {
    color: #00C26E;
    margin-bottom: 10px;
}

.why-card p {
    color: #b5b5b5;
    line-height: 1.7;
}

/* ================= FOUNDER ================= */

.founder {
    padding: 120px 80px;
    background: #111;
}

.founder-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    margin: auto;
}

.founder-img img {
    width: 350px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.founder-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.founder-text p {
    color: #b5b5b5;
    line-height: 1.8;
}

/* ================= CTA ================= */

.about-cta {
    padding: 120px 80px;
    background: #0f0f0f;
    text-align: center;
}

.cta-container h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.cta-container p {
    color: #b5b5b5;
    margin-bottom: 30px;
}

.cta-btn {
    padding: 14px 35px;
    background: #00C26E;
    color: black;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #00a65c;
    color: white;
    transform: translateY(-2px);
}

/* ================= FOOTER ================= */

.footer {
    background: #0a0a0a;
    padding: 80px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.footer-logo img {
    width: 130px;
    margin-bottom: 20px;
}

.footer-description {
    max-width: 380px;
}

.footer-description p {
    color: #bbbbbb;
    line-height: 1.7;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 70px;
}

.footer-links p {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #bbbbbb;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #00c26e;
}

.contact-links span {
    color: white;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #777;
    font-size: 13px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */

@media (max-width:1024px) {

    header {
        padding: 15px 40px;
    }

    .story-container,
    .founder-container {
        gap: 50px;
    }

    .about-story,
    .vision-mission,
    .about-stats,
    .why-us,
    .founder,
    .about-cta {
        padding: 100px 50px;
    }

    .footer-container {
        padding: 0 40px;
    }

}

/* Mobile */

@media (max-width:768px) {

    header {
        padding: 15px 25px;
    }

    .page-hero {
        height: 45vh;
        padding-top: 100px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .about-story,
    .vision-mission,
    .about-stats,
    .why-us,
    .founder,
    .about-cta {
        padding: 80px 25px;
    }

    .story-container,
    .vm-container,
    .founder-container {
        flex-direction: column;
        text-align: center;
    }

    .stats-container {
        flex-direction: column;
        gap: 40px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .footer-container {
        padding: 0 25px;
    }

}

/* Small Phones */

@media (max-width:480px) {

    .logo img {
        height: 40px;
    }

    nav ul {
        gap: 12px;
    }

    .page-hero h1 {
        font-size: 30px;
    }

    .story-text h2,
    .founder-text h2,
    .why-container h2,
    .cta-container h2 {
        font-size: 30px;
    }

    .vm-card {
        padding: 30px;
    }

    .stat-box h2 {
        font-size: 36px;
    }

    .cta-btn {
        padding: 12px 28px;
        font-size: 14px;
    }

}