:root {
  --primary-dark: #960045;
  --primary-dark2: #ed368aeb;
  --primary-dark3: #960045;
  --primary-medium: #ed368aeb;
  --primary-light: #f6f6f678;
  --primary-extra-light: #ffffff ;
  --text-dark: #ed368aeb;
  --text-medium: #960045;
  --text-light: #ed368aeb;
  --white: #ffffff;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.2);
  --shadow-dark: rgba(0, 0, 0, 0.3);
  /* #54ac55 --dark */
  /* #82cd01 --light */
}

        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
            cursor: none;
        }
        ul{
            margin-bottom: 0 !important;
        }

        body {
            overflow-x: hidden;
            /* background: linear-gradient(135deg, var(--primary-extra-light), #e6c8e3, var(--primary-light)); */
            color: var(--text-dark);
        }
        /* h1, h2, h3{
            font-family: "Dancing Script", cursive !important;
        } */
        /* h4, h5, h6, span, p{
            font-family: "Caveat", cursive;
        } */

        /* Custom Cursor */
        .cursor-dot {
            width: 8px;
            height: 8px;
            background-color: var(--primary-dark);
            border-radius: 50%;
            position: fixed;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
        }

        .cursor-ring {
            width: 30px;
            height: 30px;
            border: 2px solid var(--primary-dark);
            border-radius: 50%;
            position: fixed;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 9998;
            transform: translate(-50%, -50%);
            transition: all 0.1s ease-out;
        }

        /* Header (Dark Green) */
        .header-container {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 95%;
            max-width: 1400px;
            z-index: 1000;
        }

        header {
            background: var(--primary-dark);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-radius: 30px;
            padding: 15px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 10px 30px var(--shadow-dark);
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: headerSlideIn 0.8s ease-out forwards;
        }

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

        .logo {
            height: 50px;
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
        }

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

        nav a {
            color: #F1F8E9;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            position: relative;
            transition: all 0.2s ease;
        }

        nav a:hover {
            color: var(--primary-light);
            text-shadow: 0 0 10px rgba(165, 214, 167, 0.7);
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary-light);
            bottom: -5px;
            left: 0;
            transition: width 0.2s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            cursor: pointer;
            width: 30px;
            height: 20px;
            position: relative;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: #F1F8E9;
            border-radius: 3px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }

        .hamburger span:nth-child(1) {
            top: 0px;
        }

        .hamburger span:nth-child(2),
        .hamburger span:nth-child(3) {
            top: 10px;
        }

        .hamburger span:nth-child(4) {
            top: 20px;
        }

        .hamburger.active span:nth-child(1) {
            top: 10px;
            width: 0%;
            left: 50%;
        }

        .hamburger.active span:nth-child(2) {
            transform: rotate(45deg);
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg);
        }

        .hamburger.active span:nth-child(4) {
            top: 10px;
            width: 0%;
            left: 50%;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--primary-dark);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            transform: translateY(-100%);
            transition: transform 0.5s ease;
        }

        .mobile-menu.active {
            transform: translateY(0);
        }

        .mobile-menu ul {
            list-style: none;
            text-align: center;
            position: relative;
        }

        .mobile-menu ul li {
            margin: 30px 0;
        }

        .mobile-menu ul li a {
            color: #F1F8E9;
            font-size: 1.5rem;
            text-decoration: none;
            font-weight: 500;
        }

        .close-btn {
            position: absolute;
            top: 30px;
            right: 30px;
            color: #F1F8E9;
            font-size: 2rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .close-btn:hover {
            transform: rotate(90deg);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 8%;
            position: relative;
            overflow: hidden;
        }

        
        .hero-content {
            max-width: 600px;
            z-index: 2;
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 5rem);
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-shadow: 0 5px 15px var(--shadow-light);
            opacity: 0;
            transform: translateY(30px);
        }

        .hero-subtext {
            font-size: clamp(1rem, 1.5vw, 1.5rem);
            color: var(--text-medium);
            margin-bottom: 3rem;
            text-shadow: 0 2px 5px var(--shadow-light);
            opacity: 0;
            transform: translateY(30px);
        }

        .cta-button {
            background: var(--primary-dark);
            color: var(--white);
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            font-weight: 600;
            opacity: 0;
            transform: translateY(30px);
            box-shadow: 0 10px 20px var(--shadow-light);
            cursor: none;
        }

        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 30px var(--shadow-medium);
            background: var(--primary-medium);
            -webkit-transform: translateY(-5px) scale(1.05);
            -moz-transform: translateY(-5px) scale(1.05);
            -ms-transform: translateY(-5px) scale(1.05);
            -o-transform: translateY(-5px) scale(1.05);
}

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #81C784, #B2DFDB, #81C784);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .cta-button:hover::before {
            opacity: 1;
        }

        .hero-model {
            width: clamp(300px, 30vw, 500px);
            height: clamp(300px, 30vw, 500px);
            background: url('../img/s.jpg') center/cover var(--primary-dark);
           border-radius: 151px 10px 151px 10px;
            box-shadow: 0 20px 40px var(--shadow-medium);
            position: relative;
            opacity: 0;
            transform: translateX(50px) rotate(5deg);
            z-index: 2;
}

        /* Last Section */
        .last-section {
            height: 200px;
            background: var(--white);
            position: relative;
            z-index: 2;
        }
        .custom-shape-divider-top-1750672750 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .custom-shape-divider-top-1750672750 svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 110px;
        }

       .custom-shape-divider-top-1750672750 .shape-fill {
    fill: var(--primary-light);
}


        /* Responsive Styles */
        @media (max-width: 1024px) {
            .hero {
                padding: 0 5%;
                flex-direction: column;
                justify-content: center;
                text-align: center;
                gap: 40px;
            }

            .hero-content {
                max-width: 100%;
                padding-top: 100px;
            }

            .hero-model {
                transform: translateX(0) rotate(5deg);
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 15px 20px;
            }

            nav ul {
                display: none;
            }

            .hamburger {
                display: block;
            }

            .hero::after {
                height: 50px;
                border-radius: 0 0 50% 50%/0 0 50px 50px;
            }
        }

        @media (max-width: 576px) {
            .header-container {
                top: 10px;
            }

            header {
                padding: 10px 15px;
            }

            .logo {
                height: 30px;
            }

            .hero-title {
                font-size: 2.2rem;
            }

            .hero-subtext {
                font-size: 1.1rem;
            }

            .cta-button {
                padding: 0.8rem 1.8rem;
                font-size: 1rem;
            }

            .hero-model {
                width: 250px;
                height: 250px;
            }

            .mobile-menu ul li {
                margin: 20px 0;
            }

            .mobile-menu ul li a {
                font-size: 1.2rem;
            }

            .close-btn {
                top: 20px;
                right: 20px;
                font-size: 1.5rem;
            }
        }
       
/* ABOUT US SECTION STARTS */
        .about-section {
            background-color: var(--white);
            padding: 4rem 0;
            overflow: hidden;
            position: relative;
        }


        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .about1 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 5rem;
        }

        .hero-model2 {
            width: clamp(300px, 30vw, 500px);
            height: clamp(300px, 30vw, 500px);
            background: url('../img/about.jpeg') center/cover var(--primary-dark);
            border-radius: 151px 10px 151px 10px;
            box-shadow: 0 20px 40px var(--shadow-medium);
            position: relative;
            opacity: 0;
            transform: translateX(-50px) rotate(-5deg);
            transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 2;
            overflow: hidden;
        }

        .hero-model2::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(27, 94, 32, 0.1) 0%, rgba(255,255,255,0.1) 100%);
            z-index: 1;
        }

        .hero-model2.animate {
            opacity: 1;
            transform: translateX(0) rotate(0);
        }

        .about3 {
            flex: 1;
            padding: 2rem;
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s;
        }

        .about3.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .about3 h3 {
             font-size: 3rem;
            background: linear-gradient(90deg, var(--primary-dark), var(--primary-medium));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 2.5rem;
            transform: translateY(30px);
            line-height: 1.2;
                }

        .about3 h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary-medium);
            border-radius: 2px;
            transition: width 0.5s ease;
        }

        .about3 h3:hover::after {
            width: 100px;
        }

        .about3 p {
            font-size: clamp(1rem, 1.2vw, 1.2rem);
            line-height: 1.8;
            color: #555;
            margin-bottom: 2rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            padding: 1rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.7);
            box-shadow: 0 5px 15px var(--shadow-light);
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px var(--shadow-medium);
            background: var(--white);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-extra-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: var(--primary-dark3);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .feature-item:hover .feature-icon {
            background: var(--primary-dark2);
            color: var(--white);
            transform: scale(1.1);
        }

        .feature-item span {
            font-weight: 600;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

        .feature-item:hover span {
            color: var(--primary-dark);
        }

        .about-btn {
            background: var(--primary-medium);
            color: var(--white);
            border: none;
            padding: 15px 35px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
            display: inline-flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .about-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }

        .about-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
        }

        .about-btn:hover::before {
            left: 100%;
        }

        .about-btn i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .about-btn:hover i {
            transform: translateX(5px);
        }

        @media (max-width: 992px) {
            .about1 {
                flex-direction: column;
                gap: 3rem;
            }
            
            .hero-model2 {
                width: 80%;
                max-width: 400px;
                height: 300px;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 5rem 0;
            }
            
            .hero-model2 {
                width: 100%;
                height: 250px;
            }
            
            .about3 {
                padding: 1rem 0;
            }
        }

        /* Floating animation for the image
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-8px); -webkit-transform: translateY(-8px); -moz-transform: translateY(-8px); -ms-transform: translateY(-8px); -o-transform: translateY(-8px); }
            100% { transform: translateY(0px); }
        }

        .hero-model2.animate {
            animation: float 6s ease-in-out infinite;
        } */
/* <!-- ABOUT US SECTION ENDS --> */


/* CURVE UP */
       .up1 {
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.up1 svg {
    position: relative;
    display: block;
    /* width: calc(100% + 1.3px); */
    background: var(--primary-light);
}

.up1 .shape-fill {
    fill: var(--white); 
}
/* <!-- CURVE UP ENDS --> */

/* <!-- WHY US SECTION STARTS=========================================================== --> */
  .why-section {
      padding: 0 0px 40px 0px;
    position: relative;
    overflow: hidden;
        background: var(--primary-light);
}

.why-section::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -300px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(165,214,167,0.15) 0%, rgba(165,214,167,0) 70%);
    z-index: 0;
    animation: float 12s ease-in-out infinite alternate;
}

.why1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.why2 {
    text-align: center;
    margin-bottom: 5rem;
}

.why3 {
    display: inline-block;
    color:  var(--primary-light) ;
    background-color:var(--primary-dark);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(46,125,50,0.1);
    transform: scale(0.8);
    /* opacity: 0; */
}

.why4 {
    font-size: 3rem;
    background: linear-gradient(90deg, var(--primary-dark2), var(--primary-dark3));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
    transform: translateY(30px);
    line-height: 1.2;
}
.why22 {
    text-align: center;
    margin-bottom: 5rem;
}

.why33 {
    display: inline-block;
    color:var(--primary-light)   ;
    background-color:var(--primary-dark);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(46,125,50,0.1);
    transform: scale(0.8);
}

.why44 {
    font-size: 3rem;
    background: linear-gradient(90deg, var(--primary-dark2), var(--primary-dark3));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transform: translateY(30px);
    line-height: 1.2;
}


.why5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    perspective: 1500px;
}

.why6 {
    background: rgba(255,255,255,0.9);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(165,214,167,0.4);
    transform: scale(0.7) translateY(100px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform, box-shadow;
    max-height: 400px;
}


.why6::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(165,214,167,0.05) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
}

.why6::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(165,214,167,0.1) 0%, rgba(255,255,255,0) 70%);
    transition: all 0.6s ease;
    z-index: -1;
}

.why6:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 70px var(--shadow-medium);
}

.why6:hover::after {
    transform: translate(25%, 25%);
}

.why7 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-extra-light) 0%, var(--white) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--primary-dark3);
    font-size: 2rem;
    box-shadow: 0 15px 30px var(--shadow-light);
    transform: scale(0);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why8 {
    font-size: 1.7rem;
    background: linear-gradient(90deg, var(--primary-dark2), var(--primary-dark3));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.why9 {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.why10 {
    display: inline-flex;
    align-items: center;
    color: var(--primary-medium);
    font-weight: 700;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.why10::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.why10 i {
    margin-left: 5px;
    transition: all 0.4s ease;
}

.why6:hover .why10::before {
    transform: scaleX(0.9);
}

.why6:hover .why10 i {
    transform: translateX(8px);
}

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

@media (max-width: 768px) {
    .why4 {
        font-size: 2.3rem;
    }
    
    .why5 {
        grid-template-columns: 1fr;
    }
    
    .why6 {
        padding: 2.5rem 2rem;
    }
}

/* MORPHING BACKGROUND EFFECT */
.why6::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-extra-light) 0%, var(--white) 100%);
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 0.8s ease;
    z-index: -1;
}

.why6:hover::before {
    clip-path: circle(100% at 50% 50%);
}
/* <!-- WHY US SECTION ENDS =========================================================== --> */
/* <!-- Sustainability SECTION starts ====================================================== --> */
.sus1 {
  position: relative;
  padding: 10px 0;
      background: var(--primary-light);
  overflow: hidden;
}

.sus2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* Top Section Layout */
.sus3 {
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
}

.sus4 {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sus5 {
  display: inline-block;
  font-size: 18px;
  color: var(--primary-dark3);
  /* margin-bottom: 20px; */
  position: relative;
  padding-left: 50px;
}

.sus5::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 2px;
  background-color: var(--primary-dark3);
}

.sus6 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-dark2);
  margin-bottom: 20px;
}

.sus7 {
  font-size: 18px;
  color: var(--primary-dark3);
  margin-bottom: 40px;
}
.sus-img img{
   width: 530px;
   border-radius: 30px;
   transition: all 1s ease;
   -webkit-transition: all 1s ease;
   -moz-transition: all 1s ease;
   -ms-transition: all 1s ease;
   -o-transition: all 1s ease;
}
.sus-img:hover img{
    scale: 0.98;
}

/* Cards Grid */
.sus8 {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.sus9 {
  position: relative;
  padding: 40px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(27, 94, 32, 0.08);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

.sus10 {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.sus11 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-medium);
  margin-right: 20px;
}

.sus12 {
  flex: 1;
  height: 1px;
  background-color: #e8f5e9;
}

.sus13 {
  font-size: 22px;
  color: var(--primary-dark2);
  margin-bottom: 15px;
}

.sus14 {
  font-size: 16px;
  line-height: 1.6;
  color: var(--primary-dark3);
}

.sus15 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-dark2));
  border-radius: 0 0 16px 16px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.sus9:hover .sus15 {
  transform: scaleX(1);
}

/* Stats Section */


.sus17 {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.sus18 {
  text-align: center;
      border: 1px solid var(--primary-dark3);
    padding: 20px;
    border-radius: 26px;
}

.sus19 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-dark2);
  margin-bottom: 5px;
  line-height: 1;
}

.sus20 {
  font-size: 16px;
  color: var(--primary-dark3);
}

/* Button */
.sus21-container {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.sus21-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.sus21 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background-color: var(--primary-dark);
  color: white;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.sus21 svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s;
}

.sus21:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(27, 94, 32, 0.2);
}

.sus21:hover svg {
  transform: translateX(5px);
}

/* Decorative Elements */
.sus22 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.sus23 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(165, 214, 167, 0.1) 0%, rgba(165, 214, 167, 0) 70%);
}

.sus24 {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(165, 214, 167, 0.08) 0%, rgba(165, 214, 167, 0) 70%);
}

/* Responsive */
@media (max-width: 1024px) {
  .sus3 {
    flex-direction: column;
    gap: 40px;
  }
  
  .sus6 {
    font-size: 42px;
  }
  
  .sus17 {
    justify-content: flex-start;
    gap: 30px;
  }
  
  .sus8 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .sus1 {
    padding: 80px 0;
  }
  
  .sus2 {
    padding: 0 20px;
  }
  
  .sus6 {
    font-size: 36px;
  }
  
  .sus17 {
    flex-direction: column;
    gap: 20px;
  }
  
  .sus19 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .sus6 {
    font-size: 30px;
  }
  
  .sus9 {
    padding: 30px;
  }
  
  .sus21 {
    width: 100%;
  }
}
/* <!-- Sustainability SECTION ENDS ====================================================== --> */

/* <!-- FAQ SECTION STARTS================================================================ --> */
 /* FAQ Container */
        .faq-container {
            background-color: var(--white);
            padding: 50px;
            position: relative;
            overflow: hidden;
        }

        /* Decorative Elements */
        .faq-decoration {
            position: absolute;
            opacity: 0.1;
            z-index: -1;
        }

        .faq-leaf1 {
            top: -50px;
            left: -50px;
            font-size: 200px;
            color: var(--primary-medium);
            transform: rotate(-15deg);
        }

        .faq-leaf2 {
            bottom: -30px;
            right: -30px;
            font-size: 150px;
            color: var(--primary-dark);
            transform: rotate(25deg);
        }

        /* FAQ Header */
        .faq-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .faq-header h2 {
            font-size: 2.8rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            font-weight: 700;
        }

        .faq-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-light), var(--primary-medium));
            border-radius: 5px;
        }

        .faq-header p {
            color: var(--text-light);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* FAQ Items */
        .faq1 {
            background-color: var(--white);
            border-radius: 12px;
            overflow: hidden;
            max-width: 1000px;
            align-items: center;
            margin: 1.5rem auto ;
            box-shadow: 0 5px 15px var(--shadow-light);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            border-left: 5px solid var(--primary-light);
            position: relative;
            opacity: 0;
            transform: translateY(30px);
        }

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

        .faq1:hover {
            box-shadow: 0 10px 25px var(--shadow-medium);
            transform: translateY(-5px) scale(1.01);
        }

        .faq-question {
            padding: 1.8rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            background-color: var(--white);
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .faq-question:hover {
            background-color: var(--primary-extra-light);
        }

        .faq-question::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background-color: var(--primary-dark3);
            transition: all 0.3s ease;
        }

        .faq1.active .faq-question::before {
            height: 100%;
            background-color: var(--primary-dark2);
        }

        .faq-question i {
            /* margin-right: 15px; */
            color: var(--primary-dark3);
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }

        .faq-question span {
            flex: 1;
        }

        .faq-question .faq-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: var(--primary-extra-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-medium);
            transition: all 0.3s ease;
        }

        .faq1.active .faq-question .faq-icon {
            background-color: var(--primary-dark2);
            color: var(--white);
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1), padding 0.4s ease;
            background-color: var(--white);
            color: var(--text-medium);
            line-height: 1.7;
        }

        .faq1.active .faq-answer {
            max-height: 500px;
            padding: 0 1.8rem 1.8rem 4.6rem;
        }

        .faq-answer p {
            margin-bottom: 1rem;
        }

        /* Floating CTA */
        .faq-cta {
            text-align: center;
            margin-top: 3rem;
            padding: 2rem;
            background: linear-gradient(135deg, var(--primary-light), var(--primary-dark3));
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(27, 94, 32, 0.2);
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.6s ease 0.3s;
        }

        .faq-cta.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .faq-cta h3 {
            color: var(--white);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .faq-cta p {
            color: var(--primary-extra-light);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .faq-cta-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--white);
            color: var(--primary-dark);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .faq-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            background-color: var(--primary-extra-light);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .faq-container {
                padding: 1.5rem;
            }
            
            .faq-header h2 {
                font-size: 2.2rem;
            }
            
            .faq-header p {
                font-size: 1rem;
            }
            
            .faq-question {
                padding: 1.3rem;
                font-size: 1.1rem;
            }
            
            .faq1.active .faq-answer {
                padding: 0 1.3rem 1.3rem 3.8rem;
            }

            .faq-cta {
                padding: 1.5rem;
            }

            .faq-cta h3 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .faq-container {
                padding: 1rem;
            }
            
            .faq-header h2 {
                font-size: 1.8rem;
            }
            
            .faq-question {
                padding: 1rem;
                font-size: 1rem;
            }
            
            .faq1.active .faq-answer {
                padding: 0 1rem 1rem 3.2rem;
            }

            .faq-question .faq-icon {
                width: 25px;
                height: 25px;
            }

            .faq-cta {
                padding: 1.2rem;
            }

            .faq-cta h3 {
                font-size: 1.3rem;
            }
        }
/* <!-- FAQ SECTION ends================================================================ --> */


/* <!-- FOOTER SECTION STARTS================================================== --> */


/* CURVE UP */
       .up11 {
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.up11 svg {
    position: relative;
    display: block;
    /* width: calc(100% + 1.3px); */
    background: var(--primary-dark);
}

.up11 .shape-fill {
    fill: var(--white); 
}
/* <!-- CURVE UP ENDS --> */
 /* Footer Styles */
        .footer {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 4rem 2rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .footer-wave {
            position: absolute;
            top: -1px;
            left: 0;
            width: 100%;
            height: 100px;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23ffffff" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%23ffffff"/></svg>');
            background-size: cover;
            background-repeat: no-repeat;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-logo {
            margin-bottom: 1.5rem;
            font-size: 2rem;
            font-weight: 700;
            color: var(--white);
            display: flex;
            align-items: center;
        }

        .footer-logo i {
            margin-right: 10px;
            color: var(--primary-light);
        }

        .footer-about p {
            margin-bottom: 1.5rem;
            line-height: 1.6;
            color: var(--white);
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--white);
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background-color: var(--primary-medium);
            transform: translateY(-3px);
        }

        .footer-heading {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-light);
            border-radius: 3px;
        }

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

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .footer-links a:hover {
            color: var(--white);
            padding-left: 5px;
        }

        .footer-links a i {
            margin-right: 8px;
            font-size: 0.8rem;
        }

        .footer-contact p {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            color: var(--white);
            line-height: 1.6;
        }

        .footer-contact i {
            margin-right: 10px;
            color: var(--white);
            margin-top: 3px;
        }

        .footer-newsletter p {
            margin-bottom: 1.5rem;
            color: var(--white);
            line-height: 1.6;
        }

        .footer-newsletter-form {
            display: flex;
            margin-bottom: 1.5rem;
        }

        .footer-newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 0.9rem;
            outline: none;
        }

        .footer-newsletter-button {
            background-color: var(--primary-medium);
            color: var(--white);
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .footer-newsletter-button:hover {
            background-color: var(--primary-light);
            color: var(--text-dark);
        }

        .footer-bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: var(--whitet);
            font-size: 0.9rem;
        }

        .footer-payments {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        .footer-payments i {
            font-size: 1.8rem;
            color: var(--white);
            opacity: 0.8;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }

            .footer-wave {
                height: 60px;
            }
        }

        @media (max-width: 480px) {
            .footer-container {
                grid-template-columns: 1fr;
            }

            .footer {
                padding: 3rem 1.5rem 2rem;
            }

            .footer-wave {
                height: 40px;
            }
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .footer-section {
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }

        .footer-section:nth-child(1) { animation-delay: 0.1s; }
        .footer-section:nth-child(2) { animation-delay: 0.2s; }
        .footer-section:nth-child(3) { animation-delay: 0.3s; }
        .footer-section:nth-child(4) { animation-delay: 0.4s; }
/* <!-- FOOTER SECTION ends================================================== --> */

/* BREADCRUM SECTION STARTS==================================== */
.breadcrumb-hero {
            background: linear-gradient(rgba(94, 27, 85, 0.7), rgba(92, 27, 94, 0.411)), 
                        url('../img/bgg.jpeg') no-repeat center center;
            background-size: cover;
                padding: 10rem 2rem 4rem;
    /* margin: 0rem 0rem 3rem; */
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px var(--shadow-medium);
        }

        .breadcrumb-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .breadcrumb-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            list-style: none;
        }

        .breadcrumb-item {
            display: flex;
            align-items: center;
            margin: 0 0.5rem;
        }

        .breadcrumb-link {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .breadcrumb-link:hover {
            color: var(--white);
            transform: translateY(-2px);
        }

        .breadcrumb-link i {
            margin-right: 0.5rem;
            font-size: 0.9rem;
        }

        .breadcrumb-link.active {
            color: var(--white);
            font-weight: 600;
        }

        .breadcrumb-separator {
            color: rgba(255, 255, 255, 0.7);
            margin: 0 0.5rem;
            font-size: 0.8rem;
        }
/* BREADCRUMB SECTION ENDS======================================== */
/* CONTACT SECTION STARTS============================== */
 .contact-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            padding: 0 1rem;
                margin-top: 4rem;
        }

        .contact-header h1 {
            font-size: 2.8rem;
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            font-weight: 700;
        }

        .contact-header h1::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-light), var(--primary-medium));
            border-radius: 4px;
        }

        .contact-header p {
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        /* Contact Container */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        /* Contact Info Card */
        .contact-info {
            background-color: var(--white);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px var(--shadow-light);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border-top: 4px solid var(--primary-medium);
        }

        .contact-info:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px var(--shadow-medium);
        }

        .contact-info h2 {
            color: var(--primary-dark);
            margin-bottom: 2rem;
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 1rem;
        }

        .contact-info h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-light);
            border-radius: 3px;
        }

        .info-item {
            display: flex;
            margin-bottom: 1.8rem;
            align-items: flex-start;
        }

        .info-icon {
            width: 44px;
            height: 44px;
            background-color: var(--primary-extra-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.2rem;
            color: var(--primary-medium);
            font-size: 1.2rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .info-item:hover .info-icon {
            background-color: var(--primary-medium);
            color: var(--white);
            transform: rotate(10deg);
        }

        .info-content h3 {
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .info-content p, .info-content a {
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .info-content a:hover {
            color: var(--primary-medium);
            text-decoration: underline;
        }

        .social-links {
            display: flex;
            margin-top: 2.5rem;
            gap: 1rem;
        }

        .social-links a {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background-color: var(--primary-extra-light);
            color: var(--primary-medium);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .social-links a:hover {
            background-color: var(--primary-medium);
            color: var(--white);
            transform: translateY(-3px) scale(1.1);
        }

        /* Contact Form */
        .contact-form {
            background-color: var(--white);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px var(--shadow-light);
            border-top: 4px solid var(--primary-medium);
            transition: all 0.4s ease;
        }

        .contact-form:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px var(--shadow-medium);
        }

        .contact-form h2 {
            color: var(--primary-dark);
            margin-bottom: 2rem;
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 1rem;
        }

        .contact-form h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-light);
            border-radius: 3px;
        }

        .form-group {
            margin-bottom: 1.8rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.8rem;
            color: var(--primary-dark);
            font-weight: 500;
            font-size: 0.95rem;
        }

        .form-control {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid var(--primary-light);
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background-color: var(--primary-extra-light);
            color: var(--text-dark);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-medium);
            box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
        }

        textarea.form-control {
            min-height: 180px;
            resize: vertical;
        }

        .submit-btn {
            background-color: var(--primary-medium);
            color: var(--white);
            border: none;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            box-shadow: 0 4px 15px rgba(27, 94, 32, 0.2);
        }

        .submit-btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(27, 94, 32, 0.3);
        }

        .submit-btn i {
            margin-left: 10px;
            transition: all 0.3s ease;
        }

        .submit-btn:hover i {
            transform: translateX(5px);
        }

        /* Map Section */
        .map-section {
            margin-top: 3rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px var(--shadow-light);
            height: 450px;
            transition: all 0.4s ease;
        }

        .map-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px var(--shadow-medium);
        }

        .map-section iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .breadcrumb-hero {
                padding: 3rem 1.5rem;
            }
            
            .breadcrumb-hero h1 {
                font-size: 2rem;
            }
            
            .contact-header h1 {
                font-size: 2.2rem;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            .contact-info, .contact-form {
                padding: 2rem;
            }

            .map-section {
                height: 350px;
            }
        }

        @media (max-width: 480px) {
            .breadcrumb-hero {
                padding: 2.5rem 1rem;
            }
            
            .breadcrumb-hero h1 {
                font-size: 1.8rem;
                padding-top:3rem;
            }
            
            .breadcrumb-link {
                font-size: 0.9rem;
            }
            
            .breadcrumb-separator {
                margin: 0 0.3rem;
            }

            .contact-header h1 {
                font-size: 1.8rem;
            }

            .contact-info, .contact-form {
                padding: 1.5rem;
            }

            .info-icon {
                width: 38px;
                height: 38px;
                font-size: 1rem;
                margin-right: 1rem;
            }

            .submit-btn {
                padding: 12px 24px;
                width: 100%;
                justify-content: center;
            }
        }

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

        .breadcrumb-hero,
        .contact-header,
        .contact-info,
        .contact-form,
        .map-section {
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .breadcrumb-hero { animation-delay: 0s; }
        .contact-header { animation-delay: 0.2s; }
        .contact-info { animation-delay: 0.3s; }
        .contact-form { animation-delay: 0.4s; }
        .map-section { animation-delay: 0.5s; }
/* CONTACT SECTION ENDS============================ */

/* PRIVACY POLICY SECTION STARTS======================================== */
 /* Privacy Policy Section Styles */
    .privacy-section {
        padding: 5rem 0;
        position: relative;
        background-color: var(--primary-extra-light);
    }
    
    .security-badge {
        position: absolute;
        top: -30px;
        right: 5%;
        width: 80px;
        height: 80px;
        background: var(--primary-medium);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2rem;
        box-shadow: 0 10px 30px rgba(46, 125, 50, 0.3);
        z-index: 1;
    }
    
    .privacy-header {
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
        z-index: 2;
    }
    
    .privacy-header h2 {
        font-size: 2.5rem;
        color: var(--primary-dark);
        margin-bottom: 1rem;
    }
    
    .privacy-header .subtitle {
        color: var(--text-light);
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
    }
    
    /* Tabs Navigation */
    .privacy-tabs {
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        overflow: hidden;
        margin-bottom: 3rem;
    }
    
    .tab-buttons {
        display: flex;
        flex-wrap: wrap;
        border-bottom: 1px solid var(--primary-extra-light);
    }
    
    .tab-btn {
        padding: 1rem 1.5rem;
        background: none;
        border: none;
        cursor: pointer;
        font-weight: 600;
        color: var(--text-light);
        position: relative;
        transition: all 0.3s ease;
    }
    
    .tab-btn:after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--primary-medium);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }
    
    .tab-btn.active {
        color: var(--primary-dark);
    }
    
    .tab-btn.active:after {
        transform: scaleX(1);
    }
    
    .tab-btn:hover:not(.active) {
        color: var(--primary-medium);
        background: var(--primary-extra-light);
    }
    
    /* Tab Contents */
    .tab-contents {
        padding: 2rem;
    }
    
    .tab-content {
        display: none;
    }
    
    .tab-content.active {
        display: block;
    }
    
    .tab-content h3 {
        color: var(--primary-dark);
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        font-size: 1.5rem;
    }
    
    .tab-icon {
        margin-right: 1rem;
        color: var(--primary-medium);
    }
    
    /* Privacy List Styles */
    .privacy-list {
        list-style: none;
    }
    
    .privacy-list li {
        padding: 1rem;
        margin-bottom: 0.5rem;
        background: var(--primary-extra-light);
        border-radius: 8px;
        display: flex;
        align-items: center;
        opacity: 0;
    }
    
    .privacy-list li i {
        margin-right: 1rem;
        color: var(--primary-medium);
        font-size: 1.2rem;
        min-width: 25px;
    }
    
    /* Usage Grid */
    .usage-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .usage-card {
        background: white;
        border-radius: 8px;
        padding: 1.5rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        border-top: 3px solid var(--primary-light);
        opacity: 0;
        transform: scale(0.8);
    }
    
    .usage-icon {
        width: 50px;
        height: 50px;
        background: var(--primary-extra-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-medium);
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .usage-card h4 {
        color: var(--primary-dark);
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
    }
    
    .usage-card p {
        color: var(--text-light);
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Protection Steps */
    .protection-steps {
        margin-top: 2rem;
    }
    
    .step {
        display: flex;
        margin-bottom: 1.5rem;
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        background: var(--primary-medium);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        margin-right: 1rem;
        flex-shrink: 0;
    }
    
    .step-content h4 {
        color: var(--primary-dark);
        margin-bottom: 0.3rem;
        font-size: 1.1rem;
    }
    
    .step-content p {
        color: var(--text-light);
        font-size: 0.95rem;
    }
    
    /* Rights Cards */
    .rights-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .right-card {
        background: white;
        border-radius: 8px;
        padding: 1.5rem;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        opacity: 0;
        transform: translateY(20px);
    }
    
    .right-card i {
        font-size: 1.8rem;
        color: var(--primary-medium);
        margin-bottom: 1rem;
    }
    
    .right-card h4 {
        color: var(--primary-dark);
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
    }
    
    .right-card p {
        color: var(--text-light);
        font-size: 0.9rem;
    }
    
    /* Contact Privacy */
    .contact-privacy {
        text-align: center;
        margin-top: 2rem;
        opacity: 0;
    }
    
    .privacy-email {
        display: inline-flex;
        align-items: center;
        background: var(--primary-extra-light);
        color: var(--primary-dark);
        padding: 0.8rem 1.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        margin-top: 1rem;
        transition: all 0.3s ease;
    }
    
    .privacy-email i {
        margin-right: 0.8rem;
        color: var(--primary-medium);
    }
    
    .privacy-email:hover {
        background: var(--primary-medium);
        color: white;
    }
    
    .privacy-email:hover i {
        color: white;
    }
    
    /* Policy Update */
    .policy-update {
        background: white;
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        opacity: 0;
    }
    
    .update-alert {
        display: flex;
        align-items: center;
        background: var(--primary-extra-light);
        padding: 1rem;
        border-radius: 8px;
    }
    
    .update-alert i {
        font-size: 1.5rem;
        color: var(--primary-medium);
        margin-right: 1.5rem;
        min-width: 40px;
    }
    
    .update-content h4 {
        color: var(--primary-dark);
        margin-bottom: 0.5rem;
    }
    
    .update-content p {
        color: var(--text-light);
        font-size: 0.95rem;
    }
    
    /* Animations */
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    @keyframes slideIn {
        from { 
            opacity: 0;
            transform: translateX(-20px);
        }
        to { 
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes slideUp {
        from { 
            opacity: 0;
            transform: translateY(20px);
        }
        to { 
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes popIn {
        from { 
            opacity: 0;
            transform: scale(0.8);
        }
        to { 
            opacity: 1;
            transform: scale(1);
        }
    }
    
    .animate-float {
        animation: float 4s ease-in-out infinite;
    }
    
    .animate-fadein {
        animation: fadeIn 0.8s ease forwards;
    }
    
    .animate-slidein {
        animation: slideIn 0.6s ease forwards;
    }
    
    .animate-slideup {
        animation: slideUp 0.6s ease forwards;
    }
    
    .animate-pop {
        animation: popIn 0.6s ease forwards;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .privacy-header h2 {
            font-size: 2rem;
        }
        
        .tab-buttons {
            overflow-x: auto;
            flex-wrap: nowrap;
        }
        
        .security-badge {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
            top: -20px;
        }
    }
    
    @media (max-width: 480px) {
        .privacy-header h2 {
            font-size: 1.8rem;
        }
        
        .tab-contents {
            padding: 1.5rem;
        }
        
        .usage-grid {
            grid-template-columns: 1fr;
        }
    }
    /* PRIVACY POLICY SECTION ENDS================= */
    /* PRODUCT SLIDER STARTS================================== */
      .ps1 {
            padding: 4rem 0;
            background: var(--white);
            margin: 0 auto;
        }

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

        .ps2::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: var(--primary-medium);
            margin: 1rem auto 0;
            border-radius: 2px;
        }

        .ps3 .slick-track {
            padding: 80px 0;
            display: flex;
            align-items: center;
        }

        .ps3 .slick-slide:not(.slick-current) {
            filter: blur(3px) grayscale(30%);
            transform: scale(0.85);
            transition: 800ms;
            opacity: 0.8;
        }

        .ps3 .slick-current {
            transform: scale(1.05);
            z-index: 2;
        }

        .ps3 .slick-current img {
            animation: ps4 3.5s ease-in-out forwards infinite;
        }

        .ps5 {
            margin: 0 auto;
            position: relative;
            width: 320px;
            height: 350px;
            filter: blur(0px) grayscale(0%);
            transform: scale(1);
            transition: all 0.5s ease;
        }

        .ps6 {
            position: relative;
            height: 380px;
            width: 320px;
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .ps7 {
            transform: rotate3d(0, 0, 0, 0deg);
            transition: 700ms;
            height: 100%;
        }

        .ps8 {
           background: var(--white); */
    position: absolute;
    top: 0;
    left: 80px;
    width: 100%;
    height: 100%;
    transform: skew(4deg, 2deg);
    transition: 700ms;
    border-radius: 12px;
    /* box-shadow: 0 10px 30px var(--shadow-medium); */
    /* border: 1px solid var(--primary-light);*/
        }

        .ps9 {
            transform: rotate3d(0, 0, 0, 0deg);
            transition: 700ms;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ps9 img {
            display: block;
            max-width: 80%;
            max-height: 80%;
            transform: skew(-4deg, -2deg);
            object-fit: contain;
        }

        .ps10 {
            position: absolute;
            bottom: -80px;
            left: 0;
            width: 100%;
            text-align: center;
            padding: 0 20px;
            
        }

        .ps11 {
            color: var(--primary-dark2);
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .ps12 {
            color: var(--text-medium);
            font-size: 0.9rem;
        }

        .ps5:hover {
            cursor: pointer;
        }

        .ps5:hover .ps7 {
            transform: rotate3d(1, 4, 4, 4deg);
        }

        /* .ps5:hover .ps8 {
            background: var(--primary-extra-light);
            box-shadow: 0 15px 40px var(--shadow-medium);
        } */

        .ps5:hover .ps9 {
            transform: rotate3d(0, 14, -4, 14deg);
        }

        @keyframes ps4 {
            0%, 100% { transform: skew(-4deg, -2deg) rotate(1deg); }
            50% { transform: skew(-4deg, -2deg) rotate(-0.5deg); }
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .ps5 {
                width: 280px;
                height: 420px;
            }
            
            .ps6 {
                width: 280px;
                height: 340px;
            }
        }

        @media (max-width: 768px) {
            .ps1 {
                padding: 3rem 1rem;
            }
            
            .ps2 {
                font-size: 2rem;
                margin-bottom: 2rem;
            }
            
            .ps5 {
                width: 240px;
                height: 380px;
            }
            
            .ps6 {
                width: 240px;
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .ps3 .slick-track {
                padding: 40px 0;
            }
            
            .ps3 .slick-slide:not(.slick-current) {
                transform: scale(0.75);
                opacity: 0.6;
            }
            
            .ps10 {
                bottom: -90px;
            }
        }
        /* PRODUCT SLIDER ENDS================================ */
       /* ABOUT PAGE SECTION STARTS */
        /* Mission Section Styles */
    .mission-section {
        padding: 1rem 0;
        background-color: var(--primary-light);
        position: relative;
        overflow: hidden;
    }
    
    .mission-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, var(--primary-light) 0%, rgba(165, 214, 167, 0) 70%);
        opacity: 0.3;
        z-index: 0;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
        z-index: 1;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
        color: var(--primary-dark);
        margin-bottom: 1rem;
    }
    
    .divider {
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-light), var(--primary-medium));
        margin: 0 auto 1.5rem;
        border-radius: 4px;
    }
    
    .section-header p {
        color: var(--text-light);
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .mission-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        position: relative;
        z-index: 1;
    }
    
    .mission-card {
        background: var(--white);
        padding: 2.5rem 2rem;
        border-radius: 16px;
        /* box-shadow: 0 10px 30px var(--shadow-light); */
        text-align: center;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }
    
    .mission-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px var(--shadow-medium);
    }
    
    .mission-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary-light), var(--primary-medium));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        color: var(--white);
        font-size: 2rem;
        transition: all 0.3s ease;
    }
    
    .mission-card:hover .mission-icon {
        transform: rotateY(180deg);
        background: linear-gradient(135deg, var(--primary-medium), var(--primary-dark));
    }
    
    .mission-card h3 {
        color: var(--primary-dark);
        margin-bottom: 1rem;
        font-size: 1.4rem;
        transition: color 0.3s ease;
    }
    
    .mission-card p {
        color: var(--text-light);
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .mission-wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--primary-light), var(--primary-medium));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.6s ease;
    }
    
    .mission-card:hover .mission-wave {
        transform: scaleX(1);
    }
     .testimonials-section {
        padding: 1rem 0;
        background-color: var(--white);
    }
    
    .testimonials-slider {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        overflow: hidden;
    }
    
    .testimonial-card {
        background: var(--white);
        border-radius: 16px;
        padding: 2rem;
        /* box-shadow: 0 10px 30px var(--shadow-light); */
        transition: all 0.4s ease;
        margin-bottom:25px;
    }
    
    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px var(--shadow-medium);
    }
    
    .quote-icon {
        color: var(--primary-medium);
        font-size: 2rem;
        opacity: 0.3;
        margin-bottom: 1rem;
    }
    
    .testimonial-text {
        color: var(--text-dark);
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        font-style: italic;
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
        margin-right: 1rem;
    }
    
    .author-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .author-info h4 {
        color: var(--primary-dark);
        margin-bottom: 0.2rem;
        font-size: 1.1rem;
    }
    
    .author-info p {
        color: var(--text-light);
        font-size: 0.9rem;
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
        .innovation-content {
            flex-direction: column-reverse;
        }
        
        .innovation-image {
            margin-bottom: 3rem;
            min-height: 350px;
        }
        
        .section-header h2, .innovation-text h2 {
            font-size: 2.2rem;
        }
    }
    
    @media (max-width: 768px) {
        .mission-grid, .testimonials-slider {
            grid-template-columns: 1fr;
        }
        
        .mission-card {
            padding: 2rem 1.5rem;
        }
        
        .stat-number {
            font-size: 2.5rem;
        }
    }
    
    @media (max-width: 576px) {
        .section-header h2, .innovation-text h2 {
            font-size: 1.8rem;
        }
        
        .innovation-btn {
            width: 100%;
            justify-content: center;
        }
        
        .stats-grid {
            grid-template-columns: 1fr 1fr;
        }
        
        .testimonial-card {
            padding: 1.5rem;
        }
    }
    /* ABOUT PAGE SECTION ENDS */

    /* PRODUCT DETAILS START======================= */
    
/* PRODUCTS SECTION STYLES */
.prod1 {
    padding: 3rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.prod1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('<?php echo base_url('../img/leaf-pattern.png'); ?>') repeat;
    opacity: 0.03;
    pointer-events: none;
}

.prod2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.prod3 {
    text-align: center;
    margin-bottom: 60px;
}

.prod4 {
    color: var(--text-dark);
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.prod4 span {
    color: var(--primary-medium);
    position: relative;
}

.prod4 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(165, 214, 167, 0.5);
    z-index: -1;
    transform: skewY(-2deg);
}

.prod5 {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.prod6 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px auto;
    width: 300px;
}

.prod7 {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-medium), transparent);
    flex-grow: 1;
}

.prod8 {
    width: 40px;
    height: 40px;
    background-color: var(--primary-medium);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    font-size: 1rem;
    box-shadow: 0 0 0 5px var(--primary-extra-light);
}

.prod9 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.prod10 {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(27, 94, 32, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.prod10:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(27, 94, 32, 0.2);
}

.prod11 {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-medium);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 3;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(27, 94, 32, 0.3);
}

.prod12 {
    position: relative;
    overflow: hidden;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.prod13 {
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: var(--primary-light);
    border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
    opacity: 0.2;
    transition: all 0.8s ease;
    z-index: 1;
}

.prod10:hover .prod13 {
    transform: scale(1.1) rotate(45deg);
    opacity: 0.3;
}

.prod14 {
    position: relative;
    z-index: 2;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.prod10:hover .prod14 {
    transform: scale(1.1) rotate(-5deg);
}

.prod15 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(27, 94, 32, 0.8), rgba(46, 125, 50, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 3;
}

.prod10:hover .prod15 {
    opacity: 1;
}

.prod16 {
    text-align: center;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.prod10:hover .prod16 {
    transform: translateY(0);
}

.prod17 {
    background: white;
    color: var(--text-dark);
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.prod17:hover {
    background: var(--primary-light);
    color: white;
    transform: translateX(5px);
}

.prod17 i {
    transition: transform 0.3s ease;
}

.prod17:hover i {
    transform: translateX(3px);
}

.prod18 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: white;
    text-align: left;
    padding: 0 20px;
}

.prod18 span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.prod10:hover .prod18 span {
    opacity: 1;
    transform: translateX(0);
}

.prod10:hover .prod18 span:nth-child(1) {
    transition-delay: 0.1s;
}

.prod10:hover .prod18 span:nth-child(2) {
    transition-delay: 0.2s;
}

.prod10:hover .prod18 span:nth-child(3) {
    transition-delay: 0.3s;
}

.prod19 {
    padding: 20px;
    position: relative;
    background: white;
    z-index: 2;
}

.prod20 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.prod10:hover .prod20 {
    color: var(--primary-medium);
}

.prod21 {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.prod22 {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-extra-light);
    color: var(--text-medium);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prod22.active, .prod22:hover {
    background: var(--primary-medium);
    color: white;
    transform: translateY(-3px);
}

.prod23 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--text-light);
    font-size: 0.8rem;
    opacity: 1;
    transition: all 0.3s ease;
    height: 20px;
    overflow: hidden;
}

.prod10:hover .prod23 {
    opacity: 0;
    height: 0;
}

/* QUICK VIEW MODAL STYLES */
.prod24 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.prod24.active {
    opacity: 1;
    visibility: visible;
}

.prod25 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.prod26 {
    position: relative;
    background: white;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 15px;
    padding: 40px;
    z-index: 2;
    transform: translateY(50px);
    transition: transform 0.4s ease;
}

.prod24.active .prod26 {
    transform: translateY(0);
}

.prod27 {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.prod27:hover {
    color: var(--primary-medium);
    background: var(--primary-extra-light);
}

.prod28 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.modal-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.modal-product-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-extra-light);
    border-radius: 10px;
    padding: 30px;
    height: 400px;
}

.modal-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.modal-product-info h3 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.product-description {
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.6;
}

.product-features-list h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-features-list li {
    color: var(--text-medium);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.product-features-list li i {
    color: var(--primary-medium);
    margin-top: 3px;
}

.product-specs {
    margin-top: 30px;
}

.spec-row {
    display: flex;
    border-bottom: 1px solid var(--primary-extra-light);
    padding: 12px 0;
}

.spec-title {
    font-weight: 600;
    color: var(--text-dark);
    width: 150px;
    flex-shrink: 0;
}

.spec-value {
    color: var(--text-medium);
}



/* RESPONSIVE STYLES */
@media (max-width: 992px) {
    .prod4 {
        font-size: 2.4rem;
    }
    
    .prod9 {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .modal-product {
        gap: 30px;
    }
    
    .modal-product-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .prod1, .prod29 {
        padding: 60px 0;
    }
    
    .prod4 {
        font-size: 2rem;
    }
    
    .prod5 {
        font-size: 1rem;
    }
    
    .prod12 {
        height: 240px;
    }
    
    .modal-product {
        grid-template-columns: 1fr;
    }
    
    .modal-product-image {
        height: 300px;
    }
    
    .prod26 {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .prod9, .prod30 {
        grid-template-columns: 1fr;
    }
    
    .prod6 {
        width: 200px;
    }
    
    .prod8 {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        margin: 0 10px;
    }
    
    .breadcrumb-hero h1 {
        font-size: 2rem;
    }
    
    .prod4 {
        font-size: 1.8rem;
    }
    
    .prod31 {
        padding: 30px 20px;
    }
    
    .prod32 {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}
/* PRODUCT PAGE ENDS===================== */

/* TESTIMONIAL PAGE STARTS=============================== */
.test1 {
    padding: 5rem 5rem;
    position: relative;
    background:var(--white);
    overflow: hidden;
}

.test3 {
    text-align: center;
    margin-bottom: 60px;
}

.test3 h2 {
    color: var(--text-dark);
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.test5 {
    color: var(--primary-medium);
    position: relative;
}

.test5:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(165, 214, 167, 0.5);
    z-index: -1;
    transform: rotate(-1deg);
}

.test6 {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 20px;
}

.test7 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

.test8 {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-medium) 50%, transparent 100%);
}

.test9 {
    margin: 0 20px;
    color: var(--primary-medium);
    font-size: 1.5rem;
    background: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px var(--shadow-light);
}

/* VIDEO TESTIMONIALS */
.test10 {
    margin-bottom: 60px;
}

.test11 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.test12 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-medium) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px var(--shadow-medium);
}

.test13 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
}

.test14 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.test15 {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.4s ease;
    position: relative;
}

.test15:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.test15:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-medium) 0%, var(--primary-dark) 100%);
    z-index: 2;
}

.test16 {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.test16 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.test17 {
    padding: 25px;
    background: var(--white);
}

.test17 h4 {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.test17 p {
    color: var(--text-light);
    font-style: italic;
    margin: 0 0 10px;
    font-size: 0.95rem;
}

.test18 {
    color: #FFD700;
    font-size: 0.9rem;
}

/* WRITTEN TESTIMONIALS */
.test19 {
    margin-bottom: 60px;
}

.test20 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 10px;
    scrollbar-width: none;
}

.test20::-webkit-scrollbar {
    display: none;
}

.test21 {
    min-width: 350px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.test21:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.15);
}


.test22 {
    position: relative;
}

.test23 {
    color: var(--primary-light);
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.test24 {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.test25 {
    display: flex;
    align-items: center;
}

.test26 {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--primary-light);
    box-shadow: 0 5px 15px var(--shadow-light);
}

.test26 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.test27 h4 {
    color: var(--text-dark);
    margin: 0 0 5px;
    font-size: 1.2rem;
}

.test27 p {
    color: var(--text-light);
    margin: 0 0 8px;
    font-size: 0.9rem;
}

.test28 {
    color: #FFD700;
    font-size: 1rem;
}

/* STATS SECTION */
.test29 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
    text-align: center;
}

.test30 {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.test30:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.15);
}

.test31 {
    font-size: 2.5rem;
    color: var(--primary-medium);
    margin-bottom: 15px;
}

.test32 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.test33 {
    color: var(--text-light);
    font-size: 1rem;
}

/* ANIMATION CLASS */
.test4 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* RESPONSIVE STYLES */
@media (max-width: 1200px) {
    .test3 h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .test14 {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .test29 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .test3 h2 {
        font-size: 2rem;
    }
    
    .test14 {
        grid-template-columns: 1fr;
    }
    
    .test21 {
        min-width: 280px;
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .test3 h2 {
        font-size: 1.8rem;
    }
    
    .test21 {
        min-width: 85vw;
    }
    
    .test29 {
        grid-template-columns: 1fr;
    }
}
/* TESTIMONIALS PAGE ENDS================================== */

/* FEATURE PAGE STARTS==================================== */


/* Key Features */
.key-features {
    padding: 80px 0;
    background: #ffffff;
}

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

.feature-box {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-icon1 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.feature-box h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.feature-box p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .features-hero h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid, .products-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .features-hero {
        padding: 70px 20px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .feature-box, .product-card {
        padding: 30px 20px;
    }
/* } FEATURE PAGE ENDS===================== */
/* terms and condition page starts============================== */
/* Terms Section Styles */
    .terms-section {
        padding: 5rem 0;
        position: relative;
        background-color: var(--primary-extra-light);
    }
    
    .document-badge {
        position: absolute;
        top: -30px;
        right: 5%;
        width: 80px;
        height: 80px;
        background: var(--primary-medium);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2rem;
        box-shadow: 0 10px 30px rgba(46, 125, 50, 0.3);
        z-index: 1;
    }
    
    .terms-header {
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
        z-index: 2;
    }
    
    .terms-header h2 {
        font-size: 2.5rem;
        color: var(--primary-dark);
        margin-bottom: 0.5rem;
    }
    
    .t1 {
        color: var(--text-light);
        font-size: 1.1rem;
        font-weight: 500;
    }
    
    /* Terms Content */
    .terms-content {
        background: white;
        border-radius: 12px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    
    .terms-card {
        margin-bottom: 2.5rem;
        padding-bottom: 2.5rem;
        border-bottom: 1px dashed var(--primary-light);
    }
    
    .terms-card:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .terms-icon {
        width: 50px;
        height: 50px;
        background: var(--primary-extra-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-medium);
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .t2 h3, .t3 h3, .t4 h3, 
    .t6 h3, .t7 h3, .t8 h3,
    .t9 h3, .t10 h3, .t11 h3 {
        color: var(--primary-dark);
        margin-bottom: 1.2rem;
        font-size: 1.4rem;
    }
    
    .t2 p, .t3 p, .t4 p, 
    .t6 p, .t7 p, .t8 p,
    .t9 p, .t10 p, .t11 p {
        color: var(--text-light);
        line-height: 1.7;
        margin-bottom: 1rem;
    }
    
    .t5 {
        list-style: none;
        margin: 1rem 0 1rem 1rem;
    }
    
    .t5 li {
        position: relative;
        padding-left: 1.8rem;
        margin-bottom: 0.6rem;
        color: var(--text-light);
    }
    
    .t5 li:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0.7rem;
        width: 8px;
        height: 8px;
        background: var(--primary-medium);
        border-radius: 50%;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .terms-header h2 {
            font-size: 2rem;
        }
        
        .document-badge {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
            top: -20px;
        }
        
        .terms-content {
            padding: 1.5rem;
        }
    }
    
    @media (max-width: 480px) {
        .terms-header h2 {
            font-size: 1.8rem;
        }
        
        .t1 {
            font-size: 1rem;
        }
        
        .terms-card {
            margin-bottom: 2rem;
            padding-bottom: 2rem;
        }
        
        .t2 h3, .t3 h3, .t4 h3, 
        .t6 h3, .t7 h3, .t8 h3,
        .t9 h3, .t10 h3, .t11 h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
    }
    /* terms and consitions page ends======================================= */
      .video-container {
        position: relative;
        max-height: 320px;
        overflow: hidden;
        border-radius: 8px;
        cursor: pointer;
    }
    
    .video-container video {
        width: 100%;
        height: auto;
        display: none; /* Hide the video element initially */
    }
    
    .video-thumbnail {
        width: 100%;
        height: 100%;
    }
    
    .video-thumbnail img {
           width: 100%;
    height: 450px;
    object-fit: cover;
    }
    
    .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(0,0,0,0.7);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
    }
    
    /* Modal styles */
    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.9);
    }
    
    .modal-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        max-width: 800px;
    }
    
    .modal-content video {
        width: 100%;
        height: auto;
        max-height:600px;
    }
    
    .close {
        position: absolute;
        top: -40px;
        right: 0;
        color: white;
        font-size: 35px;
        font-weight: bold;
        cursor: pointer;
    }