
        @font-face {
        font-family: 'Aleo';
        src: 
             url('/fonts/Aleo-Medium.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
}
  @font-face {
        font-family: 'Outfit';
        src: 
             url('/fonts/Outfit-VariableFont_wght.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
}
@font-face {
        font-family: 'Outfit_Bold';
        src: 
             url('/fonts/Outfit-VariableFont_wght.ttf') format('truetype');
        font-weight: bold;
        font-style: normal;
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Outfit', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
    
        h2{
            font-family: 'Aleo', serif;
        }
        h3, h4{
            font-family: 'Outfit_Bold', sans-serif;
        }
     
        li{
            font-family: 'Outfit', sans-serif;
        }
        a{
            font-family: 'Outfit', sans-serif;
        }
        p{
            font-family: 'Outfit', sans-serif;
        }
        .blog-date{
            font-family: 'Outfit', sans-serif;
           
        }
        .highlight{
            font-family: 'Aleo', serif;
        }
     

        /* Loading Screen */
        #loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: #f5f5f0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        #loading-screen.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .logo-loading {
            /* width: 120px;
            height: 120px;
            margin-bottom: 20px; */
            /* Layout Properties */
            /* top: 420px;
            left: 797px; */
            width: 327px;
            height: 239px;
            /* UI Properties */
            opacity: 1;
            animation: pulse 2s infinite;
        }

        .logo-loading img {
            width: 100%;
            height: 100%;
        }

        .loading-text {
            font-size: 2.5rem;
            color: #8b956d;
            letter-spacing: 3px;
            margin-top: 20px;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Main Content */
        #main-content {
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        #main-content.visible {
            opacity: 1;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            /* background: transparent; */
            backdrop-filter: blur(10px);
            padding: 15px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease; /* Smooth transitions */
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .header-logo svg {
            width: 40px;
            height: 40px;
        }

        .header-logo span {
            font-size: 1.2rem;
            color: #8b956d;
            font-weight: 300;
            letter-spacing: 1px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        nav a {
            font-family: 'Outfit', sans-serif;
            text-decoration: none;
            color: #666;
            font-weight: 300;
            transition: color 0.3s ease;
            font-size: 1rem;
        }

        nav a:hover {
            color: #c49b7a;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: #f5f5f0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
        }

        .hero-logo {
            /* width: 150px;
            height: 150px;
            margin-bottom: 30px; */
            top: 420px;
            left: 797px;
            width: 327px;
            height: 239px;
            /* UI Properties */
            opacity: 1;
        }

        .hero-logo svg {
            width: 100%;
            height: 100%;
        }

        .hero-title {
            font-size: 4rem;
            color: #8b956d;
            font-weight: 300;
            letter-spacing: 5px;
            margin-bottom: 10px;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: #999;
            letter-spacing: 3px;
            font-weight: 300;
        }

        /* About Section */
         .about-section {
            height: 100vh;
            padding: 100px 50px;
            background: #f5f5f0;
            position: relative;
            min-height: 100vh;
            overflow: hidden;
        }

        .about-image {
            position: absolute;
            left: 0;
            top: 65%;
            transform: translateY(-50%);
            z-index: 1;
        }

        .plant-illustration {
            width: auto;
            height: 80vh;
            /* max-height: 600px; */
            opacity: 1;
            object-fit: contain;
        }

        .about-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            text-align: center;
            max-width: 800px;
            width: 100%;
            padding: 60px 40px;
        }

        .about-content h2 {
            font-family: 'Aleo', serif;
            font-size: 3.5rem;
            color: #41453B;
            margin-bottom: 40px;
            font-weight: 300;
            line-height: 1.2;
        }

        

        .about-content p {
            font-family: "Outfit", sans-serif;
            font-size: 1.1rem;
            color: #41453B;
            line-height: 1.8;
            margin-bottom: 25px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            
        }

        .about-content p:last-child {
            margin-bottom: 0;
        }



        

        /* Story Section */
        .story-section {
            /* padding: 100px 50px; */
            background: #fff;
            text-align: center;
        }

        .story-section h2 {
            font-family: 'Aleo', serif;
            font-size: 3.5rem;
            color: #D48978;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .story-content {
            max-width: 800px;
            margin: 0 auto 60px;
            font-family: 'Aleo', serif;
            src:url('/fonts/Aleo-Medium.ttf') format('truetype');
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
        }

        .city-image {
            /* width: 100%; */
            /* max-width: 1000px; */
            /* height: 400px; */
            width: 100%;
            height: 400px;
            background: url('/assets/Mask-Group-1.png') center/cover;
            left: 0;
            /* background: url('/assets/Mask-Group-1.png') no-repeat center; */
            /* border-radius: 10px; */
            /* margin: 0 auto; */
        }

        /* Brands Section */
        .brands-section {
            padding: 100px 50px;
            background: #f5f5f0;
            text-align: center;
        }

        .brands-section h2 {
            font-family: 'Aleo', serif;
            font-size: 2.5rem;
            color: #D48978;
            margin-bottom: 10px;
            font-weight: 300;
        }

        .brands-section h3 {
            font-family: 'Outfit_Bold', sans-serif;
            font-size: 2rem;
            color: #41453B;
            margin-bottom: 80px;
            font-weight: 400;
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            row-gap: 80px;
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .brand-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .brand-logo {
            margin: 0 auto 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            
           
        }

        .buffalo { 
            width: 140px;
            position: absolute;
            top: -45px;
            transform: translateY(-50%);
        }
        .chestnut { 
            width: 150px;
            position: absolute;
            top: -40px;
            transform: translateY(-50%);
         }
        .pizza { 
            width: 200px;
            position: absolute;
            top: -45px;
            transform: translateY(-50%);
         }
        .chixter { 
            width: 140px;
            position: absolute;
            top: -45px;
            transform: translateY(-50%);
         }

        .brand-card h4 {
            font-family: 'Outfit_Bold', sans-serif;
            font-size: 1.4rem;
            color: #333;
            margin-bottom: 5px;
            font-weight: 400;
        }

        .brand-card h5 {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 20px;
            font-weight: 300;
        }

        .brand-card p {
            font-size: 0.95rem;
            color: #777;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .more-info-btn {
            font-family: 'Outfit_Bold', sans-serif;
            position: absolute;
            bottom: 5%;
            transform: translateX(-100%);
            background: #666;
            color: white;
            padding: 12px 31px;
            border: none;
            border-radius: 25px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.3s ease;
            text-decoration: none !important;
        }

        .more-info-btn:hover {
            background: #c49b7a;
        }

        /* Vision Mission Section */
        .vision-mission {
            background: #4a5240;
            color: white;
            padding: 100px 50px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .vision, .mission {
            display: grid;
            text-align: center;

            justify-items: center;
        }
        .vision img, .mission img{
            width: 50% ;
        }

        .vision h3, .mission h3 {
            font-family: 'Outfit_Bold', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 30px;
            font-weight: 300;
        }

        .vision p, .mission p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #ddd;
        }

        .section-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            fill: #c49b7a;
        }

        /* Values Section */
        .values-section {
            padding: 100px 50px;
            background: #f5f5f0;
            text-align: center;
        }

        .values-section h2 {
            font-family: 'Aleo', serif;
            font-size: 3rem;
            color: #D48978;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .values-content {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
        }

        /* Services Section */
        .services-section {
            padding: 100px 50px;
            background: #F8F7F3;
            color: white;
            text-align: center;
            position: relative;
        }

        .services-section h2 {
            font-family: 'Aleo', serif;
            font-size: 3rem;
            color: #D48978;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: calc(100% - 40px);
            background: #4a5240;
            border-radius: 0 0 38px 38px;
            z-index: 1;
        }
        
        .services-section > * {
            position: relative;
            z-index: 2;
        }

        .services-intro {
            max-width: 800px;
            margin: 0 auto 60px;
            font-size: 1.1rem;
            line-height: 1.7;
            color: #ddd;
        }

        .services-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            align-items: stretch;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Service cards in natural flow: 1,2,3,4 then 5,6,7,8 etc. */
        .services-grid .service-card {
            flex: 0 0 calc(25% - 22.5px);
            min-width: 250px;
            display: flex;
            flex-direction: column;
        }
        
        .services-grid .service-card p {
            flex-grow: 1;
            display: flex;
            align-items: center;
        }
        
        /* Responsive breakpoints */
        @media (max-width: 1200px) {
            .services-grid .service-card {
                flex: 0 0 calc(33.333% - 20px);
            }
        }
        
        @media (max-width: 900px) {
            .services-grid .service-card {
                flex: 0 0 calc(50% - 15px);
            }
        }
        
        @media (max-width: 600px) {
            .services-grid .service-card {
                flex: 0 0 100%;
            }
        }

        .service-card {
            background: white;
            color: #333;
            padding: 40px 30px;
            border-radius: 15px;
            position: relative;
            /* overflow: hidden; */
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -25px;
            left: -25px;
            width: 50px;
            height: 50px;
            background: #C7C7A9;
            transform: rotate(45deg);
        }

        .service-card h4 {
            font-family: 'Outfit_Bold', sans-serif;
            font-size: 1.5rem;
            color: #D48978;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .service-card p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #666;
        }


/* Blog Section Styles */
.blog-section {
    padding: 100px 50px;
    background: #fff;
    text-align: center;
}

.blog-header {
    max-width: 800px;
    margin: 0 auto 80px;
}

.blog-section h2 {
    font-family: "Aleo", serif;
    font-size: 2.5rem;
    color: #D48978;
    margin-bottom: 10px;
    font-weight: 300;
}

.blog-section h3 {
    font-family: 'Outfit_Bold', sans-serif;
    font-size: 2rem;
    color: #41453B;
    margin-bottom: 30px;
    font-weight: 400;
}

.blog-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.blog-card.featured {
    grid-column: span 2;
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card.featured .blog-image {
    height: 280px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #D48978;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 30px 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #999;
}

.blog-content h4 {
    font-family: 'Outfit_Bold', sans-serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.4;
}

.blog-card.featured .blog-content h4 {
    font-family: 'Outfit_Bold', sans-serif;
    font-size: 1.6rem;
}

.blog-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.read-more-btn {
    color: #8b956d;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more-btn:hover {
    color: #c49b7a;
    transform: translateX(5px);
}

.blog-footer {
    margin-top: 60px;
}

.view-all-btn {
    font-family: 'Outfit_Bold', sans-serif;
    background: #8b956d;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.view-all-btn:hover {
    background: #c49b7a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 149, 109, 0.3);
}

/* Mobile Responsive */
        @media (max-width: 768px) {
            .blog-section {
                padding: 60px 20px;
            }

            .blog-section h2 {
                font-size: 2rem;
            }

            .blog-section h3 {
                font-size: 1.5rem;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .blog-card.featured {
                grid-column: span 1;
            }

            .blog-content {
                padding: 25px 20px;
            }

            .blog-meta {
                flex-direction: column;
                gap: 5px;
            }

            .blog-content h4 {
                font-size: 1.2rem;
            }

            .blog-card.featured .blog-content h4 {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 480px) {
            .blog-section h2 {
                font-size: 1.8rem;
            }

            .blog-section h3 {
                font-size: 1.3rem;
            }

            .blog-intro {
                font-size: 1rem;
            }

            .blog-image {
                height: 180px;
            }

            .blog-card.featured .blog-image {
                height: 220px;
            }

            .blog-content {
                padding: 20px 15px;
            }

            .blog-content h4 {
                font-size: 1.1rem;
            }

            .blog-card.featured .blog-content h4 {
                font-size: 1.3rem;
            }
        }

        /* Animation delays for staggered effect */
        .blog-card:nth-child(1) { animation-delay: 0.1s; }
        .blog-card:nth-child(2) { animation-delay: 0.2s; }
        .blog-card:nth-child(3) { animation-delay: 0.3s; }
        .blog-card:nth-child(4) { animation-delay: 0.4s; }
        .blog-card:nth-child(5) { animation-delay: 0.5s; }
        .blog-card:nth-child(6) { animation-delay: 0.6s; }

        /* Footer */
        footer {
            background: #f5f5f0;
            padding: 60px 50px 30px;
            border-top: 1px solid #ddd;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .footer-logo svg {
            width: 50px;
            height: 50px;
        }

        .footer-logo span {
            font-size: 1.5rem;
            color: #8b956d;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #c49b7a;
        }

        .footer-brands ul {
            list-style: none;
        }

        .footer-brands li {
            margin-bottom: 10px;
        }

        .footer-brands a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-brands a:hover {
            color: #c49b7a;
        }

        .footer-contact p {
            margin-bottom: 8px;
            color: #666;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: #666;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: background 0.3s ease;
        }

        .social-links a:hover {
            background: #c49b7a;
        }

        /* Enhanced Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

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

        .hero-logo {
            animation: float 3s ease-in-out infinite;
        }

        .brand-card {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .brand-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        .service-card {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1001;
        }

        .mobile-menu-toggle:hover {
            background: rgba(139, 149, 109, 0.1);
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #666;
            border-radius: 2px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
            background: #c49b7a;
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
            transform: scale(0);
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
            background: #c49b7a;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 30px 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            z-index: 999;
            border-bottom: 1px solid rgba(139, 149, 109, 0.2);
            transform: translateY(-100%);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-menu.active {
            display: block;
            transform: translateY(0);
            animation: slideInDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .mobile-menu ul {
            flex-direction: column;
            gap: 0;
            text-align: center;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .mobile-menu li {
            margin: 0;
            border-bottom: 1px solid rgba(139, 149, 109, 0.1);
            transform: translateX(-50px);
            opacity: 0;
            animation: slideInItems 0.3s ease forwards;
        }

        .mobile-menu li:nth-child(1) { animation-delay: 0.1s; }
        .mobile-menu li:nth-child(2) { animation-delay: 0.2s; }
        .mobile-menu li:nth-child(3) { animation-delay: 0.3s; }
        .mobile-menu li:nth-child(4) { animation-delay: 0.4s; }
        .mobile-menu li:nth-child(5) { animation-delay: 0.5s; }

        .mobile-menu li:last-child {
            border-bottom: none;
        }

        @keyframes slideInItems {
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .mobile-menu a {
            font-size: 1.3rem;
            padding: 20px 0;
            display: block;
            color: #333;
            text-decoration: none;
            font-weight: 400;
            letter-spacing: 1px;
            position: relative;
            transition: all 0.3s ease;
        }

        .mobile-menu a:hover {
            color: #c49b7a;
            transform: translateX(10px);
        }

        .mobile-menu a::before {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 10px;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #8b956d, #c49b7a);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .mobile-menu a:hover::before {
            width: 60px;
        }

        /* Enhanced Mobile Menu Overlay */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.3);
            z-index: 998;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mobile-menu-overlay.active {
            display: block;
            opacity: 1;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }

            nav {
                display: none;
            }

            header {
                padding: 15px 20px;
            }

            .hero-title {
                font-size: 2.5rem;
                letter-spacing: 3px;
            }

            .hero-subtitle {
                font-size: 1.2rem;
                letter-spacing: 2px;
            }

            .hero-logo {
                width: auto;
                height: 120px;
            }

            .about-section {
                grid-template-columns: 1fr;
                padding: 60px 20px;
                gap: 40px;
                text-align: center;
            }

            .about-content h2 {
                font-size: 2.2rem;
            }

            .story-section {
                padding: 60px 0px;
            }
            .story-content {
                max-width: 90%;
                margin: 0 auto;
            }

            .story-section h2 {
                font-size: 2.5rem;
            }

            .brands-section {
                padding: 60px 20px;
            }

            .brands-section h2 {
                font-size: 2rem;
            }

            .brands-section h3 {
                font-size: 1.5rem;
            }

            .vision-mission {
                grid-template-columns: 1fr;
                padding: 60px 20px;
                gap: 40px;
            }

            .vision h3, .mission h3 {
                font-size: 2rem;
            }

            .values-section {
                padding: 60px 20px;
            }

            .values-section h2 {
                font-size: 2.5rem;
            }

            .services-section {
                padding: 60px 35px;
            }

            .services-section h2 {
                font-size: 2.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 0 20px;
            }

            .brands-grid, .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                row-gap: 70px;
            }

            .brand-card, .service-card {
                margin: 0 10px;
            }
             .buffalo { 
            width: 120px;
            transform: translateY(-45%);
            }
            .chestnut { 
            width: 146px;
            transform: translateY(-40%);
            }
            .pizza { 
            width: 180px;
            transform: translateY(-40%);
            }
            .chixter { 
            width: 120px;
            transform: translateY(-40%);
            }
            .more-info-btn{
                transform: translateX(-50%);
            } 
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
                letter-spacing: 2px;
            }

            .hero-subtitle {
                font-size: 1rem;
                letter-spacing: 1px;
            }

            .about-section {
                padding: 40px 20px;
                min-height: 100vh;
            }

            .about-image {
                top: 82%;
            }

            .plant-illustration {
                width: 250px;
                /* max-height: 30vh; */
                height: auto;
                opacity: 0.9;
            }

            .about-content {
                /* height: 100vh;
                margin-top: 150px; */
                padding: 30px 15px;
            }

            .about-content h2 {
                font-size: 2rem;
                margin-bottom: 25px;
                line-height: 1.1;
            }

            .about-content p {
                font-size: 0.95rem;
                font-family: "Outfit", sans-serif;
                line-height: 1.6;
                margin-bottom: 18px;
            }

            .story-section h2 {
                font-size: 2rem;
            }

            .brands-section h2 {
                font-size: 1.8rem;
            }

            .brands-section h3 {
                font-size: 1.3rem;
            }

            .vision h3, .mission h3 {
                font-size: 1.8rem;
            }

            .values-section h2 {
                font-size: 2rem;
            }

            .services-section h2 {
                font-size: 2rem;
            }

            .brand-card, .service-card {
                padding: 30px 20px;
                margin: 0 5px;
            }

            header {
                padding: 10px 15px;
            }

            .header-logo span {
                font-size: 1rem;
            }

            
            .mobile-menu {
                top: 70px;
                padding: 15px;
            }
        }

        @media (max-width: 360px) {
            .about-section {
                padding: 30px 15px;
            }

            .plant-illustration {
                width: 200px;
                max-height: 25vh;
                opacity: 0.25;
            }

            .about-content {
                margin-top: 120px;
                padding: 25px 10px;
            }

            .about-content h2 {
                font-size: 1.8rem;
                margin-bottom: 20px;
            }

            .about-content p {
                font-size: 0.9rem;
                line-height: 1.5;
                margin-bottom: 15px;
            }
        }

        /* Tablet Responsive */
        @media (min-width: 700px) and (max-width: 1200px) {
            .about-section {
             padding: 80px 40px;
            }

            .about-content {
                max-width: 700px;
                padding: 50px 30px;
            }

            .about-content h2 {
                font-size: 3rem;
            }

            .plant-illustration {
                height: 70vh;
                opacity: 0.4;
            }

            .brands-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
                row-gap: 60px;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .vision-mission {
                padding: 80px 40px;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 50px;
            }
        }

        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: #8b956d;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #c49b7a;
        }
   