body {
            font-family: 'Red Hat Display', sans-serif;
        }
        .navbar-brand img {
            height: 52px;
        }
        .navbar {
            /* padding: 15px 0; */
        }
        .nav-link {
            color: #000;
            font-family: "Red Hat Display";
            font-size: 18px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            margin: 0 10px;
        }
        .btn-contact {
            display: flex;
            width: 226px;
            height: 50px;
            padding: 25px 0px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
            background-color: #F9B000;
            border: none;
        }
        .btn-contact:hover {
            background-color: #e0a100;
        }
        .btn-contact span {
            color: #122423;
            text-align: center;
            font-family: "Red Hat Display";
            font-size: 16px;
            font-style: normal;
            font-weight: 700;
            line-height: 16px; /* 100% */
            letter-spacing: -0.16px;
        }

        /* Animation Keyframes */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideUp {
            from { 
                transform: translateY(30px);
                opacity: 0;
            }
            to { 
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes scaleIn {
            from { 
                transform: scale(0.9);
                opacity: 0;
            }
            to { 
                transform: scale(1);
                opacity: 1;
            }
        }
        
        @keyframes shine {
            0% {
                background-position: -100px;
            }
            40%, 100% {
                background-position: 300px;
            }
        }
        
        .bannersection-hero-section {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }
        
        .bannersection-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            animation: fadeIn 1.5s ease-out;
        }
        
        .bannersection-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            z-index: 0;
            animation: fadeIn 1s ease-out;
        }
        
        .bannersection-hero-content {
            position: relative;
            z-index: 1;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 15px;
        }
        
        .bannersection-hero-divider {
            width: 117px;
            height: 4px;
            background-color: #FFF;
            margin-bottom: 30px;
            animation: scaleIn 1.2s ease-out;
            background-image: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
            background-size: 200px 100%;
            background-repeat: no-repeat;
            animation: shine 2s infinite;
        }
        
        .bannersection-hero-title {
            color: #FFF;
            text-align: center;
            font-family: "DM Serif Display";
            font-size: 56px;
            font-style: normal;
            font-weight: 400;
            line-height: 64.01px; /* 114.304% */
            margin-bottom: 20px;
            animation: slideUp 1s ease-out;
            opacity: 0;
            animation-fill-mode: forwards;
            animation-delay: 0.3s;
        }
        
        .bannersection-hero-subtitle {
            color: #FFF;
            text-align: center;
            font-family: "Open Sans";
            font-size: 22px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            letter-spacing: -0.16px;
            max-width: 600px;
            margin-bottom: 40px;
            animation: slideUp 1s ease-out;
            opacity: 0;
            animation-fill-mode: forwards;
            animation-delay: 0.6s;
        }
        
        .bannersection-btn-contact {
            display: flex;
            width: 189px;
            height: 60px;
            padding: 25px 0px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
            background-color: #F0A500;
            border: none;
            border-radius: 26843500px;
            margin-right: 15px;
            animation: slideUp 1s ease-out;
            opacity: 0;
            animation-fill-mode: forwards;
            animation-delay: 0.9s;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .bannersection-btn-contact:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(240, 165, 0, 0.4);
        }
        
        .bannersection-btn-join {
            display: flex;
            width: 189px;
            height: 60px;
            padding: 25px 0px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
            background-color: transparent;
            border: 1px solid #F0A500;
            border-radius: 26843500px;
            animation: slideUp 1s ease-out;
            opacity: 0;
            animation-fill-mode: forwards;
            animation-delay: 1.2s;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        
        .bannersection-btn-join:hover {
            transform: translateY(-3px);
            background-color: rgba(240, 165, 0, 0.1);
        }
        
        .bannersection-btn-contact span, .bannersection-btn-join span {
            width: 95.153px;
            height: 16px;
            text-align: center;
            font-family: "Red Hat Display";
            font-size: 16px;
            font-style: normal;
            font-weight: 700;
            line-height: 16px; /* 100% */
            letter-spacing: -0.16px;
        }
        
        .bannersection-btn-contact span {
            color: #000;
        }
        
        .bannersection-btn-join span {
            color: #F0A500;
        }
        
        .bannersection-btn-wrapper {
            display: flex;
            flex-direction: row;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        @media (max-width: 768px) {
            .bannersection-hero-title {
                font-size: 40px;
                line-height: 48px;
            }
            
            .bannersection-hero-subtitle {
                font-size: 18px;
            }
            
            .bannersection-btn-wrapper {
                flex-direction: column;
            }
            
            .bannersection-btn-contact, .bannersection-btn-join {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

        .legacy-container {
            position: relative;
            width: 100%;
            /* max-width: 1200px; */
            margin: 40px auto;
            overflow: hidden;
            height: 619px; /* Match image height */
        }
        
        .legacy-image-container {
            position: absolute;
            top: 0;
            right: 0;
            width: 80%;
            height: 100%;
            z-index: 1;
            display: flex;
            justify-content: flex-end; /* Align image to the right */
            overflow: hidden;
        }
        
        .legacy-image {
            width: 1129px;
            height: 619px;
            flex-shrink: 0;
            object-fit: cover;
        }
        
        .legacy-content-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 50%;
            height: 100%;
            display: flex;
            align-items: center;
            z-index: 2;
        }
        
        .legacy-content {
            width: 100%;
            padding: 165px 37px;
            background-color: white;
            position: relative;
            border-top: 5px solid #F0A500;
            border-left: 1px solid #F0A500;
            border-right: none;
            border-bottom: none;
        }
        
        .content-border {
            display: none;
        }
        
        .legacy-title {
            font-family: 'DM Serif Display', serif;
            font-size: 42px;
            color: #222;
            margin-bottom: 25px;
            text-align: center;
            line-height: 1.2;
        }
        
        .legacy-text {
            font-size: 16px;
            line-height: 1.6;
            color: #444;
            margin-bottom: 10px;
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .legacy-container {
                height: auto;
            }
            
            .legacy-image-container {
                position: relative;
                width: 100%;
                height: 300px;
            }
            
            .legacy-content-wrapper {
                position: relative;
                width: 100%;
                margin-top: 20px;
            }
            
            .legacy-content {
                padding: 30px 20px;
            }
            
            .content-border {
                transform: translate(5px, 5px);
            }
        }

        .features-section {
            padding: 50px 0;
        }
        
        .feature-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 10px;
        }
        
        .feature-icon {
            display: flex;
            width: 95px;
            height: 95px;
            padding: 22.5px 24.5px;
            justify-content: center;
            align-items: center;
            border-radius: 18px;
            background-color: #F9F8F8;
            margin-bottom: 15px;
        }
        
        .feature-icon img {
            width: 52px;
            height: 52px;
            flex-shrink: 0;
            aspect-ratio: 1/1;
        }
        
        .feature-text {
            color: #000;
            text-align: center;
            font-family: "Open Sans";
            font-size: 20px;
            font-style: normal;
            font-weight: 600;
            line-height: normal;
            /* max-width: 150px; */
            margin: 0 auto;
        }
        
        /* For mobile responsiveness */
        @media (max-width: 767px) {
            .features-row {
                /* display: flex;
                flex-wrap: nowrap;
                overflow-x: auto; */
                padding-bottom: 15px;
            }
            
            .feature-item {
                min-width: 150px;
            }
        }

        .cta-banner {
            display: flex;
            height: 404px;
            padding: 145px 108px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
            align-self: stretch;
            position: relative;
            overflow: hidden;
        }
        
        .cta-banner-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
            padding: 0 20px;
            width: 100%;
        }
        
        .cta-content-inner {
            /* max-width: 1200px; */
            margin: 0 auto;
            position: relative;
        }
        
        .cta-text {
            max-width: 600px;
            position: relative;
            padding-left: 20px;
        }
        
        .cta-text::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            bottom: 8px;
            width: 4px;
            background-color: #F0A500;
        }
        
        .cta-heading {
            font-family: 'DM Serif Display', serif;
            font-size: 36px;
            font-weight: 400;
            color: white;
            margin-bottom: 10px;
            line-height: 1.2;
        }
        
        .cta-subheading {
            font-family: 'Open Sans', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: white;
            margin-bottom: 10px;
        }
        
        .cta-description {
            font-family: 'Open Sans', sans-serif;
            font-size: 16px;
            font-weight: 400;
            color: white;
            line-height: 1.6;
        }
        
        .cta-button {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background-color: #F0A500;
            color: #000;
            font-weight: 600;
            padding: 12px 24px;
            border-radius: 30px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: background-color 0.3s ease;
        }
        
        .cta-button:hover {
            background-color: #d89400;
            color: #000;
        }
        
        .cta-button svg {
            margin-left: 8px;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }
        
        @media (max-width: 992px) {
            .cta-text {
                max-width: 70%;
            }
        }
        
        @media (max-width: 768px) {
            .cta-banner {
                height: auto;
                padding: 60px 0;
            }
            
            .cta-content-inner {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .cta-text {
                max-width: 100%;
                margin-bottom: 40px;
                text-align: center;
                padding-left: 0;
            }
            
            .cta-text::before {
                display: none;
            }
            
            .cta-button {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
            }
        }

        .promises-section {
            padding: 60px 0;
        }
        
        .promises-section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }
        
        .promises-section-title {
            font-family: 'DM Serif Display', serif;
            font-size: 42px;
            color: #F0A500;
            margin-bottom: 10px;
        }
        
        .promises-section-subtitle {
            font-size: 18px;
            color: #333;
            font-weight: 500;
        }
        
        .promises-order-btn {
            background-color: #F0A500;
            color: #333;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: background-color 0.3s ease;
            border: none;
        }
        
        .promises-order-btn:hover {
            background-color: #d89400;
            color: #333;
        }
        
        .promises-order-btn svg {
            margin-left: 8px;
        }
        
        .promises-step-card {
            background-color: #F0A500;
            border-radius: 10px;
            padding: 30px;
            height: 316px;
            color: white;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            min-height: 180px;
        }
        
        .promises-step-number {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 30px;
            transition: opacity 0.3s ease;
        }
        
        .promises-step-title {
            font-size: 28px;
            font-weight: 700;
            margin-top: auto;
            transition: opacity 0.3s ease;
        }
        
        .promises-step-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }
        
        .promises-step-card:hover .promises-step-image {
            opacity: 1;
        }
        
        .promises-step-card:hover .promises-step-number,
        .promises-step-card:hover .promises-step-title {
            opacity: 0;
        }
        
        @media (max-width: 768px) {
            .promises-section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            
            .promises-section-title {
                font-size: 36px;
            }
            
            .promises-step-card {
                margin-bottom: 20px;
                height: 200px;
            }
        }


        
        
        .varieties-section {
            padding: 80px 0;
        }
        
        .varieties-title {
            font-family: 'DM Serif Display', serif;
            font-size: 42px;
            color: #F0A500;
            margin-bottom: 20px;
        }
        
        .varieties-description {
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            margin-bottom: 30px;
        }
        
        .variety-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 67px 30px;
            background-color: #f8f8f8;
            border-radius: 10px;
            text-align: center;
            height: 514px;
        }
        
        .variety-image {
            width: auto;
            max-width: 100%;
            max-height: 300px;
            margin-bottom: 30px;
            object-fit: contain;
        }
        
        .variety-name {
            font-size: 22px;
            font-weight: 600;
            color: #222;
            margin-top: auto;
        }
        
        .varieties-nav {
            display: flex;
            gap: 10px;
            margin-top: 30px;
        }
        
        .varieties-nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #FFF5E1;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .varieties-nav-btn:hover {
            background-color: #F0A500;
            color: white;
        }
        
        .varieties-nav-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .varieties-nav-btn svg {
            width: 20px;
            height: 20px;
        }
        
        /* Hide default Owl nav and dots */
        .owl-nav, .owl-dots {
            display: none;
        }
        
        /* Tablet & Mobile Responsiveness */
        @media (max-width: 991px) {
            .varieties-section {
                padding: 60px 15px;
            }
            
            .varieties-title {
                font-size: 36px;
            }
            
            .varieties-info {
                margin-bottom: 40px;
                text-align: center;
            }
            
            .varieties-nav {
                justify-content: center;
            }
            
            .variety-card {
                height: auto;
                min-height: 450px;
                padding: 40px 30px;
            }
        }
        
        /* Mobile Responsiveness */
        @media (max-width: 767px) {
            .varieties-section {
                padding: 40px 15px;
            }
            
            .varieties-title {
                font-size: 28px;
                text-align: left;
            }
            
            .varieties-description {
                text-align: left;
                margin-bottom: 20px;
            }
            
            .varieties-info {
                text-align: left;
                margin-bottom: 20px;
            }
            
            .varieties-nav {
                justify-content: flex-start;
                margin-bottom: 30px;
            }
            
            .variety-card {
                min-height: 380px;
                padding: 30px 20px;
            }
            
            .variety-image {
                max-height: 180px;
                margin-bottom: 20px;
            }
            
            .variety-name {
                font-size: 20px;
            }
        }
        
        /* Small Mobile Devices */
        @media (max-width: 375px) {
            .variety-card {
                min-height: 340px;
                padding: 25px 15px;
            }
            
            .variety-image {
                max-height: 150px;
            }
        }





        .footer {
            background-color: #F0A500;
            color: #000;
            padding: 40px 0 20px;
        }
        
        .footer-title {
            font-weight: 700;
            font-size: 22px;
            margin-bottom: 25px;
        }
        
        .contact-section {
            text-align: right;
            padding-right: 30px;
            border-right: 1px solid #D5D5D5;
            height: 100%;
        }
        
        .contact-item {
            margin-bottom: 25px;
        }
        
        .contact-label {
            font-weight: 800;
            display: block;
            margin-bottom: 5px;
        }
        
        .contact-value {
            display: block;
        }
        
        .center-section {
            text-align: center;
            padding: 0 20px;
        }
        
        .footer-logo {
            display: block;
            margin: 0 auto 25px;
            width: 120px;
        }
        
        .footer-description {
            text-align: center;
            margin: 0 auto 30px;
            font-size: 16px;
            line-height: 1.6;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
        }
        
        .social-icon {
            color: #000;
            font-size: 20px;
        }
        
        .links-section {
            padding-left: 30px;
            border-left: 1px solid #D5D5D5;
            height: 100%;
        }
        
        .footer-link {
            display: block;
            color: #000;
            text-decoration: none;
            margin-bottom: 12px;
        }
        
        .footer-divider {
            height: 1px;
            background-color: #D5D5D5;
            margin: 30px 0 20px;
        }
        
        .footer-copyright {
            text-align: center;
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
            .contact-section, .links-section {
                text-align: center;
                border: none;
                padding: 0;
                margin-bottom: 30px;
            }
            
            .center-section {
                margin-bottom: 30px;
            }
        }