@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Poppins:wght@300;400;500&display=swap');



/* --- Global Variables & Resets --- */
:root {
    --primary-green: #2d5a27;
    --light-green: #eef5ed;
    --accent-green: #689f38;
    --text-dark: #2c3e50;
    --text-light: #666;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
background-color: #b3b79eb8;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.logo img{  
    height: 65px;

}
/* --- Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.2rem 5%;
    background: #f7f7f8;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
right: 0;
left: 0;
        width: 93%;
    margin: auto;
    border: 1px solid #eee;
    border-radius: 100px;
}

.nav-links a {
    text-decoration: none;
    color: #0b3a1d;
    margin: 0 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-green);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-icon {
    width: 42px;
    height: 42px;
    border: 1px solid #dce8d2;
    border-radius: 50%;
    background: #fbfdf4;
    color: #1f5c22;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-icon:hover {
    background: #eef5dc;
    color: #123517;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
}

/* --- Buttons --- */
.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    max-width: 250px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--accent-green);
    transform: translateY(-2px);
}

/* --- Sections & Layouts --- */
section {
    padding: 5rem 5%;
}


/* =========================================
           HERO SECTION STYLES
        ========================================= */
        .new-hero-section {
            /* Simulating the watercolor background from your image */
            background-color: #f8fcf0;
            background-image: radial-gradient(circle at left center, #eef5dc 0%, transparent 50%),
                              radial-gradient(circle at right bottom, #eaf2d3 0%, transparent 40%);
            padding: 100px 5%;
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content-wrapper {
            max-width: 700px;
            position: relative;
            z-index: 2;
            text-align: left;
        }

        .hero-kicker {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            font-family: 'Poppins', sans-serif;
            /*font-size: 0.85rem;*/
            color: #5c8f33;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .hero-kicker::before, .hero-kicker::after {
            content: "";
            height: 1px;
            width: 60px;
            background-color: #a2c77e;
        }

        /* Adjusts the left line so it touches the edge of the container */
        .hero-kicker::before {
            margin-right: 5px;
        }

        .hero-content-wrapper h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem;
            color: #123517;
            line-height: 1.1;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .hero-content-wrapper h1 i {
            color: #3e6b1d; /* Slightly lighter green for the italic text */
            font-weight: 500;
        }

        .hero-subtitle {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: #3b5037;
            margin-bottom: 25px;
            font-weight: 500;
        }

        .hero-content-wrapper p {
            font-family: 'Poppins', sans-serif;
            font-size: 1.05rem;
            color: #4f6348;
            line-height: 1.7;
            margin-bottom: 40px;
            max-width: 600px;
        }

        .hero-btn {
            background-color: #1e4620;
            color: white;
            border: none;
            padding: 16px 35px;
            border-radius: 40px;
            font-family: 'Poppins', sans-serif;
            /*font-size: 0.95rem;*/
            font-weight: 600;
            letter-spacing: 0.5px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: background-color 0.3s, transform 0.2s;
        }

        .hero-btn:hover {
            background-color: #123517;
            transform: translateY(-2px);
        }

        /* Responsive Hero */
        @media (max-width: 768px) {
            .new-hero-section { padding: 80px 5%; text-align: center; }
            .hero-content-wrapper { margin: 0 auto; }
            .hero-kicker { justify-content: center; }
            .hero-content-wrapper h1 { font-size: 3rem; }
            .hero-subtitle { font-size: 1.4rem; }
        }

        
/* Find the .hero class in your CSS and replace it with this: */
.hero {
    background:url('images/banner.jpeg') center/cover no-repeat;
    min-height: 86vh;
    display: flex;
    align-items: center;
}

/* Add this new class anywhere in your CSS for the product images: */
.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.hero-content {
    max-width: 800px;
    width: min(100%, 70%);
    padding: 0rem 0rem 0rem 8rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px); */
    color: var(--primary-green);
    /* box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15); */
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--primary-green);
}

.hero p {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.feature{
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 100;
}

.feature p {
    color: var(--primary-green);
    font-weight: 200;
}
.feature i {
    color: rgb(9 75 19);
    font-size: 2rem;
}

.features {
      filter: drop-shadow(0px 0px 14px #3a393914);
    display: flex;
    justify-content: space-around;
    background-color: var(--primary-green);
    background-image: url('images/bg_line.png');
    background-repeat: repeat;
    background-position: center;
    color: var(--primary-green);
    padding: 2rem 5%;
    flex-wrap: wrap;
}

.about-section,
.story-section {
    background: linear-gradient(to top, rgb(217, 235, 190) 0%, rgb(217, 235, 190) 10%, rgba(217, 235, 190, 0) 35%), #fbfdf4;
}

.split-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-section > div {
    flex: 1;
}

/* --- Cards & Grids --- */
.vision-mission, .grid-container, .footer-grid {
    display: grid;
    gap: 2rem;
}

.vision-mission {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    background-color: var(--light-green);
}

.grid-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.icons-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    text-align: center;
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.img-placeholder {
    height: 200px;
    background: var(--light-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-green);
    font-weight: bold;
}

/* --- Contact Form --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input, .contact-form textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: var(--font-body);
}

/* --- Footer --- */
.footer {
    background: var(--primary-green);
    color: var(--white);
}

.footer h4 {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* --- Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
    .split-section, .split-section.reverse, .contact-container {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .features {
        display: none;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        width: 100%;
        padding: 1rem 1.25rem;
        border-radius: 24px;
        border: 1px solid #dce8d2;
        background: #fbfdf4;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .nav-links.nav-links-open {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        margin: 0;
        padding: 0.75rem 0;
        border-bottom: 1px solid #eef3e6;
    }

    .nav-links a:last-child {
        border-bottom: 0;
    }

    .nav-icons {
        gap: 0.5rem;
    }

    .nav-icon {
        width: 38px;
        height: 38px;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 0rem;
    }
}


.about_img{
    width: 100%;
  filter: drop-shadow(0px 0px 14px #3a393914);
    object-fit: cover;
    border-radius: 10px;    
}

.section-title{
font-family:'Playfair Display',serif;
font-size:70px;
color:#1f5c22;
margin-bottom:10px;
font-weight:700;
}

.title-line{
display:flex;
align-items:center;
gap:10px;
margin-bottom:30px;
}

.title-line span{
width:260px;
height:2px;
background:#89a96a;
}

.title-line i{
    color: #89a96a;
    font-size: 20px;
    margin-left: -14px;
    transform: rotate(38deg);
}

.sub-title{
font-family:'Playfair Display',serif;
font-size:38px;
line-height:1.3;
color:#6f9447;
margin-bottom:20px;
}

.text-content p{
font-family:'Poppins',sans-serif;
font-size:18px;
line-height:1.9;
color:#333;
}

.about_img{
width:100%;
/* max-width:500px; */
border-radius:20px;
object-fit:cover;
}

@media(max-width:768px){

.section-title{
font-size:48px;
}

.sub-title{
font-size:26px;
}

.title-line span{
width:150px;
}

.text-content p{
font-size:16px;
}
}



.vision-mission-section {
            background-color: #f6faeb; /* Light yellowish-green watercolor base */
            background-image: radial-gradient(circle at top left, #ebf5d9 0%, transparent 40%),
                              radial-gradient(circle at bottom right, #ebf5d9 0%, transparent 40%);
            padding: 80px 20px;
            text-align: center;
            position: relative;
        }

        .vm-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            color: #123517;
            margin-bottom: 5px;
            font-weight: 700;
        }

        .vm-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 10px;
        }

        .vm-divider::before, .vm-divider::after {
            content: "";
            width: 80px;
            height: 1px;
            background-color: #6b8f52;
        }

        .vm-divider i {
            color: #4a7530;
            font-size: 1.1rem;
        }

        .vm-header p {
            font-family: 'Poppins', sans-serif;
            color: #3b5037;
            font-size: 1.1rem;
            margin-bottom: 50px;
        }

        .vm-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
            flex-wrap: wrap;
        }

        .vm-card {
            background: linear-gradient(to top, rgb(217, 235, 190) 0%, rgb(217, 235, 190) 10%, rgba(217, 235, 190, 0) 35%), #fbfdf4;
            border: 1px solid #e1e9cf;
            border-radius: 20px;
            padding: 50px 40px;
            width: 100%;
            max-width: 480px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.02);
            text-align: center;
        }

        .vm-icon-wrapper {
            width: 120px;
            height: 120px;
            background: #eef5dc; 
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: #3e6b1d;
            font-size: 3.5rem;
        }

        .vm-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: #123517;
            margin-bottom: 5px;
        }

        .vm-card-divider {
            color: #4a7530;
            font-size: 1rem;
            margin-bottom: 25px;
        }

        .vm-card-divider::before, .vm-card-divider::after {
            content: "—";
            color: #a4c28c;
            margin: 0 10px;
            font-weight: 300;
        }

        /* Vision Card Text */
        .vm-card p.vision-text {
            font-family: 'Poppins', sans-serif;
            color: #3b5037;
            font-size: 1rem;
            line-height: 1.8;
            font-weight: 400;
        }

        /* Mission Card List */
        .vm-list {
            list-style: none;
            padding: 0;
            text-align: left;
            margin-top: 20px;
        }

        .vm-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            font-family: 'Poppins', sans-serif;
            color: #2b3b28;
            font-size: 0.95rem;
            padding-bottom: 15px;
            border-bottom: 1px solid #ebf0d9;
        }

        .vm-list li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .vm-list li .icon-bg {
            background-color: #639841;
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 0.85rem;
        }
        
        @media (max-width: 768px) {
            .vm-container { flex-direction: column; align-items: center; }
            .vm-header h2 { font-size: 2.5rem; }
        }


        /* =========================================
           PRODUCT CATEGORIES SECTION STYLES
        ========================================= */
        .product-categories-section {
            background-color: #f8fbf0;
            padding: 80px 20px;
            text-align: center;
            position: relative;
        }

        .pc-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            color: #123517;
            margin-bottom: 5px;
            font-weight: 700;
        }

        .pc-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 10px;
        }

        .pc-divider::before, .pc-divider::after {
            content: "";
            width: 80px;
            height: 1px;
            background-color: #6b8f52;
        }

        .pc-divider i {
            color: #4a7530;
            font-size: 1.1rem;
        }

        .pc-header p {
            font-family: 'Poppins', sans-serif;
            color: #5c7056;
            font-size: 1.1rem;
            margin-bottom: 60px;
        }

        .pc-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pc-card {
            background: #fbfdf4;
            border: 1px solid #e1e9cf;
            border-radius: 20px;
            padding: 0 30px 30px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
            text-align: center;
            position: relative;
            transition: transform 0.3s ease;
        }

        .pc-card:hover {
            transform: translateY(-5px);
        }

        /* Container for the image and floating icon */
        .pc-image-container {
            position: relative;
            margin-top: 40px; 
            margin-bottom: 25px;
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            /* Simulates the watercolor splash behind the image */
            background: radial-gradient(circle, rgba(216,233,186,0.6) 0%, rgba(216,233,186,0) 65%);
        }

        /* Floating Circular Top Icon */
        .pc-top-icon {
            position: absolute;
            top: -70px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 70px;
            background-color: #5c8f33; /* Dark green badge */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            border: 5px solid #fbfdf4; /* Matches card background to look cut out */
            z-index: 5;
        }

        .pc-img {
            max-width: 100%;
            max-height: 180px;
            object-fit: contain;
            z-index: 2;
            position: relative;
        }

        .pc-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: #123517;
            margin-bottom: 5px;
        }

        .pc-card-divider {
            color: #6b8f52;
            font-size: 1rem;
            margin-bottom: 15px;
        }

        .pc-card p {
            font-family: 'Poppins', sans-serif;
            color: #4f6348;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .pc-bottom-leaf {
            color: #c9dbb3;
            font-size: 2rem;
            opacity: 0.6;
        }

        /* Responsive Adjustments */
        @media (max-width: 1024px) {
            .wcu-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
        }
        @media (max-width: 900px) {
            .pc-grid { grid-template-columns: repeat(1, 1fr); gap: 50px; }
        }
        @media (max-width: 768px) {
            .vm-container { flex-direction: column; align-items: center; }
            .vm-header h2, .wcu-header h2, .pc-header h2 { font-size: 2.5rem; }
        }
        @media (max-width: 600px) {
            .wcu-grid { grid-template-columns: repeat(1, 1fr); }
            
            .hero-kicker{
                display: inline-block!important;
                font-size:0.55rem;
                margin-top: 10px;
            }
            .cf-feature-text{
                width: 200px;
            }
        }



          .contact-us-section {
            background-color: #f8fbf0;
            background-image: radial-gradient(circle at top right, #ebf5d9 0%, transparent 30%),
                              radial-gradient(circle at bottom left, #ebf5d9 0%, transparent 30%);
            padding: 80px 20px;
            text-align: center;
            position: relative;
        }

        .contact-header h2 { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: #123517; margin-bottom: 5px; font-weight: 700; }
        .contact-header p { font-family: 'Poppins', sans-serif; color: #5c7056; font-size: 1.05rem; margin-bottom: 50px; line-height: 1.6; }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 20px;
            max-width: 1100px;
            margin: 0 auto;
            text-align: left;
        }

        .contact-card {
            background: #fbfdf4;
            border: 1px solid #e1e9cf;
            border-radius: 20px;
            position: relative;
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
            overflow: hidden; 
        }

        .contact-info-card { padding: 40px 0 0 0; display: flex; flex-direction: column; }
        .contact-info-card h3, .contact-form-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: #123517;
            text-align: center;
            margin-bottom: 30px;
        }

        .info-list { padding: 0 40px; flex-grow: 1; }
        .info-item { display: flex; align-items: flex-start; gap: 20px; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid #e1e9cf; }
        .info-item:last-child { border-bottom: none; margin-bottom: 0; }
        
        .info-icon {
            width: 45px; height: 45px;
            background: #eef5dc;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: #3e6b1d; font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .info-text h4 { font-family: 'Poppins', sans-serif; font-size: 0.95rem; color: #123517; font-weight: 600; margin-bottom: 3px; }
        .info-text p ,.info-text p a { font-family: 'Poppins', sans-serif; font-size: 0.9rem; color: #4f6348; line-height: 1.6; }

        .farm-image-wrapper { width: 100%; margin-top: 20px; display: flex; align-items: flex-end; }
        .farm-image-wrapper img { width: 100%; height: auto; display: block; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; }

        .contact-form-card { padding: 40px; }
        .contact-form-card {
            background: linear-gradient(to top, rgb(217, 235, 190) 0%, rgb(217, 235, 190) 1%, rgba(217, 235, 190, 0) 11%), #fbfdf4;
        }
        .form-row { display: flex; gap: 20px; margin-bottom: 20px; }
        .input-group { position: relative; width: 100%; }
        
        .input-group i {
            position: absolute;
            top: 15px; 
            left: 15px;
            color: #8ba37b;
            font-size: 1rem;
        }
        .input-group textarea ~ i { top: 18px; } 
        
        .input-group input, .input-group textarea {
            width: 100%;
            background: transparent;
            border: 1px solid #e1e9cf;
            border-radius: 8px;
            padding: 12px 15px 12px 45px; 
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            color: #2b3b28;
            outline: none;
            transition: border-color 0.3s;
        }
        .input-group input:focus, .input-group textarea:focus { border-color: #6b8f52; }
        .input-group input::placeholder, .input-group textarea::placeholder { color: #8ba37b; }
        .input-group textarea { resize: vertical; min-height: 130px; }

        .submit-btn-wrapper { text-align: center; margin-top: 20px; }
        .form-status {
            min-height: 24px;
            margin: 10px 0 0;
            text-align: center;
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            color: #3b5037;
        }
        .form-status.is-error {
            color: #a13a2b;
        }
        .form-status.is-success {
            color: #2d5a27;
        }
        .submit-btn {
            background-color: #1b3b13; 
            color: white;
            font-family: 'Poppins', sans-serif;
            font-size: 1.05rem;
            font-weight: 500;
            padding: 14px 45px;
            border: none;
            border-radius: 30px; 
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: background-color 0.3s, transform 0.2s;
        }
        .submit-btn:hover { background-color: #12280d; transform: translateY(-2px); }
        .submit-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .contact-footer-text { margin-top: 60px; text-align: center; }
        .contact-footer-text p { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #4f6348; line-height: 1.6; }
        .contact-footer-text p strong { color: #123517; font-weight: 600; }

        /* Responsive Adjustments */
        @media (max-width: 1024px) {
            .wcu-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
            .contact-wrapper { grid-template-columns: 1fr; }
        }
        @media (max-width: 900px) {
            .pc-grid { grid-template-columns: repeat(1, 1fr); gap: 50px; }
            .form-row { flex-direction: column; gap: 20px; }
        }
        @media (max-width: 768px) {
            .vm-container { flex-direction: column; align-items: center; }
            .vm-header h2, .wcu-header h2, .pc-header h2, .contact-header h2 { font-size: 2.5rem; }
        }
        @media (max-width: 600px) {
            .wcu-grid { grid-template-columns: repeat(1, 1fr); }
            .contact-info-card, .contact-form-card { padding: 30px 20px; }
            .info-list { padding: 0; }
        }


                /* =========================================
           NEW FOOTER SECTION STYLES
        ========================================= */
        .custom-site-footer {
            background-color: #fcfdf8;
            position: relative;
            font-family: 'Poppins', sans-serif;
            color: #4f6348;
            overflow: hidden;
            /* Watercolor gradient effect */
            background-image: 
                radial-gradient(circle at top left, rgba(162, 224, 88, 0.2) 0%, transparent 30%),
                radial-gradient(circle at top right, rgba(162, 224, 88, 0.2) 0%, transparent 30%);
        }

        /* Top Banner */
        .cf-top-banner-wrapper {
            padding: 40px 20px;
            display: flex;
            justify-content: center;
        }

        .cf-top-banner {
            background: #fbfdf4;
            border: 1px solid #e1e9cf;
            border-radius: 50px;
            padding: 10px 30px;
            display: flex;
            align-items: center;
            gap: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
        }

        .cf-top-banner .icon-left {
            width: 40px;
            height: 40px;
            background: #4a7530;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .cf-top-banner h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: #123517;
            font-weight: 600;
            margin: 0 20px;
            position: relative;
        }
        
        /* Little green swoosh under the banner text */
        .cf-top-banner h3::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 20%;
            width: 60%;
            height: 2px;
            background: #a2c77e;
            border-radius: 2px;
        }

        .cf-top-banner .icon-right {
            color: #6b8f52;
            font-size: 1.5rem;
        }

        /* Main Footer Links Area */
        .cf-main-area {
            max-width: 1300px;
            margin: 0 auto;
            padding: 40px 20px 60px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr 1.5fr;
            gap: 40px;
            border-top: 1px solid #e1e9cf;
            border-bottom: 1px solid #e1e9cf;
        }

        .cf-brand-col .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: #123517;
            font-weight: 700;
        }

        .cf-brand-col .brand-logo i {
            color: #4a7530;
            font-size: 2.2rem;
        }

        .cf-brand-col p {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 25px;
            color: #3b5037;
            max-width: 90%;
        }

        .cf-socials {
            display: flex;
            gap: 15px;
        }

        .cf-socials a {
            width: 35px;
            height: 35px;
            background: #eef5dc;
            color: #123517;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .cf-socials a:hover {
            background: #4a7530;
            color: white;
        }

        .cf-col h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            color: #123517;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .cf-divider {
            position: absolute;
            bottom: 0;
            left: 0;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .cf-divider::before, .cf-divider::after {
            content: "";
            width: 20px;
            height: 1px;
            background: #a2c77e;
        }

        .cf-divider i {
            color: #6b8f52;
            font-size: 0.6rem;
        }

        .cf-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .cf-col ul li {
            margin-bottom: 12px;
        }

        .cf-col ul li a {
            color: #4f6348;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

        .cf-col ul li a:hover {
            color: #123517;
            font-weight: 500;
        }

        .cf-newsletter p {
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .cf-input-wrap {
            position: relative;
            margin-bottom: 15px;
        }

        .cf-input-wrap input {
            width: 100%;
            padding: 12px 40px 12px 15px;
            border: 1px solid #d1dec3;
            border-radius: 8px;
            background: transparent;
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
            outline: none;
        }

        .cf-input-wrap i {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #6b8f52;
        }

        .cf-btn {
            width: 100%;
            padding: 12px;
            background: #4a7530;
            color: white;
            border: none;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.3s;
        }

        .cf-btn:hover {
            background: #2b4b1a;
        }

        /* Features Strip */
        .cf-features {
            max-width: 1300px;
            margin: 0 auto;
            padding: 40px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cf-feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 0 20px;
            border-right: 1px solid #e1e9cf;
            flex: 1;
        }

        .cf-feature-item:last-child {
            border-right: none;
        }

        .cf-feature-icon {
            width: 45px;
            height: 45px;
            background: #eef5dc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #123517;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .cf-feature-text h5 {
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            color: #123517;
            margin-bottom: 2px;
        }

        .cf-feature-text p {
            font-size: 0.8rem;
            color: #6b8f52;
            margin: 0;
        }

        /* Bottom Dark Bar */
        .cf-bottom-bar {
            background: #1b391a;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #a4c28c;
            font-size: 0.85rem;
        }

        .cf-bottom-links {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .cf-bottom-links a {
            color: #eef5dc;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .cf-bottom-links a:hover {
            color: white;
        }

        .cf-bottom-links .separator {
            color: #4a7530;
        }

        .cf-scroll-top {
            width: 35px;
            height: 35px;
            background: #4a7530;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: background 0.3s;
        }

        .cf-scroll-top:hover {
            background: #6b8f52;
        }

        /* Responsive */
        @media (max-width: 1100px) {
            .cf-main-area { grid-template-columns: repeat(3, 1fr); }
            .cf-brand-col, .cf-newsletter { grid-column: span 3; }
            .cf-newsletter { max-width: 400px; margin: 0 auto; text-align: center; }
            .cf-divider { left: 50%; transform: translateX(-50%); }
            .cf-col h4, .cf-col ul { text-align: center; }
        }
        @media (max-width: 900px) {
            .cf-features { flex-wrap: wrap; gap: 30px; justify-content: center; }
            .cf-feature-item { border-right: none; min-width: 250px; justify-content: center; }
            .cf-bottom-bar { flex-direction: column; gap: 15px; text-align: center; }
        }
        @media (max-width: 600px) {
            .cf-top-banner { flex-direction: column; text-align: center; border-radius: 20px; }
            .cf-top-banner h3::after { display: none; }
            .cf-main-area { grid-template-columns: 1fr; }
            .cf-brand-col, .cf-newsletter { grid-column: span 1; }
            .cf-bottom-links { flex-wrap: wrap; justify-content: center; }
        }


        .brand-logo{
                margin: auto;
    width: 140px;
        }

          .brand-logo img{
               
    width: 140px;
        }