/* Home Top Bar Star */
        /* Enhanced 3D Top Bar */
        :root {
            --primary-color: #115797;
            --secondary-color: #1ebd40;
            --text-color: #ffffff;
            --hover-color: #0084ff;
            --white: #ffffff;
            --transition-speed: 0.3s;
            --text-black: #000000;
            --text-green: #1ebd40;
            --active-color: #0056b3;
            --dark-blue: #115797;
            --dark-green: #1ebd40;
            --dark-green: #0a4d2e;
            --medium-green: #126e3f;
            --light-green: #8cc686;
            --lighter-green: #c5e8b7;
            --transparent-white: rgba(255, 255, 255, 0.1);
            --card-overlay: rgba(10, 77, 46, 0.85);
            --card-light-overlay: rgba(140, 198, 134, 0.85);
            --transition-speed: 0.3s;
            
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            background-color: #ffffff;
            padding-top: var(--header-height);
            
        }      
         
        .top-bar {
            background: linear-gradient(135deg, var(--white), #2c3e50);
            color: var(--text-color);
            padding: 10px 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .top-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: -50%;
            width: 200%;
            height: 100%;
            background: linear-gradient(
                45deg, 
                transparent, 
                rgba(255,255,255,0.05), 
                transparent
            );
            transform: rotate(-45deg);
            animation: shine 6s infinite linear;
            z-index: 1;
        }

        @keyframes shine {
            0% {
                left: -100%;
            }
            100% {
                left: 200%;
            }
        }

        .download-btn {
            background-color: var(--primary-color);
            border: none;
            border-radius: 25px;
            padding: 10px 20px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
            transform-style: preserve-3d;
        }

        .download-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                120deg, 
                transparent, 
                rgba(255,255,255,0.3), 
                transparent
            );
            transition: all 0.6s ease;
        }

        .download-btn:hover::after {
            left: 100%;
        }

        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.2);
            color: var(--secondary-color);
        }

        /* Enhanced Contact Section - Right Side */
        .contact-section {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 15px; /* Consistent spacing between items */
            padding-right: 10px; /* Prevents touching edge */
        }

        .contact-item {
            position: relative;
            display: flex;
            align-items: center;
            padding: 8px 12px;
            margin-left: 10px;
            opacity: 0.9;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
            box-shadow: 
                0 2px 4px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            transform-style: preserve-3d;
        }

        .contact-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
            border-radius: 4px;
            pointer-events: none;
        }

        .contact-item:hover {
            opacity: 1;
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 
                0 4px 8px rgba(0, 0, 0, 0.3),
                0 6px 12px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .contact-item:first-child {
            margin-left: 0; /* Remove margin from first item */
        }

        /* Contact Icons */
        .contact-item i {
            margin-right: 8px;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }

        .contact-item:hover i {
            transform: scale(1.1);
            filter: drop-shadow(0 2px 3px rgba(255,255,255,0.3));
        }

        /* Links in contact items */
        .contact-item a {
            position: relative;
            display: flex;
            align-items: center;
            color: inherit;
            text-decoration: none;
        }

        .social-icons {
            list-style: none;
            display: flex;
            padding: 0;
            margin: 0;
        }

        .social-icons li {
            margin: 0 10px;
        }

        .social-icons a {
            color: var(--text-color);
            font-size: 1.2em;
            transition: all 0.3s ease;
            position: relative;
        }

        .social-icons a::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--hover-color);
            transition: width 0.3s ease;
        }

        .social-icons a:hover {
            color: var(--hover-color);
            transform: scale(1.2);
        }

        .social-icons a:hover::before {
            width: 100%;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .contact-section {
                justify-content: center;
                flex-wrap: wrap;
                padding: 10px 0;
            }
            .contact-item {
                margin: 5px;
                padding: 6px 10px;
            }
        }
        /* Home Top Bar End */

        /* Mani Header Start */
        /* Header and Navigation Base Styles */
        .site-header-menu-inner {
        background-color: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        }

        .site-navigation {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 5%;
        margin: 0 auto;
        background-color: var(--white);
        
        }

        /* Logo Styles with Hover Effect */
        .site-branding {
        flex-shrink: 0;
        position: relative;
        transition: transform var(--transition-speed);
        }

        .site-branding:hover {
        transform: scale(1.02);
        }

        /* Main Menu Container */
        .navbar {
        display: flex;
        gap: 40px;
        align-items: center;
        }

        .navbar a {
        text-decoration: none;
        }

        /* Navigation Items */
        .nav-item {
        position: relative;
        padding: 12px 5px;
        color: var(--text-black);
        font-weight: 500;
        font-size: 16px;
        text-decoration: none;
        letter-spacing: 0.5px;
        transition: all var(--transition-speed) ease;
        }

        /* Hover Effect */
        .nav-item:hover {
        color: var(--hover-color);
        transform: translateY(-2px);
        }

        /* Active State */
        .nav-item.active {
        color: var(--hover-color);
        font-weight: 600;
        }

        /* Underline Effect with Glow */
        .nav-item:after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 5px;
        left: 0;
        background-color: var(--hover-color);
        transition: width var(--transition-speed) cubic-bezier(0.65, 0, 0.35, 1);
        box-shadow: 0 0 8px var(--hover-color);
        opacity: 0.8;
        }

        .nav-item:hover:after,
        .nav-item.active:after {
        width: 100%;
        }

        /* Mobile Menu Toggle Button */
        .btn-show-menu-mobile {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 12px;
        transition: transform var(--transition-speed);
        }

        .btn-show-menu-mobile:hover {
        transform: scale(1.1);
        }

        .menubar-box {
        width: 30px;
        height: 24px;
        display: inline-block;
        position: relative;
        }

        .menubar-inner,
        .menubar-inner:before,
        .menubar-inner:after {
        width: 30px;
        height: 2px;
        background-color: var(--text-color);
        position: absolute;
        transition: all var(--transition-speed) ease;
        }

        .menubar-inner {
        top: 50%;
        margin-top: -1px;
        }

        .menubar-inner:before,
        .menubar-inner:after {
        content: '';
        display: block;
        }

        .menubar-inner:before {
        top: -8px;
        }

        .menubar-inner:after {
        bottom: -8px;
        }

        /* Animated Hamburger Menu */
        .menubar--squeeze.is-active .menubar-inner {
        background-color: transparent;
        }

        .menubar--squeeze.is-active .menubar-inner:before {
        transform: rotate(-45deg);
        top: 0;
        }

        .menubar--squeeze.is-active .menubar-inner:after {
        transform: rotate(45deg);
        bottom: 0;
        }

        /* Dropdown container */
        .nav-dropdown {
            position: relative;
            display: inline-block;
        }

        /* Dropdown content (hidden by default) */
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #ffffff; /* White background */
            min-width: 250px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            z-index: 1001;
            border-radius: 4px;
            padding: 8px 0;
            margin-top: 5px;
        }

        /* Links inside the dropdown */
        .dropdown-content a {
            color: #000000; /* Black text */
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            transition: all 0.2s ease;
            font-size: 15px;
            border-bottom: 1px solid #f5f5f5;
        }

        /* Last item shouldn't have a border */
        .dropdown-content a:last-child {
            border-bottom: none;
        }

        /* Change color of dropdown links on hover */
        .dropdown-content a:hover {
            background-color: #f9f9f9; /* Slight background change */
            color: #008000; /* Green text on hover */
            padding-left: 20px; /* Slight indent effect on hover */
        }

        /* Show the dropdown menu on hover */
        .nav-dropdown:hover .dropdown-content {
            display: block;
            animation: fadeIn 0.3s;
        }

        /* Animation for smooth appearance */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Style for the main Services nav item */
        .nav-item {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 8px 12px;
            position: relative;
            transition: color 0.2s ease;
        }

        .nav-item:hover {
            color: #008000; /* Green text on hover for the main Services item too */
        }

        /* Optional: Add a small indicator for dropdown items */
        .nav-dropdown .nav-item::after {
            content: "▼";
            font-size: 10px;
            margin-left: 5px;
            vertical-align: middle;
        }

        /* Media queries for responsive behavior */
        @media screen and (max-width: 768px) {
            .dropdown-content {
                position: static;
                width: 100%;
                box-shadow: none;
                background-color: #f9f9f9;
                border-radius: 0;
            }
        }
            
            .dropdown-content a {
                padding: 12px 24px;
                text-align: center;
            }
            
            .dropdown-content a:hover {
                padding-left: 24px; /* No indent on mobile */
            }
            
            /* Mobile-friendly dropdown behavior */
            .dropdown-content {
                display: none;
            }
            
            .nav-dropdown:hover .dropdown-content,
            .nav-dropdown:focus-within .dropdown-content,
            .nav-dropdown.active .dropdown-content {
                display: block;
            }

        /* Responsive Styles with Animated Dropdown */
        @media (max-width: 991px) {
        .btn-show-menu-mobile {
            display: block;
        }
        
        .navbar {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            flex-direction: column;
            background-color: var(--secondary-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            padding: 20px;
            gap: 18px;
            z-index: 100;
            transform: translateY(-10px);
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-speed) ease;
            pointer-events: none;
        }
        
        .navbar.show {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
            pointer-events: all;
        }
        
        .nav-item {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
            text-align: center;
        }
        
        .nav-item:last-child {
            border-bottom: none;
        }
        }

        /* Home Service Section-1 :start */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
                
        .product-carousel-container {
            max-width: 1800px;
            margin: 40px auto;
            overflow: hidden;
            position: relative;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            background-color: white;
            padding: 20px 0;
        }
        
        .product-carousel {
            display: flex;
            position: relative;
            transition: transform 0.5s ease-in-out;
        }
        
        .product {
            min-width: 300px;
            margin: 0 15px;
            padding: 15px;
            border-radius: 6px;
            background-color: white;
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .product:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .product img {
            width: 250px;
            height: 250px;
            object-fit: cover;
            border-radius: 4px;
            margin-bottom: 10px;
        }
        
        .product-name {
            font-weight: bold;
            margin-bottom: 5px;
            color: #333;
        }
        
        .product-price {
            color: #e63946;
            font-weight: bold;
            margin-bottom: 8px;
        }
        
        .product-rating {
            color: #ffc107;
            margin-bottom: 10px;
        }
        
        .product-desc {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
            height: 40px;
            overflow: hidden;
        }
        
        .controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            pointer-events: none;
        }
        
        .control-btn {
            background-color: rgba(255, 255, 255, 0.8);
            color: #333;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 16px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            z-index: 100;
            pointer-events: auto;
            margin: 0 10px;
        }
        
        .control-btn:hover {
            background-color: rgba(255, 255, 255, 1);
        }
        
        h1 {
            text-align: center;
            margin-bottom: 20px;
            color: #333;
        }


/* Home Service Section-1 End */

/* Home About Section Start */

            .home-about-section {
                padding: 100px 0;
                position: relative;
            }

            .bg-light {
                background-color: #f8f9fa;
            }

            .section-heading {
                margin-bottom: 30px;
            }

            .section-heading .subtitle {
                color: #777;
                font-size: 18px;
                font-weight: 500;
                display: block;
                margin-bottom: 10px;
            }

            .section-heading .section-title {
                font-size: 36px;
                font-weight: 700;
                margin-bottom: 20px;
                color: #333;
            }

            .title-divider {
                height: 3px;
                width: 400px;
                background: #1ebd40;
                margin-bottom: 25px;
            }

            .title-divider span {
                display: block;
                height: 3px;
                width: 100px;
                background: #115797;
            }

            .about-content p {
                margin-bottom: 20px;
                line-height: 1.8;
                color: #555;
            }

            .highlight-text {
                font-size: 18px;
                color: #333;
            }

            .about-image-wrapper {
                position: relative;
                padding: 15px;
            }

            .image-frame {
                border: 10px solid #fff;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                overflow: hidden;
                border-radius: 5px;
            }

            .image-frame img {
                transition: transform 0.3s ease;
                width: 100%;
            }

            .image-frame:hover img {
                transform: scale(1.03);
            }

            @media (max-width: 991px) {
                .home-about-section {
                    padding: 60px 0;
                }
                
                .section-heading .section-title {
                    font-size: 30px;
                }
            }

            @media (max-width: 767px) {
                .section-heading .section-title {
                    font-size: 28px;
                }
                
                .about-content p {
                    font-size: 15px;
                }
            }

/* Home About Section End */

/* Home Features Section Start */
/* 3D Features Section */
                .home-features-3d {
                    padding: 50px 0;
                    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
                    perspective: 1000px; /* Enables 3D space */
                }

                .feature-card-3d {
                    position: relative;
                    height: 150px;
                    margin: 20px;
                    transform-style: preserve-3d;
                    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
                    cursor: pointer;
                    border-radius: 12px;
                    background: white;
                    box-shadow: 
                        0 10px 20px rgba(0,0,0,0.1),
                        0 6px 6px rgba(0,0,0,0.05);
                }

                /* 3D Hover Effect */
                .feature-card-3d:hover {
                    transform: translateY(-10px) rotateX(5deg);
                    box-shadow: 
                        0 15px 30px rgba(0,0,0,0.2),
                        0 10px 10px rgba(0,0,0,0.1);
                }

                /* Icon Styling */
                .feature-icon-3d {
                    padding: 10px 0 20px;
                    transform: translateZ(30px); /* Pops icon forward */
                }

                .icon-3d {
                    font-size: 50px;
                    color: #115797;
                    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
                    transition: all 0.3s ease;
                }

                .feature-card-3d:hover .icon-3d {
                    transform: scale(1.1) translateZ(40px);
                    color: #1ebd40;
                }

                /* Content Styling */
                .feature-content-3d {
                    padding: 0 20px;
                    transform: translateZ(20px);
                }

                .feature-content-3d h5 {
                    font-size: 20px;
                    font-weight: 700;
                    color: #333;
                    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
                }

                /* 3D Back Layer (Depth Effect) */
                .feature-back-3d {
                    position: absolute;
                    bottom: -10px;
                    left: 10px;
                    right: 10px;
                    height: 30px;
                    background: rgba(0,0,0,0.05);
                    border-radius: 12px;
                    transform: translateZ(-20px); /* Pushes back for depth */
                    filter: blur(5px);
                    z-index: -1;
                    transition: all 0.3s ease;
                }

                .feature-card-3d:hover .feature-back-3d {
                    height: 40px;
                    bottom: -15px;
                    filter: blur(8px);
                }

                /* Responsive Adjustments */
                @media (max-width: 768px) {
                    .feature-card-3d {
                        height: 200px;
                        margin: 10px 0;
                    }
                    
                    .feature-icon-3d {
                        padding: 20px 0 15px;
                    }
                    
                    .icon-3d {
                        font-size: 40px;
                    }
                }

/* Home Features Section End */

/* Sustainability Section Start */

.sustainability-hero {
          position: relative;
          background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), 
                          url('https://images.unsplash.com/photo-1605000797499-95a51c5269ae?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
          background-size: cover;
          background-position: center;
          background-attachment: fixed;
          padding: 80px 0;
          color: var(--text-color);
          overflow: hidden;
          height: 100vh;
          min-height: 800px;
          transform-style: preserve-3d;
        }
        
        .sustainability-container {
          position: relative;
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 20px;
          z-index: 2;
          transform-style: preserve-3d;
        }
        
        /* Hero Content with 3D Text Effect */
        .sustainability-heading {
          font-size: 3rem;
          font-weight: 700;
          line-height: 1.2;
          margin-bottom: 10px;
          color: var(--white);
          max-width: 500px;
          text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
          transform: translateZ(50px);
          transition: transform 0.5s ease;
        }
        
        .sustainability-heading:hover {
          transform: translateZ(80px) rotateX(-5deg);
        }
        
        .sustainability-subheading {
          font-size: 1.8rem;
          font-weight: 400;
          margin-bottom: 40px;
          max-width: 500px;
          text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
          transform: translateZ(30px);
        }
        
        /* 3D Stats Card with Parallax Effect */
        .stats-card {
          position: absolute;
          top: 70px;
          right: 50px;
          background: rgba(255, 255, 255, 0.15);
          backdrop-filter: blur(10px);
          padding: 25px;
          border-radius: 12px;
          width: 250px;
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
          transform-style: preserve-3d;
          transition: transform 0.5s ease, box-shadow 0.5s ease;
          will-change: transform;
        }
        
        .stats-card:hover {
          transform: translateY(-10px) rotateX(5deg) rotateY(5deg) translateZ(20px);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .stat-number {
          font-size: 3.5rem;
          font-weight: 700;
          color: var(--white);
          margin-bottom: 10px;
          transform: translateZ(30px);
        }
        
        .stat-text {
          font-size: 1rem;
          line-height: 1.5;
          color: var(--white);
          transform: translateZ(20px);
        }
        
        /* Divider Line with 3D Effect */
        .sustainability-divider {
          width: 100%;
          height: 1px;
          background: rgba(255, 255, 255, 0.2);
          margin: 40px 0;
          position: relative;
        }
        
        .sustainability-divider::after {
          content: '';
          position: absolute;
          bottom: -2px;
          left: 0;
          width: 100%;
          height: 1px;
          background: rgba(255, 255, 255, 0.1);
          transform: translateZ(-5px);
        }
        
        /* 3D Cards Grid with Hover Effects */
        .sustainability-cards {
          display: grid;
          grid-template-columns: repeat(4, 1fr);
          gap: 20px;
          margin-top: 60px;
          transform-style: preserve-3d;
        }
        
        .sus-card {
          background: var(--card-overlay);
          border-radius: 12px;
          padding: 30px;
          color: var(--white);
          min-height: 350px;
          transition: transform 0.5s ease, box-shadow 0.5s ease;
          display: flex;
          flex-direction: column;
          position: relative;
          overflow: hidden;
          transform-style: preserve-3d;
          will-change: transform;
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .sus-card:nth-child(3) {
          background: var(--card-light-overlay);
        }
        
        .sus-card:nth-child(4) {
          background: rgba(25, 107, 83, 0.85);
        }
        
        .sus-card:hover {
          transform: translateY(-10px) rotateX(5deg) translateZ(20px);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .sus-card::before {
          content: '';
          position: absolute;
          width: 200px;
          height: 200px;
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.05);
          bottom: -100px;
          right: -100px;
          transform: translateZ(-20px);
        }
        
        .sus-card::after {
          content: '';
          position: absolute;
          width: 150px;
          height: 150px;
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.05);
          top: -75px;
          left: -75px;
          transform: translateZ(-30px);
        }
        
        .sus-card-title {
          font-size: 1.5rem;
          font-weight: 600;
          margin-bottom: 15px;
          transform: translateZ(30px);
        }
        
        .sus-card-text {
          font-size: 1rem;
          line-height: 1.6;
          margin-top: auto;
          transform: translateZ(20px);
        }
        
        /* 3D Floating Action Button */
        .floating-action {
          position: fixed;
          bottom: 20px;
          right: 20px;
          width: 60px;
          height: 60px;
          border-radius: 50%;
          background: var(--dark-green);
          color: var(--white);
          display: flex;
          align-items: center;
          justify-content: center;
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
          cursor: pointer;
          transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
          z-index: 100;
          transform-style: preserve-3d;
        }
        
        .floating-action::before {
          content: '';
          position: absolute;
          width: 100%;
          height: 100%;
          border-radius: 50%;
          background: rgba(0, 0, 0, 0.1);
          transform: translateZ(-10px);
        }
        
        .floating-action:hover {
          transform: scale(1.1) translateZ(10px);
          background: var(--dark-green);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }
        
        /* 3D Back to Top Button */
        .back-to-top {
          position: fixed;
          bottom: 20px;
          right: 20px;
          width: 60px;
          height: 60px;
          border-radius: 50%;
          background: var(--dark-green);
          color: var(--white);
          display: flex;
          align-items: center;
          justify-content: center;
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
          cursor: pointer;
          transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
          z-index: 100;
          transform-style: preserve-3d;
        }
        
        .back-to-top::before {
          content: '';
          position: absolute;
          width: 100%;
          height: 100%;
          border-radius: 50%;
          background: rgba(0, 0, 0, 0.1);
          transform: translateZ(-10px);
        }
        
        .back-to-top:hover {
          transform: scale(1.1) translateZ(10px) rotate(10deg);
          background: var(--dark-blue);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }
        
        /* 3D Particle Background Effect */
        .particles {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: 1;
          overflow: hidden;
        }
        
        .particle {
          position: absolute;
          background: rgba(255, 255, 255, 0.5);
          border-radius: 50%;
          transform-style: preserve-3d;
          animation: float 15s infinite linear;
        }
        
        @keyframes float {
          0% {
            transform: translateY(0) translateZ(0) rotateX(0) rotateY(0);
            opacity: 0;
          }
          10% {
            opacity: 1;
          }
          90% {
            opacity: 1;
          }
          100% {
            transform: translateY(-100vh) translateZ(100px) rotateX(360deg) rotateY(180deg);
            opacity: 0;
          }
        }
        
        /* Responsive Adjustments */
        @media (max-width: 1200px) {
          .sustainability-cards {
            grid-template-columns: repeat(2, 1fr);
          }
          
          .stats-card {
            position: relative;
            top: 0;
            right: 0;
            margin-bottom: 30px;
            width: 100%;
            max-width: 300px;
          }
        }
        
        @media (max-width: 768px) {
          .sustainability-cards {
            grid-template-columns: 1fr;
          }
          
          .sustainability-heading {
            font-size: 2.5rem;
          }
          
          .sustainability-subheading {
            font-size: 1.5rem;
          }
          
          .sustainability-hero {
            padding: 60px 0;
            min-height: 100vh;
          }
          
          .stats-card {
            max-width: 100%;
          }
        }

        /* Sustainability Section End */

/* Home Product Section Start */

                .home-products {
                    padding: 4rem 0;
                    background-color: #f9f9f9;
                }

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

                .hp-main-title {
                    text-align: center;
                    font-size: 2.5rem;
                    color: #2c3e50;
                    margin-bottom: 3rem;
                    font-weight: 600;
                }

                .hp-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                    gap: 2rem;
                }

                .hp-product-card {
                    background: white;
                    border-radius: 12px;
                    padding: 2rem 1.5rem;
                    position: relative;
                    overflow: hidden;
                    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
                    transition: transform 0.3s ease, box-shadow 0.3s ease;
                }

                .hp-product-card:hover {
                    transform: translateY(-5px);
                    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
                }

                .hp-icon-wrapper {
                    position: relative;
                    width: 80px;
                    height: 80px;
                    margin: 0 auto 1.5rem;
                }

                .hp-category-icon {
                    width: 100%;
                    height: auto;
                    position: relative;
                    z-index: 2;
                }

                .hp-icon-bg {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    background: #e8f4fc;
                    border-radius: 50%;
                    top: 0;
                    left: 0;
                    z-index: 1;
                }

                .hp-category-title {
                    text-align: center;
                    font-size: 1.4rem;
                    color: #2c3e50;
                    margin-bottom: 1.5rem;
                    font-weight: 500;
                }

                .hp-product-list {
                    display: flex;
                    flex-direction: column;
                    gap: 0.8rem;
                }

                .hp-product-item {
                    display: flex;
                    align-items: flex-start;
                    gap: 0.6rem;
                    font-size: 0.95rem;
                    color: #555;
                }

                .hp-bullet {
                    display: inline-block;
                    width: 6px;
                    height: 6px;
                    background: #3498db;
                    border-radius: 50%;
                    margin-top: 0.5rem;
                    flex-shrink: 0;
                }

                .hp-card-accent {
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    height: 4px;
                    background: linear-gradient(90deg, #3498db, #2ecc71);
                    transition: height 0.3s ease;
                }

                .hp-product-card:hover .hp-card-accent {
                    height: 6px;
                }

                @media (max-width: 768px) {
                    .hp-grid {
                        grid-template-columns: 1fr;
                    }
                    
                    .hp-main-title {
                        font-size: 2rem;
                    }
                }

/* Home Products Section End */

/* Service Section 4 Start */



.service-section-4 {
            position: relative;
            padding: 100px 0;
            background-image: url('../images/bg-image/Service-section-4.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            overflow: hidden;
        }
        
        .service-section-4::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.377);
            z-index: 1;
        }
        
        .container-section-4 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .section-title-4 {
            margin-bottom: 60px;
            perspective: 1000px;
            text-align: center;
        }
        
        .section-title-4 h2 {
            font-size: 3rem;
            color: #000000;
            text-transform: uppercase;
            letter-spacing: 3px;
            transform: translateZ(40px);
            text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            animation: float 3s ease-in-out infinite;
        }
        
        .section-title-4 .underline {
            height: 4px;
            width: 120px;
            background: linear-gradient(90deg, #006400, #00a651);
            margin: 20px auto;
            transform: translateZ(20px) rotateX(5deg);
            box-shadow: 0 5px 15px rgba(0, 100, 0, 0.5);
        }
        
        .section-title-4 p {
            color: #000000;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            transform: translateZ(15px);
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }
        
        .services-list-4 {
            position: relative;
            perspective: 1000px;
            max-width: 100%;
        }
        
        .service-item-4 {
            margin-bottom: 80px;
            position: relative;
            transform-style: preserve-3d;
            perspective: 1000px;
        }
        
        .service-number-4 {
            position: absolute;
            left: -80px;
            top: -20px;
            font-size: 8rem;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.11);
            line-height: 1;
            transform: translateZ(20px);
            text-shadow: 0 0 30px rgba(0, 100, 0, 0.171);
        }
        
        .service-content-4 {
            position: relative;
            padding-left: 40px;
            border-left: 4px solid;
            border-image: linear-gradient(to bottom, #00a651, transparent) 1;
        }
        
        .service-title-4 {
            font-size: 2.2rem;
            color: #ffffff;
            margin-bottom: 20px;
            transform: translateZ(30px);
            text-shadow: 0 8px 16px rgba(255, 255, 255, 0.4);
            letter-spacing: 1px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .service-item-4:hover .service-title-4 {
            transform: translateZ(40px) translateX(10px);
            color: #00a651;
        }
        
        .service-description-4 {
            color: #ffffff;
            font-size: 1.1rem;
            line-height: 1.8;
            max-width: 800px;
            transform: translateZ(10px);
            transition: all 0.3s ease;
            position: relative;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        
        .service-item-4:hover .service-description-4 {
            transform: translateZ(20px) translateX(5px);
        }
        
        .service-highlight-4 {
            color: #099409;
            font-weight: 600;
        }
        
        .service-item-4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -40px;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
            transform: translateZ(5px);
        }
        
        .service-item-4:last-child::after {
            display: none;
        }
        
        .learn-more-btn-4 {
            display: inline-block;
            margin-top: 50px;
            padding: 15px 40px;
            background: linear-gradient(90deg, #006400, #00a651);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 1px;
            transform: translateZ(25px);
            box-shadow: 0 10px 30px rgba(0, 100, 0, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .learn-more-btn-4:hover {
            transform: translateZ(35px) scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 100, 0, 0.5);
            color: #fff;
        }
        
       .learn-more-btn-4::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                60deg,
                transparent,
                rgba(255, 255, 255, 0.2),
                transparent
            );
            transform: rotate(45deg);
            z-index: 10;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .learn-more-btn-4:hover::before {
            animation: shine 1.5s;
        }
        
        .btn-container-4 {
            text-align: left;
            margin-top: 40px;
            perspective: 1000px;
        }
        
        /* 3D Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0) translateZ(40px); }
            50% { transform: translateY(-10px) translateZ(40px); }
        }
        
        @keyframes shine {
            0% { left: -100%; opacity: 0; }
            20% { opacity: 0.7; }
            100% { left: 100%; opacity: 0; }
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .service-number-4 {
                left: -40px;
                font-size: 6rem;
            }
            
            .service-title-4 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .service-section-4 {
                padding: 60px 0;
            }
            
            .section-title-4 h2 {
                font-size: 2.5rem;
            }
            
            .service-number-4 {
                position: relative;
                left: 0;
                top: 0;
                font-size: 4rem;
                margin-bottom: 10px;
                color: rgba(255, 255, 255, 0.1);
            }
            
            .service-content-4 {
                padding-left: 20px;
            }
            
            .service-title-4 {
                font-size: 1.5rem;
            }
        }

        /* Service Section 4 End */

/* Home Team Section Start */
                @keyframes floatHeader {
                    0%, 100% { transform: translateY(0) rotateX(0); }
                    50% { transform: translateY(-10px) rotateX(2deg); }
                }
                
                .home-team-card {
                    transform: translateZ(0);
                    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
                }
                
                .home-team-card:hover {
                    transform: translateY(-15px) translateZ(30px) rotateX(5deg);
                    box-shadow: 0 20px 50px rgba(0,100,0,0.3), 0 10px 20px rgba(0,0,0,0.08);
                }
                
                .home-team-card:hover .home-team-social {
                    opacity: 1;
                    transform: translateY(0);
                }
                
                .home-team-card:hover .home-team-image img {
                    transform: scale(1.05);
                }
                
                .home-team-card:hover .home-team-shine {
                    opacity: 1;
                    animation: shine 1.5s ease-in-out;
                }
                
                .home-team-card:hover .home-team-name a {
                    text-shadow: 2px 2px 0 rgba(255,255,255,1), 4px 4px 0 rgba(0,100,0,0.1);
                    transform: translateZ(10px);
                }
                
                .home-team-social a:hover {
                    transform: scale(1.2) translateZ(10px);
                }
                
                @keyframes shine {
                    0% { transform: translateX(-100%); }
                    100% { transform: translateX(100%); }
                }
/* Home Team Section End */

/* Home Contact Section CSS Styles */

/* Main section styling */
                .home-contact-section {
                    padding: 80px 0;
                    background-color: #ffffff;
                    position: relative;
                }

                /* Section title styling */
                .home-section-title {
                    margin-bottom: 40px;
                }

                .home-title-header h5 {
                    color: #0055b3; /* Blue color for subtitle */
                    font-size: 16px;
                    font-weight: 600;
                    margin-bottom: 10px;
                    letter-spacing: 1px;
                }

                .home-title-header .home-title {
                    color: #000000; /* Black color for main title */
                    font-size: 36px;
                    font-weight: 700;
                    margin-bottom: 20px;
                    position: relative;
                }

                .home-title-header .home-title:after {
                    content: '';
                    position: absolute;
                    left: 0;
                    bottom: -10px;
                    width: 50px;
                    height: 3px;
                    background-color: #0055b3; /* Blue underline */
                }

                /* Contact info box styling */
                .home-contact-info-box {
                    margin-top: 30px;
                }

                .home-contact-info {
                    margin-bottom: 25px;
                    padding-left: 30px;
                    position: relative;
                }

                .home-contact-info i {
                    position: absolute;
                    left: 0;
                    top: 5px;
                    color: #0055b3; /* Blue color for icons */
                    font-size: 20px;
                }

                .home-contact-info h4 {
                    color: #000000; /* Black color for info titles */
                    font-size: 18px;
                    font-weight: 600;
                    margin-bottom: 5px;
                }

                .home-contact-info p {
                    color: #333333; /* Dark gray for text */
                    font-size: 15px;
                    line-height: 1.6;
                    margin-bottom: 0;
                }

                /* Contact form styling */
                .home-contact-form {
                    background-color: #f9f9f9;
                    padding: 30px;
                    border-radius: 5px;
                    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
                }

                .home-form-control {
                    height: 50px;
                    width: 100%;
                    padding: 10px 15px;
                    font-size: 15px;
                    border: 1px solid #e2e2e2;
                    border-radius: 4px;
                    background-color: #ffffff;
                    margin-bottom: 20px;
                    transition: all 0.3s ease;
                }

                .home-form-control:focus {
                    border-color: #0055b3; /* Blue border on focus */
                    box-shadow: 0 0 5px rgba(0, 85, 179, 0.3);
                    outline: none;
                }

                textarea.home-form-control {
                    height: auto;
                    resize: vertical;
                }

                /* Button styling */
                .home-btn {
                    display: inline-block;
                    text-align: center;
                    font-weight: 600;
                    cursor: pointer;
                    transition: all 0.3s ease;
                    border: none;
                }

                .home-btn-size-md {
                    padding: 12px 30px;
                    font-size: 16px;
                }

                .home-btn-shape-square {
                    border-radius: 4px;
                }

                .home-btn-style-fill.home-btn-color-primary {
                    background-color: #0055b3; /* Blue button */
                    color: #ffffff; /* White text */
                }

                .home-btn-style-fill.home-btn-color-primary:hover {
                    background-color: #003d80; /* Darker blue on hover */
                    box-shadow: 0 5px 10px rgba(0, 85, 179, 0.3);
                }

                /* Responsive adjustments */
                @media (max-width: 991px) {
                    .home-contact-form {
                        margin-top: 40px;
                    }
                }

                @media (max-width: 767px) {
                    .home-title-header .home-title {
                        font-size: 28px;
                    }
                    
                    .home-btn-size-md {
                        padding: 10px 25px;
                        font-size: 15px;
                    }
                }

/* Home Contact Section CSS Styles End */

   /* Hamburger styles */
#hamburger-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

#hamburger-icon div {
    width: 30px;
    height: 4px;
    background-color: #226901;
    margin: 5px 0;
    transition: 0.4s;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background-color: #333;
    z-index: 1000;
}

.mobile-menu li {
    list-style: none;
    padding: 15px;
    border-bottom: 1px solid #444;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.nav-dropdown .dropdown-content {
    display: none;
    flex-direction: column;
    background-color: #444;
    padding-left: 20px;
}

.nav-dropdown:hover .dropdown-content {
    display: flex;
}

/* Responsive state */
@media (max-width: 768px) {
    #hamburger-icon {
        display: flex;
    }

    .mobile-menu.active {
        display: flex;
    }
}

/* Optional: animate hamburger icon on toggle */
.change .bar1 {
    transform: rotate(-45deg) translate(-10px, 10px);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: rotate(45deg) translate(-10px, -8px);
}
/* for logo sizing for mobile view */
.site-branding {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

#logo-img {
    max-width: 100%;
    height: auto;
    width: 150px;
}

@media (max-width: 768px) {
    #logo-img {
        width: 120px;
    }
}

@media (max-width: 480px) {
    #logo-img {
        width: 100px;
    }

    .site-branding {
        display: flex !important;
    }
}

   