
       /* === COLOR PALETTE === */
        :root {
            --dark-green: #748873;
            --beige: #D1A980;
            --light-beige: #E5E0D8;
            --off-white: #F8F8F8;
            --white: #FFFFFF;
        }

        /* === RESET & BASE === */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--off-white);
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            transition: all 0.3s ease;
        }

        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
/* ====================== HEADER & NAV ====================== */
/* header {
    position: relative;
    background: linear-gradient(135deg, var(--dark-green), #39a026);
    color: white;
    overflow: hidden;
    padding: 2rem 1rem 0;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 6px 25px rgba(116,136,115,.25);
} */

/* Subtle overlay image (optional – you can replace with your own) */
/* header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1581093450021-4a7360e9a6b5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover;
    opacity: .12;
    z-index: 0;
} */
header > * { position: relative; z-index: 1; }

/* Logo / Title */
.header-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    /* margin-bottom: .5rem; */
    color:var(--light-beige);
}
.header-title img {
  justify-self: flex-start;
  height: 70px;
    /* filter: brightness(0) invert(1); */
}
.header-title h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: .5px;
    animation: slideDown 1s ease-out;
  white-space: nowrap;
}
.header-title p {
    font-size: 1.1rem;
    opacity: .9;
    margin: 0;
}

/* ==== NAV BAR ==== */
nav {
    background: rgba(112, 130, 112, 0.918);
    backdrop-filter: blur(8px);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.nav-container {
    max-width: 1200px;
    /* margin: 0 auto; */
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

/* Desktop links */
.nav-links {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding: .4rem 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2.5px;
    background: var(--beige);
    transition: all .3s ease;
    transform: translateX(-50%);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 85%; }
.nav-links a:hover,
.nav-links a.active { color: var(--beige); }

/* Hamburger button – visible only on small screens */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all .3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px,-6px); }

/* Mobile menu (hidden by default) */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-green);
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
}
.mobile-menu.open {
    max-height: 400px;
    padding: 1rem 0;
}
.mobile-menu a {
    display: block;
    color: white;
    padding: .8rem 2rem;
    font-weight: 600;
    transition: background .3s;
}
.mobile-menu a:hover,
.mobile-menu a.active { background: rgba(209,169,128,.2); color: var(--beige); }

/* ==== RESPONSIVE ==== */
@media (max-width: 992px) {
    .nav-links { display: none; }               /* hide desktop links */
    .hamburger { display: flex; }               /* show hamburger */
    .mobile-menu { display: block; }            /* enable mobile menu */
}
@media (max-width: 576px) {
    .header-title{gap:.7rem} 
    .header-title h1 { font-size: 1.8rem; }
    .header-title img { height: 42px; }
}
@media (max-width: 420px) {
     .header-title{gap:.5rem} 
    .header-title h1 { font-size: 1.5rem; }
    .header-title img { height: 40px; }
}

/* ==== ANIMATIONS ==== */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0); }
}

        /* === HERO SECTION === */
        .hero {
            height: 85vh;
            min-height: 500px;
            background: linear-gradient(rgba(116, 136, 115, 0.4), rgba(116, 136, 115, 0.6)),
                        url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
           background-size: cover;
                        display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
            animation: fadeInDown 1s ease-out;
        }

        .hero p {
            font-size: 1.4rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .btn {
            background: var(--beige);
            color: white;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(209, 169, 128, 0.3);
            transition: all 0.4s ease;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .btn:hover {
            background: #c89a70;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(209, 169, 128, 0.4);
        }

        /* === SECTION STYLING === */
        section {
            padding: 4rem 1rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--dark-green);
            position: relative;
        }

        h2::after {
            content: '';
            width: 80px;
            height: 4px;
            background: var(--beige);
            display: block;
            margin: 1rem auto;
            border-radius: 2px;
        }

        /* === STATS === */
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
            text-align: center;
        }

        .stat-item {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
        }

        .stat-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(116, 136, 115, 0.1);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--beige);
            margin-bottom: 0.5rem;
        }

        /* === SERVICES GRID === */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.8rem;
            margin-top: 2rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            transition: all 0.4s ease;
            border-left: 5px solid var(--beige);
            opacity: 0;
            transform: translateY(30px);
        }

        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(116, 136, 115, 0.15);
            border-left-color: var(--dark-green);
        }

        .service-card h3 {
            color: var(--dark-green);
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .service-card i {
            font-size: 2rem;
            color: var(--beige);
            margin-bottom: 1rem;
        }

        /* === CONTACT INFO === */
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .contact-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            background: var(--light-beige);
        }

        .contact-card i {
            font-size: 2.2rem;
            color: var(--beige);
            margin-bottom: 1rem;
        }

        /* === FOOTER === */
        footer {
            background: var(--dark-green);
            color: white;
            text-align: center;
            padding: 3rem 1rem;
            margin-top: 4rem;
        }

        footer p {
            opacity: 0.9;
        }

        /* === WHATSAPP ICON === */
        #whatsapp-icon {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 1000;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            animation: pulse 2s infinite;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        #whatsapp-icon:hover {
            transform: scale(1.15);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
        }

        #whatsapp-icon i {
            color: white;
            font-size: 1.9rem;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        /* === ANIMATIONS === */
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* === RESPONSIVE === */
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.8rem; }
            .hero p { font-size: 1.2rem; }
        }

        @media (max-width: 768px) {
            header h1 { font-size: 2.2rem; }
            .hero { height: 70vh; }
            .hero h1 { font-size: 2.3rem; }
            nav a { display: block; margin: 0.8rem 0; }
            h2 { font-size: 2rem; }
        }

        @media (max-width: 576px) {
            .hero h1 { font-size: 2rem; }
            .hero p { font-size: 1rem; }
            .btn { padding: 0.7rem 1.5rem; font-size: 0.9rem; }
        }