/* Reset & Fonts */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fafafa;
}

/* Navbar */
.navbar {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 1rem;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-links {
    display: flex;
}

.nav-links a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1abc9c;
}

/* Hamburger Menu (hidden on desktop) */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #2c3e50;
}

/* =========================
   Responsive Design
========================= */
@media (max-width: 768px) {

    /* Navbar */
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        width: 220px;
        padding: 1rem;
        display: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 0.8rem 0;
        font-size: 1rem;
    }

    .menu-toggle {
        display: block;
    }

}


/* General Layout */
.about {
    font-family: "Poppins", sans-serif;
    color: #2b2b2b;
    line-height: 1.6;
    padding: 2rem 0;
}

/* Hero Banner */
.about-banner {
    position: relative;
    height: 60vh;
    background: url("https://images.unsplash.com/photo-1503614472-8c93d56e92ce?q=80&w=1111&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-overlay {
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
}

.banner-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.banner-overlay p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}


/* Hero Section */
.about-hero {
    padding: 4rem 8rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-hero h1 {
    font-size: 2.5rem;
    color: #1a3d2f;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.1rem;
    max-width: 500px;
}

.about-hero img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Story Section */
.about-story {
    padding: 4rem 8rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-story h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a3d2f;
}

.about-story img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Values Section */
.about-values {
    padding: 4rem 8rem;
    text-align: center;
    margin-bottom: 4rem;
}

.about-values h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a3d2f;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card img {
    width: 60px;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a3d2f;
}

/* Responsive */
@media (max-width: 900px) {

    .about-hero,
    .about-story {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-hero p,
    .about-story p {
        margin: 0 auto;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}



/* Footer */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
}

.footer-nav {
    margin-top: 1rem;
}

.footer-nav a {
    margin: 0 0.8rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #1abc9c;
}