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

        body {
            overflow-x: hidden;
        }

        .rosun-sub-heading {
            background-color: #FFC911;
            display: inline-block;
            padding: 2px 8px;
        }


        /* contact Form style */

    .error-msg {
        display: none;
        color: red;
        font-size: 13px;
        margin-top: 5px;
    }
    .popup {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0 15px rgba(0,0,0,0.3);
        z-index: 1000;
    }
    .popup.success { border-left: 6px solid green; }
    .popup.error { border-left: 6px solid red; }
    #loading-indicator {
        display: none;
        text-align: center;
        margin-top: 10px;
    }
    #loading-indicator div {
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 3px solid #f3f3f3;
        border-top: 3px solid #3498db;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    
    
        
        

        
          

        /* Enhanced Navbar Styles */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
            height: 120px;
            background-color: #FFFFFF;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar.scrolled {
            height: 80px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
        }

        .logo img {
            height: 80px;
            max-width: 100%;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar.scrolled .logo img {
            height: 60px;
        }

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

        .nav-links a {
            position: relative;
            text-decoration: none;
            color: #2E2E2E;
            font-size: 16px;
            font-weight: 500;
            font-family: 'Poppins', sans-serif;
            padding: 10px 5px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        .nav-links a::before {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #7AD65D, #5CB85C);
            transform: translateX(-50%);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 3px;
        }

        .nav-links a:hover::before,
        .nav-links a.active::before {
            width: 100%;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #7AD65D;
            transform: translateY(-2px);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hamburger:hover {
            transform: scale(1.1);
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: #333;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 3px;
        }

        .hamburger.active div:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active div:nth-child(2) {
            opacity: 0;
            transform: translateX(20px);
        }

        .hamburger.active div:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Enhanced Slider Styles */
        .slider-section {
            position: relative;
            overflow: hidden;
        }

        .carousel-item {
            height: 100vh;
            min-height: 600px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .carousel-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
            z-index: 1;
        }

        .carousel-item .container {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .slider-caption {
            opacity: 1;
            padding-left: 2em;
            transform: translateY(50px);
            animation: slideInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
        }

        .carousel-item.active .slider-caption {
            animation: slideInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
        }

        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slider-caption h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.2;
            font-weight: 600;
            font-family: 'Rubik', sans-serif;
            color: #FFFFFF;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .banner-btn {
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            font-size: 18px;
            line-height: 1.5;
            color: #FFFFFF;
            background: linear-gradient(135deg, #008A00, #006400);
            border-radius: 12px;
            padding: 15px 30px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            text-decoration: none;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(0, 138, 0, 0.3);
            overflow: hidden;
        }
        

        .banner-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: left 0.6s;
        }

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

        .banner-btn:hover {
            transform: translateY(-3px) scale(1.05);
            background: linear-gradient(135deg, #006400, #004d00);
            box-shadow: 0 8px 25px rgba(0, 138, 0, 0.4);
            color: #FFFFFF;
        }

        .arrow-icon {
            width: 20px;
            height: 20px;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            filter: brightness(0) invert(1);
        }

        .banner-btn:hover .arrow-icon {
            transform: translateX(8px) rotate(10deg);
        }

        /* Enhanced Carousel Controls */
        .custom-carousel-btn {
            width: 65px;
            height: 65px;
            background: #fff;
            backdrop-filter: blur(10px);
            opacity: 1;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
        }

        .custom-carousel-btn:hover {
            transform: translateY(-50%) scale(1.1);
        }

        .custom-carousel-btn img {
            width: 15px;
            height: 24px;
            transition: transform 0.3s ease;
        }

        /* About Section Styles */
        .about-section {
            padding: 1em;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .section-title h2 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 700;
            font-family: 'Rubik', sans-serif;
            color: #2E2E2E;
            margin-bottom: 20px;
            position: relative;
        }

        .section-title h2 span {
            color: #7AD65D;
        }

        .section-title p {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
            font-family: 'Poppins', sans-serif;
        }
        .card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #7AD65D, #5CB85C);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            font-size: 36px;
            color: white;
            box-shadow: 0 10px 20px rgba(122, 214, 93, 0.3);
        }

        .card-title {
            font-size: 28px;
            font-weight: 600;
            font-family: 'Rubik', sans-serif;
            color: #2E2E2E;
            margin-bottom: 20px;
        }
        .card-description {
            font-size: 16px;
            line-height: 1.6;
            color: #666;
            font-family: 'Poppins', sans-serif;
        }

        .card-stats {
            margin-top: 30px;
            display: flex;
            justify-content: space-around;
            width: 100%;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 32px;
            font-weight: 700;
            color: #7AD65D;
            display: block;
            font-family: 'Rubik', sans-serif;
        }

        .stat-label {
            font-size: 14px;
            color: #666;
            margin-top: 5px;
            font-family: 'Poppins', sans-serif;
        }

        /* --------About section----------- */
        .rosun-about-wrapper {
            padding: 40px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            min-height: 100vh;
        }

        .rosun-header-content {
            text-align: center;
            margin-bottom: 60px;
            padding: 0 20px;
        }

        .organic-main-title {
            position: relative;
            left: 30%;
            font-size: 2.5rem;
            color: #2E2E2E;
            margin: 2rem 0;
            font-weight: 600;
            font-family: 'Rubik', sans-serif;
            width: 70%;
            text-align: left;
        }

        @media (max-width: 992px) {
            .organic-main-title {
                left: 20%;
                width: 80%;
            }
        }

        @media (max-width: 768px) {
            .organic-main-title {
                left: 15%;
                width: 85%;
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .organic-main-title {
                left: 10%;
                width: 90%;
                font-size: 1.75rem;
                text-align: center;
                margin: 1.5rem auto;
            }
        }

        .rosun-main-title {
            font-size: clamp(48px, 5vw, 3.5rem);
            font-weight: 400;
            font-family: 'Rubik', sans-serif;
            color: #2E2E2E;
            margin-bottom: 15px;
            line-height: 89px;
        }

        .rosun-main-title .rosun-highlight {
            color: #008A00 !important;
            font-weight: 500;
            font-family: 'Rubik', sans-serif;
            color: #2E2E2E;
            margin-bottom: 15px;
            line-height: 89px;
            font-size: clamp(96px, 5vw, 2.5rem);
        }

        .rosun-sub-heading {
            font-family: 'Poppins', sans-serif;
            font-size: 24px;
            color: #323232;
            font-weight: 600;
            line-height: 100%;
            margin-bottom: 30px;
        }

        .rosun-intro-text {
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            color: #676767;
            font-weight: 400;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }
        
        @media (min-width: 1441px) {
            .rosun-intro-text {
                width: 75%;
                max-width: none;
            }
            .rosun-closing-text{
                width: 75% !important;
                max-width: none !important;
            }
        }

        .rosun-closing-text {
            max-width: 1024px;
            font-size: clamp(14px, 2.5vw, 16px);
            line-height: 1.8;
            color: #555;
            text-align: center;
            margin: 0 auto;
        }

        /* Cards Grid */
        .rosun-cards-grid {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 3rem auto;
            max-width: 1200px;
            padding: 0 1rem;
            flex-wrap: wrap;
        }

        /* Card Styles */
        .rosun-card {
            flex: 1;
            min-width: 300px;
            max-width: 550px;
            height: 330px;
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .rosun-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .rosun-card-content {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            position: relative;
            background-size: 100% 101%;
            background-position: center;
            background-repeat: no-repeat;
            background-clip: border-box;
            overflow: hidden;
        }

        .rosun-card-content::before {
            display: none;
        }

        .rosun-card-title {
            font-size: 2.2rem;
            font-weight: 900;
            color: #676767;
            text-align: left;
            margin: 0;
            padding: 20px 0 1.5rem 1.5rem;
            position: relative;
            z-index: 2;
            line-height: 1.3;
            text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
            width: 100%;
            align-self: flex-start;
        }

        /* Hover Effect */
        .rosun-card-hover {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 1rem 1.5rem;
            z-index: 3;
            text-align: left;
            overflow: hidden;
        }
        
        .rosun-list-title {
            color: #676767;
            font-size: 1.4rem;
            font-weight: 700;
            margin: 0 0 1.5rem 1rem;
            text-align: left;
            text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
            width: 100%;
        }

        .rosun-card:hover .rosun-card-title {
            opacity: 0;
            visibility: hidden;
        }

        .rosun-card:hover .rosun-card-hover {
            opacity: 1;
            visibility: visible;
        }

        .rosun-feature-list {
            list-style: none;
            width: 100%;
            padding: 0 0 0 2.2rem;
            margin: 0;
        }
        
        .rosun-feature-list.left-align {
            align-items: flex-start;
            text-align: left;
        }

        .rosun-card:hover .rosun-feature-list li:nth-child(1) { transition-delay: 0.1s; }
        .rosun-card:hover .rosun-feature-list li:nth-child(2) { transition-delay: 0.2s; }
        .rosun-card:hover .rosun-feature-list li:nth-child(3) { transition-delay: 0.3s; }
        .rosun-card:hover .rosun-feature-list li:nth-child(4) { transition-delay: 0.4s; }
        .rosun-card:hover .rosun-feature-list li:nth-child(5) { transition-delay: 0.5s; }
        .rosun-card:hover .rosun-feature-list li:nth-child(6) { transition-delay: 0.6s; }

        @media (max-width: 768px) {
            .rosun-card {
                max-width: 100%;
            }
            
            .rosun-card-title {
                font-size: 1.8rem;
            }
        }

        .rosun-card-front,
        .rosun-card-back {
            position: absolute;
            width: 100%;
            backface-visibility: hidden;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
        }

        .rosun-card-front {
            background: #ffffff;
            border: 1px solid #e9ecef;
            color: #2E2E2E;
        }


        .rosun-card-back {
            background-image: url('../imgs/card_1.png');
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            transform: rotateY(180deg);
            position: relative;
            overflow: hidden;
        }

        .about-card-2 {
            background-image: url('../imgs/card_2.png') !important;
            background-position: start center;
            background-repeat: no-repeat;
            background-size: cover;
            transform: rotateY(180deg);
            position: relative;
            overflow: hidden;
        }



        .rosun-card-back::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transform: translate(50%, -50%);
        }

        .rosun-card-back::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            transform: translate(-50%, 50%);
        }

        .rosun-card-heading {
            font-family: 'Poppins', sans-serif;
            font-size: 28px;
            color: #676767 !important;
            font-weight: 600;
            line-height: 100%;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }



        .rosun-card-heading::after {
            content: "";
            width: 40%;
            height: 4px;
            background: linear-gradient(90deg, #28a745, #20c997) !important;
            display: block;
            margin-top: 15px;
            border-radius: 2px;
        }

        .rosun-card-back .rosun-card-heading::after {
            background: rgba(255, 255, 255, 0.8);
        }


        .rosun-feature-list {
            list-style: none;
            flex-grow: 1;
            position: relative;
            z-index: 2;
            padding: 0;
        }

        .rosun-feature-list {
            list-style: none;
            padding-left: 0;
        }

        .rosun-feature-list li {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            color: #676767;
            font-weight: 500;
            line-height: 1.3;
        }

        .check-icon {
            width: 18px;
            height: 18px;
            margin-right: 10px;
            flex-shrink: 0;
            vertical-align: middle;
        }

        .rosun-feature-list li::before {
            display: none; /* Hide the default checkmark */
        }

        .rosun-card-back .rosun-feature-list li::before {
            color: #ffffff;
        }

        .rosun-card-back .rosun-feature-list li {
            color: #676767;
        }

        .rosun-global-info {
            text-align: center;
            margin: 60px auto 0;
            padding: 0 20px;
            /* max-width: 1000px; */
            display: flex;
            justify-content: center;
        }

        .rosun-global-info h3 {
            font-size: clamp(18px, 3vw, 24px);
            font-weight: 600;
            font-family: 'Rubik', sans-serif;
            color: #2E2E2E;
            margin-bottom: 20px;
        }

        .rosun-global-info h3 .rosun-highlight {
            color: #28a745;
        }

        .rosun-global-info p {
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            color: #676767;
            font-weight: 500;
        }

        .rosun-hover-hint {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(40, 167, 69, 0.1);
            color: #28a745;
            padding: 8px 12px;
            border-radius: 20px;
            font-size: clamp(10px, 2vw, 12px);
            font-weight: 500;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .rosun-flip-item:hover .rosun-hover-hint {
            opacity: 0;
        }

        .rosun-card-back .rosun-hover-hint {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        /* Animation Effects */
        .rosun-feature-list li {
            opacity: 0;
            transform: translateX(-20px);
            animation: rosunSlideIn 0.6s ease forwards;
        }

        .rosun-feature-list li:nth-child(1) {
            animation-delay: 0.1s;
        }

        .rosun-feature-list li:nth-child(2) {
            animation-delay: 0.2s;
        }

        .rosun-feature-list li:nth-child(3) {
            animation-delay: 0.3s;
        }

        .rosun-feature-list li:nth-child(4) {
            animation-delay: 0.4s;
        }

        .rosun-feature-list li:nth-child(5) {
            animation-delay: 0.5s;
        }

        .rosun-feature-list li:nth-child(6) {
            animation-delay: 0.6s;
        }

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

        /* Hover Effects */
        .rosun-flip-item {
            transition: transform 0.3s ease;
        }

        .rosun-flip-item:hover {
            transform: scale(1.02);
        }
        /* Mobile Small (320px - 425px) */
        @media (min-width: 320px) and (max-width: 425px) {
            /* Hide all tooltips in mobile view and disable hover effects */
            .tooltip {
                display: none !important;
                visibility: hidden !important;
                opacity: 0 !important;
                pointer-events: none !important;
            }
            
            /* Disable hover effects on honeycomb cells */
            .honeycomb-cell:hover {
                transform: none !important;
                box-shadow: none !important;
                z-index: auto !important;
            }
            /* Honeycomb Grid Mobile Styles */
            .honeycomb-grid {
                width: 96%;
                overflow: hidden;
                padding: 0 10px;
            }

            .honeycomb-row {
                display: flex;
                justify-content: center;
                margin: 0 -5px 10px;
                position: relative;
            }

            .honeycomb-cell {
                width: 33.33%;
                padding: 0 5px;
                position: relative;
                transition: transform 0.3s ease;
            }

            .honeycomb-cell img {
                width: 100%;
                height: auto;
                display: block;
                border-radius: 0;
                /* clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); */
            }

            .honeycomb-cell.center-cell {
                width: 33.33%;
                order: 0;
                background: transparent;
                margin: 0;
            }

            .honeycomb-cell.center-cell img {
                clip-path: none;
                border-radius: 0;
                max-width: 100px;
            }
            .honeycomb-row:last-child {
                order: 3;
                display: flex;
                justify-content: center;
                align-items: center;
            }
            
            .honeycomb-row:last-child .honeycomb-cell {
                width: 33.33%;
                margin: 0 -2%;
                transform: translateX(-6%);
                padding-bottom: 40px;
            }
            
            .honeycomb-row:last-child .honeycomb-cell:first-child {
                transform: translateX(5%);
            }
            
            /* Offset first and last rows for honeycomb effect */
            .honeycomb-row:first-child .honeycomb-cell {
                width: 33.33%;
                margin: 0 -2%;
                /* transform: translateX(-6%); */
                padding-top: 40px;
            }
            
            .honeycomb-row:first-child .honeycomb-cell:first-child {
                transform: translateX(5%); /* Increased from 16.5% to move it more to the left */
            }
            
            /* Middle row adjustments for honeycomb shape */
            .honeycomb-row:nth-child(2) {
                display: flex;
                justify-content: center;
                align-items: center;
                margin: -10% 0;
            }
            
            .honeycomb-row:nth-child(2) .honeycomb-cell {
                width: 32.33%;
                margin: 0 0%;
            }
            
            /* Ensure cells in the middle row are in correct order */
            .honeycomb-row:nth-child(2) .cell-3 { 
                order: 1;
                transform: translateX(8%);
            }
            .honeycomb-row:nth-child(2) .cell-4 { 
                order: 2;
                z-index: 2;
                width: 39%;
                margin: 0 -4%;
            }
            .honeycomb-row:nth-child(2) .cell-5 { 
                order: 3;
                transform: translateX(-8%);
            }
            
            /* Adjust hexagon shapes */
            /* .honeycomb-row:nth-child(2) .honeycomb-cell img {
                clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            }
             */
            .honeycomb-row:nth-child(2) .center-cell img {
                clip-path: none;
                max-width: 80%;
                margin: 0 auto;
                display: block;
            }

            /* Tooltip styles for mobile */
            .tooltip {
                position: absolute;
                bottom: 5px;
                left: 5px;
                right: 5px;
                background: none !important;
                color: white;
                padding: 0;
                font-size: 10px;
                text-align: center;
                transform: none !important;
                opacity: 1 !important;
                visibility: visible !important;
                z-index: 2;
                line-height: 1.2;
                text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
                pointer-events: none;
                margin: 0;
                border: none;
                box-shadow: none;
            }

            .tooltip a {
                color: white !important;
                text-decoration: none;
                font-size: 10px;
                font-weight: 600;
                display: block;
                padding: 2px 0;
                text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
                background: none !important;
            }

            /* Remove any pseudo-elements */
            .tooltip::before,
            .tooltip::after {
                display: none !important;
                content: none !important;
            }

            /* Adjust logo size */
            .honeycomb-logo {
                max-width: 80px;
                margin: 0 auto;
                display: block;
            }
            .navbar {
                padding: 0 1rem;
                height: 70px;
            }

            .logo img {
                height: 50px;
            }

            .honeycomb-grid {
                display: flex;
                flex-direction: column;
                align-items: center;
                margin: 0 auto;
                padding: unset !important;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                right: 0;
                height: calc(100vh - 70px);
                flex-direction: column;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(20px);
                width: 100%;
                padding: 2rem;
                transform: translateX(100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                justify-content: flex-start;
                gap: 2rem;
            }

            .rosun-global-info p {
                font-family: 'Poppins', sans-serif;
                font-size: 16px !important;
                color: #676767;
                font-weight: 400;
            }


            .nav-links.active {
                transform: translateX(0);
                opacity: 1;
                visibility: visible;
            }

            .hamburger {
                display: flex;
            }

            .nav-links a {
                font-size: 16px;
                padding: 12px 0;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
                width: 100%;
                text-align: center;
            }

            .carousel-item {
                min-height: 60vh;
            }

            .slider-caption {
                padding: 0 1rem;
                text-align: center;
            }

            .slider-caption h1 {
                font-size: 1.8rem;
                margin-bottom: 1rem;
            }

            .banner-btn {
                font-size: 14px;
                padding: 10px 20px;
            }

            .custom-carousel-btn {
                display: none;
            }

            /* About Section Mobile Small */
            .rosun-about-wrapper {
                padding: 20px 0;
            }

            .rosun-main-title {
                font-size: 20px;
                font-weight: 400;
                line-height: 1.2;
                margin-bottom: 10px;
            }

            .rosun-main-title .rosun-highlight {
                font-size: 35px;
                line-height: 1.2;
            }

            .rosun-sub-heading {
                font-size: 18px;
                line-height: 1.3;
                margin-bottom: 15px;
            }

            .rosun-intro-text {
                font-size: 14px;
                text-align: justify;
                line-height: 1.5;
            }

            .rosun-header-content {
                margin-bottom: 25px;
                padding: 0 15px;
            }

            .rosun-cards-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                margin: 25px 0;
                padding: 0 15px;
            }

            .rosun-flip-item {
                height: 350px;
            }

            .rosun-card-front,
            .rosun-card-back {
                padding: 15px;
            }

            .rosun-card-heading {
                font-size: 20px;
                margin-bottom: 20px;
            }

            .rosun-feature-list li {
                font-size: 14px;
                line-height: 1.4;
                margin-bottom: 12px;
            }

            .rosun-closing-text {
                font-size: 14px;
                text-align: justify;
               
            }

            .rosun-global-info {
                margin-top: 25px;
                padding: 0 15px;
            }

            .rosun-hover-hint {
                font-size: 9px;
                padding: 5px 8px;
            }
            
        }

        /* Tablet View (426px - 768px) */   
        @media (min-width: 426px) and (max-width: 768px) {
            /* Hide all tooltips in tablet view */
            .tooltip {
                display: none !important;
                visibility: hidden !important;
                opacity: 0 !important;
                pointer-events: none !important;
            }

            
            /* Honeycomb Grid Tablet Styles */
            .honeycomb-grid {
                width: 100%;
                overflow: hidden;
                padding: 0 10px;
                max-width: 100%;
                gap: 0 !important;
            }

            .honeycomb-row {
                display: flex;
                justify-content: center;
                margin: 0 -5px 10px;
                position: relative;
            }

            .honeycomb-cell {
                width: 33.33%;
                padding: 0 5px;
                position: relative;
                transition: transform 0.3s ease;
            }


            .honeycomb-cell img {
                width: 100%;
                height: auto;
                display: block;
                border-radius: 0;
                /* clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); */
            }

            /* Center row adjustments */
            .honeycomb-row:nth-child(2) {
                margin: 0 0 10px 0; /* Reset margins and add bottom margin */
                padding-top: 10px; /* Add padding to move content down */
                display: flex;
                justify-content: center;
                align-items: center;
                transform: scale(0.9); /* Scale down the entire row */
            }

            .honeycomb-row:nth-child(2) .honeycomb-cell {
                width: 24%; /* Increased width */
                margin: 0 -0.25%; /* Adjusted negative margin */
                padding: 0 2px;
                transform: scale(0.9) scaleX(1.1); /* Slightly increased scale and added horizontal scaling */
                transform-origin: center; /* Ensure scaling happens from center */
            }
            
            /* Set specific order and positioning for cells in the second row */
            .honeycomb-row:nth-child(2) .cell-3 {
                order: 1;
                margin-right:5%; /* Increased negative margin */
                transform: translateX(-15%) scale(0.9) scaleX(1.1); /* Added translateX to move left */
                transform-origin: center;
            }
            
            .honeycomb-row:nth-child(2) .cell-4 {
                order: 2;
                transform: scale(0.9) scaleX(1.1) translateX(-10%); /* Move center cell left */
                transform-origin: center;
               
            }
            
            .honeycomb-row:nth-child(2) .cell-5 {
                order: 3;
                margin-left: 2%; /* Increased right margin */
                transform: translateX(10%) scale(0.9) scaleX(1.1); /* Move further right */
                transform-origin: center;
            }

            /* Center cell (logo) */
            .honeycomb-cell.center-cell {
                width: 33.33%;
                order: 0;
                background: transparent;
                padding: 0 5px;
            }

            .honeycomb-cell.center-cell img {
                clip-path: none;
                max-width: 120px;
                margin: 0 auto;
                display: block;
            }

            /* First row cells */
            .honeycomb-row:first-child .honeycomb-cell {
                width: 30%;
                margin: 0 -1%;
                padding: 0 2px;
                transform: scale(0.9);
            }

            .honeycomb-row:first-child {
                margin: -5% 0;
                display: flex;
                justify-content: center;
                align-items: center;
            }
            
            /* Last row cells (6 and 7) */
            .honeycomb-row:last-child .honeycomb-cell {
                width: 30%;
                margin: 0 -1%;
                padding: 0 2px;
                transform: scale(0.9); /* Match scale of cells 1 and 2 */
            }

            .honeycomb-row:last-child {
                margin: -35px 0 0 0; /* Increased negative top margin to move up */
                display: flex;
                justify-content: center;
                align-items: center;
            }

            /* Navigation styles */
            .navbar {
                padding: 0 1rem;
                height: 80px;
            }

            .logo img {
                height: 60px;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                right: 0;
                height: calc(100vh - 80px);
                flex-direction: column;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(20px);
                width: 100%;
                padding: 2rem;
                transform: translateX(100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                justify-content: flex-start;
                gap: 2rem;
            }

            .nav-links.active {
                transform: translateX(0);
                opacity: 1;
                visibility: visible;
            }

            .hamburger {
                display: flex;
            }

            .nav-links a {
                font-size: 18px;
                padding: 15px 0;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
                width: 100%;
                text-align: center;
            }

            .carousel-item {
                min-height: 70vh;
            }

            .slider-caption {
                padding: 0 1rem;
                text-align: center;
            }

            .slider-caption h1 {
                font-size: 2.2rem;
                margin-bottom: 1.5rem;
            }

            .banner-btn {
                font-size: 16px;
                padding: 12px 24px;
            }

            .custom-carousel-btn {
                display: none;
            }

            /* About Section Mobile Medium */
            .rosun-about-wrapper {
                padding: 30px 0;
            }

            .rosun-main-title {
                font-size: 24px;
                line-height: 1.2;
                margin-bottom: 12px;
            }

            .rosun-main-title .rosun-highlight {
                font-size: 42px;
                line-height: 1.2;
            }

            .rosun-sub-heading {
                font-size: 20px;
                line-height: 1.3;
                margin-bottom: 20px;
            }

            .rosun-intro-text {
                font-size: 16px;
                text-align: justify;
                line-height: 1.6;
            }

            .rosun-header-content {
                margin-bottom: 30px;
                padding: 0 20px;
            }

            .rosun-cards-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                margin: 30px 0;
                padding: 0 20px;
            }

            .rosun-flip-item {
                height: 380px;
            }

            .rosun-card-front,
            .rosun-card-back {
                padding: 20px;
            }

            .rosun-card-heading {
                font-size: 22px;
                margin-bottom: 25px;
            }

            .rosun-feature-list li {
                font-size: 16px;
                line-height: 1.5;
                margin-bottom: 15px;
            }

            .rosun-closing-text {
                font-size: 16px;
                text-align: justify;
                padding: 40px 20px 0 20px;
            }

            .rosun-global-info {
                margin-top: 30px;
                padding: 0 20px;
            }

            .rosun-hover-hint {
                font-size: 10px;
                padding: 6px 10px;
            }
        }

        /* Honeycomb Scaling (769px - 993px) */
        @media (min-width: 769px) and (max-width: 993px) {
            .honeycomb-cell {
                transform: scale(0.7);
                transform-origin: center;
            }
            
            .honeycomb-row:nth-child(2) .honeycomb-cell {
                transform: scale(0.7) scaleX(1.1);
            }
            
            .honeycomb-cell.center-cell {
                transform: scale(0.7);
            }
        }
        @media (min-width: 994px) and (max-width: 1024px) {
            .honeycomb-cell {
                transform: scale(0.85);
                transform-origin: center;
            }
            
            .honeycomb-row:nth-child(2) .honeycomb-cell {
                transform: scale(0.85) scaleX(1.1);
            }
            
            .honeycomb-cell.center-cell {
                transform: scale(0.85);
            }
            .honeycomb-grid {
                transform: scale(0.7);
                transform-origin: top center;
                margin: 0 auto;
                max-width: 100%;
            }
        }


        /* Tablet (769px - 1024px) */
        @media (min-width: 769px) and (max-width: 1024px) {
            
            
            .navbar {
                padding: 0 1.5rem;
                height: 100px;
            }

            .logo img {
                height: 70px;
            }

            .nav-links {
                gap: 2rem;
            }

            .nav-links a {
                font-size: 15px;
            }

            .carousel-item {
                min-height: 80vh;
            }

            .slider-caption h1 {
                font-size: 3rem;
            }

            .banner-btn {
                font-size: 17px;
                padding: 14px 28px;
            }

            /* About Section Tablet */
            .rosun-about-wrapper {
                padding: 40px 0;
            }

            .rosun-main-title {
                font-size: 36px;
                line-height: 1.3;
            }

            .rosun-main-title .rosun-highlight {
                font-size: 60px;
                line-height: 1.3;
            }

            .rosun-sub-heading {
                font-size: 22px;
            }

            .rosun-intro-text {
                font-size: 14px;
                text-align: center;
            }

            .rosun-header-content {
                margin-bottom: 45px;
                padding: 0 30px;
            }

            .rosun-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 35px;
                margin: 45px 0;
                padding: 0 30px;
            }

            .rosun-flip-item {
                height: 450px;
            }

            .rosun-card-front,
            .rosun-card-back {
                padding: 30px;
            }

            .rosun-card-heading {
                font-size: 24px;
                margin-bottom: 25px;
            }

            .rosun-feature-list li {
                font-size: 17px;
                line-height: 1.6;
                margin-bottom: 18px;
            }

            .rosun-closing-text {
                font-size: 17px;
                text-align: center;
                padding: 0 30px;
            }

            .rosun-global-info {
                margin-top: 45px;
                padding: 0 30px;
            }

            .rosun-global-info p {
                font-size: 18px;
            }

           
        }

        /* Small Desktop (1025px - 1200px) */
        @media (min-width: 1025px) and (max-width: 1200px) {
            .navbar {
                padding: 0 2rem;
                height: 110px;
            }

            .logo img {
                height: 75px;
            }

            .nav-links {
                gap: 2.2rem;
            }

            .nav-links a {
                font-size: 16px;
            }

            .carousel-item {
                min-height: 90vh;
            }

            .slider-caption h1 {
                font-size: 3.5rem;
            }

            .banner-btn {
                font-size: 18px;
                padding: 15px 30px;
            }

            /* About Section Small Desktop */
            .rosun-about-wrapper {
                padding: 50px 0;
            }

            .rosun-main-title {
                font-size: 42px;
                line-height: 1.3;
            }

            .rosun-main-title .rosun-highlight {
                font-size: 72px;
                line-height: 1.3;
            }

            .rosun-sub-heading {
                font-size: 23px;
            }

            .rosun-intro-text {
                font-size: 19px;
            }

            .rosun-header-content {
                margin-bottom: 55px;
            }

            .rosun-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 45px;
                margin: 55px 0;
                max-width: 1100px;
            }

            .rosun-flip-item {
                height: 480px;
            }

            .rosun-card-front,
            .rosun-card-back {
                padding: 35px;
            }

            .rosun-card-heading {
                font-size: 26px;
                margin-bottom: 28px;
            }

            .rosun-feature-list li {
                font-size: 18px;
                line-height: 1.6;
                margin-bottom: 19px;
            }

            .rosun-closing-text {
                font-size: 18px;
            }

            .rosun-global-info {
                margin-top: 55px;
            }

            .rosun-global-info p {
                font-size: 19px;
            }
        }

        /* Medium Desktop (1201px - 1440px) */
        @media (min-width: 1201px) and (max-width: 1440px) {
            .navbar {
                padding: 0 2.5rem;
                height: 120px;
            }

            .logo img {
                height: 80px;
            }

            .nav-links {
                gap: 2.5rem;
            }

            .nav-links a {
                font-size: 16px;
            }

            .carousel-item {
                min-height: 100vh;
            }

            .slider-caption h1 {
                font-size: 4rem;
            }

            .banner-btn {
                font-size: 18px;
                padding: 15px 30px;
            }

            /* About Section Medium Desktop */
            .rosun-about-wrapper {
                padding: 60px 0;
            }

            .rosun-main-title {
                font-size: 48px;
                line-height: 1.4;
            }

            .rosun-main-title .rosun-highlight {
                font-size: 84px;
                line-height: 1.4;
            }

            .rosun-sub-heading {
                font-size: 24px;
            }

            .rosun-intro-text {
                font-size: 15px;
            }

            .rosun-header-content {
                margin-bottom: 60px;
            }

            .rosun-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 50px;
                /* margin: 60px 0; */
                max-width: 1200px;
            }

            .rosun-flip-item {
                height: 500px;
            }

            .rosun-card-front,
            .rosun-card-back {
                padding: 40px;
            }

            .rosun-card-heading {
                font-size: 28px;
                margin-bottom: 30px;
            }

            .rosun-feature-list li {
                font-size: 16px;
                line-height: 1.7;
                margin-bottom: 8px;
                margin-top: 5px;
            
            }

            .rosun-closing-text {
                font-size: 20px;
            }

            .rosun-global-info {
                margin-top: 60px;
            }

            .rosun-global-info p {
                font-size: 14px;
            }
        }

        /* Large Desktop (1441px and above) */
        @media (min-width: 1441px) {
            .navbar {
                padding: 0 8rem;
                height: 120px;
            }

            .logo img {
                height: 100px;
            }

            .nav-links {
                gap: 4rem;
            }

            .nav-links a {
                font-size: 18px;
            }

            .carousel-item {
                min-height: 100vh;
            }

            .slider-caption h1 {
                font-size: 4rem;
            }

            .banner-btn {
                font-size: 18px;
                padding: 15px 30px;
            }

            /* About Section Large Desktop */
            .rosun-about-wrapper {
                padding: 80px 0;
            }

            .rosun-main-title {
                font-size: 54px;
                line-height: 1.4;
            }

            .rosun-main-title .rosun-highlight {
                font-size: 96px;
                line-height: 1.4;
            }

            .rosun-sub-heading {
                font-size: 26px !important;
                font-family: 'Poppins', sans-serif;
                /* font-size: 24px; */
                color: #676767;
                font-weight: 600;
                line-height: 100%;
                margin-bottom: 30px;
                background-color: #FFC911;
                display: inline-block;
                padding: 5px 10px 5px 10px;
                border-radius: 6px;
            }
            .hover-zoom:hover {
            transform: scale(1.03);
            border: 2px solid #00b341 !important; 
            box-shadow: 0 4px 15px rgba(0, 179, 65, 0.2);
            z-index: 2;
            }

            .rosun-intro-text {
                font-size: 20px;
            }

            .rosun-header-content {
                margin-bottom: 80px;
            }

            .rosun-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .rosun-flip-item {
                height: 400px;
            }

            .rosun-card-front,
            .rosun-card-back {
                padding: 45px;
            }

            .rosun-card-heading {
                font-size: 45px;
            }
            .flipcard-front {
                    display: flex !important;
                    flex-direction: column;
                    font-size: 25px;
                }
            .rosun-feature-list li {
                font-size: 16px;
                line-height: 1.1;
                margin-bottom: 22px;
            }

            .rosun-closing-text {
                font-size: 22px;
            }

            .rosun-global-info {
                margin-top: 80px;
            }

            .rosun-global-info p {
                font-size: 22px;
            }
        }

        /* Touch devices - Enhanced mobile interaction */
        @media (hover: none) and (pointer: coarse) {
            .rosun-flip-item {
                cursor: pointer;
            }

            .rosun-flip-item:active .rosun-card-container {
                transform: rotateY(180deg);
            }

            .rosun-hover-hint {
                display: block;
                opacity: 1;
            }

            .rosun-hover-hint::after {
                content: " (Tap)";
            }
        }

        /* High DPI displays */
        @media (-webkit-min-device-pixel-ratio: 2),
        (min-resolution: 192dpi) {

            .rosun-card-front,
            .rosun-card-back {
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            }
        }

        /* Landscape orientation on mobile */
        @media (max-height: 480px) and (orientation: landscape) {
            .rosun-about-wrapper {
                padding: 20px 0;
            }

            .rosun-flip-item {
                height: 300px;
            }

            .rosun-header-content {
                margin-bottom: 20px;
            }

            .rosun-cards-grid {
                margin: 20px 0;
            }

            .rosun-main-title {
                line-height: 1.1;
            }

            .rosun-main-title .rosun-highlight {
                line-height: 1.1;
            }
        }

        /* Print styles */
        @media print {
            .rosun-flip-item {
                height: auto;
                perspective: none;
            }

            .rosun-card-container {
                transform: none !important;
            }

            .rosun-card-back {
                display: none;
            }

            .rosun-hover-hint {
                display: none;
            }
        }

        /* Our Portfolio */
        .our-portfolio-section {
            background-color: #f8fff0;
            background-image: url(../imgs/Our_Portfolio/Our_Portfolio_BG.png);
            background-size: 95%; 
            background-position: center;
            background-repeat: no-repeat;
          
            
        }
        
        .honeycomb-logo {
            width: 100%;
        }

        .header {
            text-align: center;
        }

        .header h1 {
            font-weight: 600;
            position: relative;
            display: inline-block;
            padding-bottom: 1rem;
            font-size: 86px;
            font-family: Rubik, sans-serif;
            line-height: 89px;
            color: #008A00;
            padding-top: 1em;
        }

        .header h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--highlight);
            border-radius: 2px;
        }

        .honeycomb-grid {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
            padding: 100px 0;
            position: relative;
            z-index: 1;
            overflow: visible;
            width: 100%;
        }

        .honeycomb-row {
            display: flex;
            justify-content: center;
            margin-bottom: -30px;
            position: relative;
            z-index: 1;
        }

        .honeycomb-cell {
            position: relative;
            width: 230px;
            height: 250px;
            margin: 0 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            text-align: center;
            transition: all 0.4s ease;
            cursor: pointer;
            z-index: 1;
            background: transparent !important;
            box-shadow: none !important;
        }
        
        .honeycomb-cell::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            background: transparent;
            z-index: -1;
            border: none;
            pointer-events: none;
        }

        .honeycomb-cell {
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                        box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Individual cell hover */
        .honeycomb-cell:hover {
            transform: scale(1.05);
            box-shadow: 0 0 35px rgba(0, 0, 0, 0.3);
            z-index: 30;
        }

        /* Container hover - affects all cells */
        .honeycomb:hover .honeycomb-cell {
            transform: scale(1.1);
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
            z-index: 20;
        }
        
        /* When container is hovered, override individual cell hover */
        .honeycomb:hover .honeycomb-cell:hover {
            transform: scale(1.25);
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
            z-index: 40;
        }

        /* Specific hover for cell-1 */
        .honeycomb-cell.cell-1:hover {
            transform: translate(-15px, -15px) scale(1.1);
            box-shadow: 0 0 35px rgba(0, 120, 0, 0.3);
            z-index: 45;
        }
        
        /* Override when container is also hovered */
        .honeycomb:hover .honeycomb-cell.cell-1:hover {
            transform: translate(-20px, -20px) scale(1.15);
            box-shadow: 0 0 45px rgba(0, 150, 0, 0.4);
            z-index: 50;
        }

        /* Specific hover for cell-2 */
        .honeycomb-cell.cell-2:hover {
            transform: translate(15px, -15px) scale(1.1);
            box-shadow: 0 0 35px rgba(0, 100, 200, 0.3);
            z-index: 45;
        }
        
        /* Override when container is also hovered */
        .honeycomb:hover .honeycomb-cell.cell-2:hover {
            transform: translate(20px, -20px) scale(1.15);
            box-shadow: 0 0 45px rgba(0, 120, 220, 0.4);
            z-index: 50;
        }

        /* Specific hover for cell-3 */
        .honeycomb-cell.cell-3:hover {
            transform: translate(-50px, 0px) scale(1.1);
            box-shadow: 0 0 35px rgba(200, 100, 0, 0.3);
            z-index: 45;
        }
        
        /* Override when container is also hovered */
        .honeycomb:hover .honeycomb-cell.cell-3:hover {
            transform: translate(20px, 20px) scale(1.15);
            box-shadow: 0 0 45px rgba(220, 120, 0, 0.4);
            z-index: 50;
        }

        /* Specific hover for cell-5 */
        .honeycomb-cell.cell-5:hover {
            transform: translate(50px, 0px) scale(1.1);
            box-shadow: 0 0 35px rgba(0, 200, 200, 0.3);
            z-index: 45;
        }
        
        /* Override when container is also hovered */
        .honeycomb:hover .honeycomb-cell.cell-5:hover {
            transform: translate(-20px, 20px) scale(1.15);
            box-shadow: 0 0 45px rgba(0, 220, 220, 0.4);
            z-index: 50;
        }

        /* Specific hover for cell-6 */
        .honeycomb-cell.cell-6:hover {
            transform: translate(-12px, 19px) scale(1.1);
            box-shadow: 0 0 35px rgba(150, 0, 200, 0.3);
            z-index: 45;
        }
        
        /* Override when container is also hovered */
        .honeycomb:hover .honeycomb-cell.cell-6:hover {
            transform: translate(0px, -50px) scale(1.15);
            box-shadow: 0 0 45px rgba(180, 0, 220, 0.4);
            z-index: 50;
        }
        
        .honeycomb-cell.cell-7:hover {
            transform: translate(0, 19px) scale(1.1);
            box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
            z-index: 45;
        }
        
        /* Override when container is also hovered */
        .honeycomb:hover .honeycomb-cell.cell-7:hover {
            transform: translate(0, -50px) scale(1.15);
            box-shadow: 0 0 45px rgba(0, 0, 0, 0.3);
            z-index: 50;
        }
        
       
        

        /* Tooltip base styles */
        .tooltip {
            position: absolute;
            background: white;
            padding: 10px 20px;
            border-radius: 6px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            opacity: 1;
            visibility: visible;
            transition: all 0.3s ease;
            z-index: 1000;
            pointer-events: none;
            transform-style: preserve-3d;
            will-change: transform, opacity;
        }

        .tooltip {
            border: 1px solid #e0e0e0;
            min-width: 160px;
            text-align: center;
            transform-origin: center;
            /* Ensure tooltip is not clipped by parent */
            will-change: transform, opacity;
            /* Force hardware acceleration */
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }

        /* Base tooltip styles are now in the .tooltip class */

        /* Tooltips are now always visible by default */
        .honeycomb-cell .tooltip {
            opacity: 1;
            visibility: visible;
            transform: translate(0, 0);
        }

        .cell-1 {
            position: relative;
            overflow: visible !important;
        }
        .cell-1 .tooltip {
            position: absolute;
            left: -218px;
            top: 50%;
            transform: translateY(-50%) translateX(-10px);
            right: auto;
            white-space: nowrap;
            z-index: 1000;
            pointer-events: none;
            /* Ensure tooltip is not affected by parent's transform */
            transform-style: preserve-3d;
            background-color: #008A00;
            color: white;
        }
        .cell-1:hover .tooltip {
            transform: translateY(-50%) translateX(0);
            opacity: 1;
            visibility: visible;
            background-color: #ffc911;
            color: black;
        }

        /* Cell 2 - Top Right */
        .cell-2 {
            position: relative;
            overflow: visible !important;
        }
        .cell-2 .tooltip {
            right: -220px;
            left: auto;
            top: 50%;
            transform: translateY(-50%) translateX(10px);
            white-space: nowrap;
            z-index: 1000;
            pointer-events: none;
            transform-style: preserve-3d;
            background-color: #008A00;
            color: white;
        }
        .cell-2:hover .tooltip {
            transform: translateY(-50%) translateX(0);
            opacity: 1;
            visibility: visible;
            background-color: #ffc911;
            color: black;
        }

        /* Cell 3 - Middle Left */
        .cell-3 {
            position: relative;
            overflow: visible !important;
            transform: translateX(-20px);
        }
        .cell-3 .tooltip {
            left: -170px;
            right: auto;
            top: 50%;
            transform: translateY(-50%) translateX(-10px);
            white-space: nowrap;
            z-index: 1000;
            pointer-events: none;
            transform-style: preserve-3d;
            background-color: #008A00;
            color: white;
        }
        .cell-3:hover .tooltip {
            transform: translateY(-50%) translateX(0);
            opacity: 1;
            visibility: visible;
            background-color: #ffc911;
            color: black;
        }

        /* Cell 4 - Center (Logo) */
        .cell-4 {
            position: relative;
            overflow: visible !important;

        }
        .cell-4 .tooltip {
            position: absolute;
            left: 100px;
            top: 50%;
            transform: translate(-50%, -50%) translateY(10px);
            white-space: nowrap;
            z-index: 1000;
            pointer-events: none;
            transform-style: preserve-3d;
            text-align: center;
            width: auto;
            margin: 0;
            background-color: #008A00;
            color: white;
        }
        .cell-4:hover .tooltip {
            transform: translate(-50%, -50%) translateY(0);
            opacity: 1;
            visibility: visible;
            background-color: #ffc911;
            color: black;
        }

        /* Cell 5 - Middle Right */
        .cell-5 {
            position: relative;
            overflow: visible !important;
            transform: translateX(20px);
        }
        .cell-5 .tooltip {
            right: -170px;
            left: auto;
            top: 50%;
            transform: translateY(-50%) translateX(10px);
            white-space: nowrap;
            z-index: 1000;
            pointer-events: none; /* Container doesn't get pointer events */
            transform-style: preserve-3d;
            background-color: #008A00;
            color: white;   
            padding: 10px 15px;
            border-radius: 4px;
        }
        
        .cell-5 .tooltip a {
            pointer-events: auto !important; /* Links get pointer events */
            display: block;
            text-decoration: none;
            width: 100%;
            height: 100%;
        }
        
        /* .cell-5 .tooltip a:hover {
            color: #49A760;
        } */
        .cell-5:hover .tooltip {
            transform: translateY(-50%) translateX(0);
            opacity: 1;
            visibility: visible;
            background-color: #ffc911;
            color: black;
        }

        /* Cell 6 - Bottom Left */
        .cell-6 {
            position: relative;
            overflow: visible !important;
        }
        .cell-6 .tooltip {
            left: -240px;
            right: auto;
            top: 50%;
            transform: translateY(-50%) translateX(-10px);
            white-space: nowrap;
            z-index: 1000;
            pointer-events: none; /* Container doesn't get pointer events */
            transform-style: preserve-3d;
            max-width: 200px;
            background-color: #008A00;
            color: white;
            padding: 15px 20px;
        }
        
        .cell-6 .tooltip a {
            pointer-events: auto !important; /* Links get pointer events */
            position: relative;
            z-index: 1001;
            text-decoration: none;
            display: block; /* Make the link fill the tooltip */
            width: 100%;
            height: 100%;
        }
        
        /* .cell-6 .tooltip a:hover {
            color: #000000 !important;
            text-decoration: underline;
        } */
        .cell-6:hover .tooltip {
            transform: translateX(0);
            background-color: #ffc911;
            color: black;
        }

        .cell-7 {
            position: relative;
            overflow: visible !important;
        }
        .cell-7 .tooltip {
            right: -280px;
            left: auto;
            top: 50%;
            transform: translateY(-50%) translateX(10px);
            white-space: normal;
            z-index: 1000;
            pointer-events: auto;
            transform-style: preserve-3d;
            max-width: 250px;
            text-align: left;
            padding: 15px 20px;
            line-height: 1.5;
            font-size: 1.05em;
            background-color: #008A00;
            color: white;
        }
        
        .cell-7 .tooltip a {
            pointer-events: auto !important;
            position: relative;
            z-index: 1001;
            color: inherit;
            text-decoration: none;
        }
        
        /* .cell-7 .tooltip a:hover {
            color: #ffffff;
            text-decoration: underline;
        } */
        .cell-7:hover .tooltip {
            transform: translateY(-50%) translateX(0);
            opacity: 1;
            visibility: visible;
            background-color: #ffc911;
            color: black;
        }

        /* Tooltip link styles */
        .tooltip a {
            color: inherit;
            text-decoration: none !important;
            transition: color 0.3s ease;
            font-weight: 600 !important;
        }
        /* .tooltip a:hover {
            color: #49A760;
        } */

        .honeycomb-cell::before {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            right: 2px;
            bottom: 2px;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            background: transparent;
            z-index: -1;
        }

        .honeycomb-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--primary);
            transition: transform 0.3s ease;
        }

        .honeycomb-cell:hover .honeycomb-icon {
            transform: scale(1.2);
            color: var(--highlight);
        }

        .honeycomb-title {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--dark);
        }

        .honeycomb-desc {
            font-size: 0.85rem;
            color: var(--dark);
            opacity: 0.8;
        }

        /* Special styling for middle cell */
        .honeycomb-cell.center-cell {
            width: 250px;
            height: 250px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            z-index: 5;
        }

        .honeycomb-cell.center-cell .honeycomb-title {
            color: white;
            font-size: 1.4rem;
            font-weight: 800;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        .honeycomb-cell.center-cell .honeycomb-desc {
            color: white;
            font-weight: 500;
        }

        .honeycomb-cell.center-cell .honeycomb-icon {
            color: white;
            font-size: 3rem;
        }

        /* Tagline section */
        .tagline-section {
            text-align: center;
            margin-top: 4rem;
            padding: 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            max-width: 800px;
            margin: 4rem auto 0;
            position: relative;
            overflow: hidden;
        }

        .tagline-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(90deg, var(--highlight), var(--primary));
        }

        .tagline-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .tagline-subtitle {
            font-size: 1.4rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .tagline-values {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 1.5rem;
        }

        .tagline-value {
            padding: 10px 20px;
            background: var(--light);
            border-radius: 50px;
            font-weight: 600;

.tagline-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tagline-subtitle {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 10px solid transparent;
            border-top-color: rgba(255, 255, 255, 0.85);
        }

        .honeycomb-cell:hover .tooltip {
            opacity: 1;
            transform: translateY(-15px);
        }

        /* Responsive adjustments - CORRECTED */
        @media (max-width: 1200px) {
            .honeycomb-cell {
                width: 220px;
                height: 220px;
            }

            .honeycomb-cell.center-cell {
                width: 200px;
                height: 220px;
            }
        }

        @media (max-width: 992px) {
            .honeycomb-cell {
                width: 180px;
                height: 180px;
                margin: 0 10px;
            }

            .honeycomb-cell.center-cell {
                width: 170px;
                height: 180px;
            }

            .honeycomb-row {
                margin-bottom: -25px;
            }

            .header h1 {
                font-size: 70px;
                line-height: 75px;
            }
        }

      

        @media (max-width: 768px) {
            .our-portfolio-section {
                padding-top: 6em;
                
            }

        
            

            .header h1 {
                font-size: 50px;
                line-height: 55px;
            }

            .honeycomb-row {
                flex-wrap: wrap;
                margin-bottom: 0;
                justify-content: center;
                /* gap: 10px; */
            }

            .honeycomb-cell {
                margin: 5px;
                width: 150px;
                height: 150px;
            }

            .honeycomb-cell.center-cell {
                width: 140px;
                height: 150px;
                order: -1;
                margin-bottom: 15px;
            }

            .honeycomb-row:nth-child(2) {
                flex-direction: row;
                align-items: center;
            }

            /* .honeycomb-row:nth-child(2) .honeycomb-cell:not(.center-cell) {
                order: 1;
            } */

            .tagline-values {
                flex-direction: column;
                gap: 1rem;
            }

            .tagline-title {
                font-size: 2rem;
            }

            .tagline-subtitle {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 600px) {
            .header h1 {
                font-size: 40px;
                line-height: 45px;
            }

            .honeycomb-cell {
                width: 130px;
                height: 130px;
                margin: 3px;
            }

            .honeycomb-cell.center-cell {
                width: 125px;
                height: 130px;
            }

            .honeycomb-row {
                gap: 8px;
                margin-bottom: 5px;
            }
        }

        @media (max-width: 480px) {
            .our-portfolio-section {
                padding-top: 1.5em;
                padding-bottom: 1.5em;
            }

            .header h1 {
                font-size: 35px;
                line-height: 40px;
            }

            .honeycomb-cell {
                width: 110px;
                height: 130px;
                margin: 2px;
            }

            .honeycomb-cell.center-cell {
                width: 105px;
                height: 110px;
            }

            .honeycomb-icon {
                font-size: 1.8rem;
            }

            .honeycomb-title {
                font-size: 0.9rem;
            }

            .honeycomb-desc {
                font-size: 0.75rem;
            }

            .tagline-title {
                font-size: 1.8rem;
            }

            .tagline-subtitle {
                font-size: 1rem;
            }

            .tagline-section {
                margin-top: 3rem;
                padding: 1.5rem;
            }

            .honeycomb-row {
                gap: 5px;
                margin-bottom: 0;
            }
        }

        @media (max-width: 360px) {
            .header h1 {
                font-size: 28px;
                line-height: 32px;
            }

            .honeycomb-cell {
                width: 95px;
                height: 95px;
                margin: 1px;
            }

            .honeycomb-cell.center-cell {
                width: 90px;
                height: 95px;
            }

            .honeycomb-icon {
                font-size: 1.5rem;
            }

            .honeycomb-title {
                font-size: 0.8rem;
            }

            .honeycomb-desc {
                font-size: 0.7rem;
            }

            .tagline-title {
                font-size: 1.5rem;
            }

            .tagline-subtitle {
                font-size: 0.9rem;
            }
        }

        /* Landscape orientation for mobile devices */
        @media (max-height: 500px) and (orientation: landscape) {
            .our-portfolio-section {
                padding-top: 1em;
                padding-bottom: 1em;
            }

            .header h1 {
                font-size: 30px;
                line-height: 35px;
            }

            .honeycomb-cell {
                width: 80px;
                height: 80px;
            }

            .honeycomb-cell.center-cell {
                width: 75px;
                height: 80px;
            }

            .honeycomb-row {
                margin-bottom: 0;
                gap: 3px;
            }
        }

        /* Very small screens or older devices */
        @media (max-width: 320px) {
            .header h1 {
                font-size: 24px;
                line-height: 28px;
            }

            .honeycomb-cell {
                width: 85px;
                height: 85px;
            }

            .honeycomb-cell.center-cell {
                width: 80px;
                height: 85px;
            }

            .honeycomb-icon {
                font-size: 1.3rem;
            }

            .honeycomb-title {
                font-size: 0.75rem;
            }

            .honeycomb-desc {
                font-size: 0.65rem;
            }
        }

        /* our product section */
        .organic-main-wrapper {
            background-color: #ffffff;
            min-height: 100vh;
            padding: 40px 10px;
        }

        .organic-main-title {
            text-align: left;
            color: #0d7a00;
            font-size: 60px;
            font-weight: 700;
            margin-bottom: 40px;
        }

        .organic-flex-container {
            display: flex;
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
            min-height: 600px;
            background-color: #ffffff;
        }

        /* First Div - Tab Navigation */
        .organic-tab-section {
            flex: 0 0 280px;
            background: #ffffff;
            padding: 20px 0;
        }

        .organic-tab-item {
            display: flex;
            align-items: center;
            padding: 5px 5px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            background-color: #ffffff;
            border: 2px solid transparent;
        }

        .organic-tab-item.active {
            border-bottom: 1px dashed #B5B5B5;
            border-top: 1px dashed #B5B5B5;
            border-left: 10px solid #34C759;
        }

        .organic-tab-icon {
            width: 50px;
            height: 50px;
            margin-right: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .organic-tab-icon img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        .organic-tab-text {
            flex: 1;
        }

        .organic-tab-title {
            margin: 0;
            color: #333;
            font-size: 16px;
            font-weight: 600;
        }

        .organic-tab-item.active .organic-tab-title {
            color: #34C759;
        }

        /* Second Div - Main Content */
        .organic-content-section {
            flex: 1;
            background: #ffffff;
            padding: 0 20px;
        }

        .organic-content-subtitle {
            color: #666;
            font-size: 20px;
            margin-bottom: 20px;
        }

        .organic-content-description {
            color: #666;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .organic-features-list {
            margin-top: 30px;
        }

        .organic-features-heading {
            color: #333;
            font-size: 28px;
            margin-bottom: 25px;
        }

        .organic-feature-item {
            display: flex;
            align-items: flex-start;
            /* margin-bottom: 10px; */
            padding: 10px;
            transition: all 0.3s ease;
        }

        .organic-feature-icon {
            color: #d4a500;
            font-size: 18px;
            margin-right: 15px;
            padding-top: 3px;
            flex-shrink: 0;
        }

        /* Commitment Section - New Addition */
        .organic-commitment-section {
            margin-top: 15px;
        }

        .organic-commitment-heading {
            color: #333;
            font-size: 28px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .organic-commitment-text {
            color: #666;
            line-height: 1.8;
            margin: 0;
        }

        /* Third Div - Product Card */
        .organic-product-wrapper {
            flex: 0 0 350px;
            position: relative;
        }

        .organic-main-title {
            padding-left: 15px;
        }

        /* .organic-product-card {
            background: #ffffff;
            border-radius: 0 0 25px 25px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
        } */

        .organic-product-header {
            background-color: #DAAB0A;
            color: white;
            padding: 10px 30px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .organic-product-header-title {
            margin: 0;
            font-size: 30px;
            font-weight: 600;
        }

        .organic-product-content {
            background-color: #0d7a00;
            color: white;
            padding: 30px 5px 2px 15px;
            border-top-left-radius: 25px;
            border-top-right-radius: 25px;
            border-bottom-left-radius: 25px;    
            border-bottom-right-radius: 25px;
            margin-top: -20px;
            min-height: 450px;
            overflow: hidden;
        }
        
        .organic-product-content::before {
            content: '';
            position: absolute;
            bottom: 5px;
            top: 19px;
            right: 0;
            left: 0;
            width: 0px;
            height: 0;
            border-left: 17px solid transparent;
            border-right: 0px solid transparent;
            border-top: 20px solid #816508;
            z-index: 1;
        }
          
        .organic-product-content::after {
            content: '';
            position: absolute;
            bottom: 5px;
            top: 19px;
            right: 0px;
            width: 0px;
            height: 0;
            border-left: 0px solid transparent;
            border-right: 17px solid transparent;
            border-top: 20px solid #816508;
            z-index: 1;
        }

        .organic-product-category {
            margin-bottom: 30px;
        }

        .organic-product-category-title {
            font-size: 24px;
            margin-bottom: 15px;
            font-weight: 600;
            color: white;
        }

        .organic-product-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: white;
        }

        .organic-product-item i {
            margin-right: 10px;
            color: #ffd700;
            font-size: 14px;
        }

        .organic-product-item span {
            font-size: 20px;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .organic-flex-container {
                flex-direction: column;
            }

            .organic-tab-section {
                flex: 1;
                max-width: 100%;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 15px;
            }

            .organic-product-wrapper {
                flex: 1;
                max-width: 100%;
                margin-top: 30px;
            }

            .organic-tab-item {
                margin-bottom: 0;
            }
        }

        @media (max-width: 768px) {
            .organic-main-title {
                font-size: 32px;
            }

            .organic-content-section {
                padding: 0 0px;
            }

            .organic-tab-section {
                grid-template-columns: 1fr;
            }

            .organic-product-wrapper {
                margin: 20px 0;
            }
        }

        /* Animation */
        .fade-in {
            animation: fadeIn 0.5s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        /* certification section */
        .certification-section {
            height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background-image: url('../imgs/Certification/Certification_BG.png');
            background-size: cover;
            /* background-position: center; */
            background-repeat: no-repeat;
            background-attachment: fixed;
        }

        /* Dark overlay for better text visibility */
        .certification-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: rgba(0, 0, 0, 0.5); */
            z-index: 1;
        }

        .certification-container {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .certification-header {
            text-align: center;
            /* margin-bottom: 60px; */
        }

        .certification-title {
            font-family: Agdasima;
            font-size: 96px;
            color: #008A00;
            font-weight: 700;
        }

        /* Slider wrapper */
        .certification-slider-wrapper {
            position: relative;
            z-index: 1;
        }

        /* Individual rows */
        .certification-row {
            margin-bottom: 40px;
            position: relative;
            height: 180px;
            overflow: hidden;
        }

        /* Slider track */
        .certification-track {
            display: flex;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
        }

        .certification-track-left {
            animation: slideLeft 10s linear infinite;
        }

        .certification-track-right {
            animation: slideRight 10s linear infinite;
        }

        /* Certification items */
        .certification-item {
            flex: 0 0 auto;
            margin: 0 10px;
            /* height: 160px; */
            width: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .certification-item:hover {
            transform: translateY(-10px) scale(1.1);
        }

        .certification-logo {
            max-width: 90%;
            /* max-height: 140px; */
            width: auto;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
            transition: transform 0.3s ease;
        }

        .certification-item:hover .certification-logo {
            transform: scale(1.05);
        }

        /* Gradient masks for smooth fade effect */
        .certification-row::before,
        .certification-row::after {
            content: '';
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        /* Animations */
        @keyframes slideLeft {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes slideRight {
            0% {
                transform: translateX(-50%);
            }

            100% {
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .certification-title {
                font-size: 48px;
            }

            .certification-row {
                height: 160px;
            }

            .certification-item {
                width: 180px;
                height: 140px;
                margin: 0 30px;
            }

            .certification-logo {
                max-width: 160px;
                max-height: 120px;
            }
        }

        @media (max-width: 768px) {
            .certification-section {
                height: 100vh;
                min-height: 600px;
            }

            .certification-title {
                font-size: 36px;
            }

            .certification-row {
                height: 140px;
                margin-bottom: 30px;
            }

            .certification-item {
                width: 100px;
                height: 120px;
                margin: 0 20px;
            }

            .certification-logo {
                max-width: 130px;
                /* max-height: 100px; */
            }

            .certification-track-left {
                animation-duration: 30s;
            }

            .certification-track-right {
                animation-duration: 30s;
            }

            .certification-row::before,
            .certification-row::after {
                width: 80px;
            }
        }

        @media (max-width: 480px) {
            .certification-title {
                font-size: 28px;
            }

            .certification-header {
                margin-bottom: 40px;
            }

            .certification-row {
                height: 120px;
                margin-bottom: 20px;
            }

            .certification-item {
                width: 120px;
                height: 100px;
                margin: 0 0px;
            }

            .certification-logo {
                /* max-width: 100px; */
                max-height: 100px;
            }

            .certification-track-left,
            .certification-track-right {
                animation-duration: 25s;
            }

            .certification-row::before,
            .certification-row::after {
                width: 50px;
            }
        }

        /* Pause animation on hover */
        .certification-row:hover .certification-track {
            animation-play-state: paused;
        }

        /* Additional decorative elements */
        .certification-decoration {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(13, 122, 0, 0.1) 0%, transparent 70%);
            z-index: 0;
        }

        .certification-decoration-1 {
            top: -150px;
            left: -150px;
        }

        .certification-decoration-2 {
            bottom: -150px;
            right: -150px;
        }

        .contact-section {
            padding: 4em 20px;
            background-color: #fff;
        }

        .contact-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            background-color: #ffffff;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            min-height: 700px;
            position: relative;
        }

        .contact-form-section {
            width: 50%;
            padding: 40px;
            background-color: #ffffff;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }

        .contact-title {
            font-size: 42px;
            font-weight: 700;
            color: #000;
            margin-bottom: 40px;
        }

        .contact-title span {
            color: #1dd869;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-row {
            display: flex;
            gap: 20px;
        }

        .form-row .form-group {
            flex: 1;
        }

        .form-group input {
            width: 100%;
            border: none;
            border-bottom: 2px solid #ccc;
            padding: 5px 5px 5px 10px;
            font-size: 15px;
            background: transparent;
            outline: none;
        }

        .form-group input::placeholder {
            color: #aaa;
        }

        .form-group input:focus {
            border-bottom-color: #1dd869;
        }

        .file-upload {
            padding: 40px;
            border: 2px dashed #ccc;
            border-radius: 10px;
            text-align: center;
            cursor: pointer;
            background-color: #fafafa;
            transition: all 0.3s ease;
        }

        .file-upload:hover {
            background-color: #f0f7ff;
            border-color: #1dd869;
        }

        .file-upload-icon {
            font-size: 24px;
            color: #666;
            margin-bottom: 10px;
        }

        .file-upload-text {
            font-size: 14px;
            color: #666;
        }

        .file-size-limit {
            font-size: 12px;
            color: #999;
            margin-top: 10px;
        }

        .checkbox-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: #555;
        }

        .submit-btn {
            background-color: #007bff;
            color: white;
            border: none;
            padding: 14px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background 0.3s ease;
        }

        .submit-btn:hover {
            background-color: #0056b3;
        }

        .contact-info {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #444;
            font-size: 14px;
        }

        .contact-info-item i {
            color: #1dd869;
            font-size: 18px;
        }

        .contact-info-item a {
            color: #444;
            text-decoration: none;
        }

        .contact-background-section {
            width: 50%;
            background: linear-gradient(90deg, #ffffff 45%, #23CC70 0%);
            position: relative;
            padding: 40px 40px 40px 0px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .map-overlay {
            width: 100%;
            height: 100%;
        }

        .map-overlay iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
            border-radius: 10px;
        }

        .file-input-hidden {
            display: none;
        }

        /* New Office Info Section */
        .office-info-section {
            padding: 30px 10px;
            background-color: #ffffff;
        }

        .office-info-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 0;
            background-color: #ffffff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 25px;
            ;
        }

        .qr-code-section {
            flex-shrink: 0;
            padding: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .offices-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            flex: 1;
        }

        .office-item {
            padding: 25px;
        }

        .office-title {
            color: #1dd869;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .company-name {
            color: #000;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .office-address {
            color: #666;
            font-size: 13px;
            line-height: 1.5;
            margin: 0;
        }

        /* Footer Section */
        .footer-section {
            background-color: #ffffff;
            padding: 20px;
            /* border-top: 1px solid #e9ecef; */
        }

        .footer-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-left {
            color: #666;
            font-size: 14px;
        }

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

        .footer-center span {
            color: #666;
            font-size: 14px;
        }

        .social-icons {
            display: flex;
            gap: 5px;
        }

        .social-icon {
            width: 32px;
            height: 32px;
            color: #666;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            text-decoration: none;
            font-size: 20px;
            transition: background-color 0.3s ease;
        }

        .social-icon:hover {
            background-color: #1dd869;
            color: white;
        }

        .footer-right {
            color: #666;
            font-size: 14px;
        }

        .footer-right a {
            color: #1dd869;
            text-decoration: none;
        }

        /* Responsive Fixes */
        @media (max-width: 992px) {
            .contact-wrapper {
                flex-direction: column;
                border-radius: 20px;
            }

            .contact-form-section {
                width: 100%;
                padding: 15px;
            }

            .contact-section {
                padding: 15px 10px;
                background-color: #fff;
            }

            .contact-background-section {
                width: 100%;
                height: 400px;
                border-radius: 0;
                border-bottom-left-radius: 50px;
                border-bottom-right-radius: 50px;
            }

            .map-overlay {
                position: relative;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 90%;
                height: 80%;
            }

            .office-info-wrapper {
                flex-direction: column;
                gap: 40px;
            }

            .offices-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .footer-wrapper {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .form-row {
                flex-direction: column;
            }

            .submit-btn {
                width: 100%;
            }

            .contact-title {
                font-size: 32px;
            }

            .contact-info {
                flex-direction: column;
                gap: 15px;
            }

            .map-overlay {
                width: 95%;
                height: 250px;
            }

            .office-info-section {
                padding: 40px 20px;
            }

            .office-item {
                padding: 20px;
            }

            .qr-code-placeholder {
                width: 100px;
                height: 100px;
            }

            .qr-code-placeholder i {
                font-size: 50px;
            }

            .footer-center {
                flex-direction: column;
                gap: 10px;
            }

            .social-icons {
                justify-content: center;
            }
        }

        /* Certification Slider Styles */
        .certification-slider-wrapper {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .certification-row {
            display: flex;
            width: 100%;
            margin: 10px 0;
        }

        .certification-track {
            display: flex;
            align-items: center;
            white-space: nowrap;
            will-change: transform;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
        }

        .certification-track-left {
            animation: scrollLeft 30s linear infinite;
        }

        .certification-track-right {
            animation: scrollRight 30s linear infinite;
        }

        .certification-item {
            flex: 0 0 auto;
            margin: 0 10px;
            transition: transform 0.3s ease;
        }

        .certification-item:hover {
            transform: scale(1.1);
        }

        .certification-logo {
            max-width: 160px;
            height: auto;
            filter: grayscale(0%);
            opacity: 1;
            transition: all 0.3s ease;
        }

        .certification-item:hover .certification-logo {
            filter: grayscale(0%);
            opacity: 1;
        }

        @keyframes scrollLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes scrollRight {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }

        .enquiry-now-sticky {
            position: fixed;
            right: -70px;
            top: 46%;
            transform: rotate(-90deg) translateY(-50%);
            background-color: #49A760;
            color: white;
            padding: 10px 20px;
            border-radius: 10px 10px 0 0;
            cursor: pointer;
            z-index: 999;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
          }
      
          .enquiry-now-sticky:hover {
            background-color: #45a049;
          }
      
          .enquiry-form-popup {
            position: fixed;
            top: 50%;
            right: -400px;
            width: 350px;
            transform: translateY(-50%);
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            transition: right 0.4s ease-in-out;
            border-radius: 10px;
            overflow: hidden;
          }
      
          .enquiry-form-popup.show {
            right: 20px;
          }
      
          .enquiry-form-container {
            padding: 20px;
            display: flex;
            flex-direction: column;
            height: 100%;
          }
      
          .enquiry-form-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
          }
      
          .enquiry-form-header h3 {
            margin: 0;
            color: #F9A826;
            font-size: 1.5rem;
            text-align: center;
            flex-grow: 1;
          }
      
          .close-enquiry-form {
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #666;
          }
      
          .enquiry-form-body {
            flex: 1;
            overflow-y: hidden;
            max-height: 450px;
          }
      
          .enquiry-form-body p {
            text-align: center;
            color: #666;
          }
      
          .form-group {
            margin-bottom: 12px;
          }
      
          .form-group input,
          .form-group textarea,
          .form-group select {
            width: 100%;
            padding: 8px 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
            box-sizing: border-box;
          }
      
          .form-group textarea {
            resize: vertical;
            max-height: 100px;
            min-height: 60px;
          }
      
          .phone-input-container {
            display: flex;
          }
      
          .country-code {
            width: 80px !important;
            margin-right: 5px;
          }
      
          /* Animated Submit Button Styles */
          .submit-btn-container {
            margin-top: -15px;
            display: flex;
            justify-content: center;
          }
          
          .btn {
            background-color: transparent;
            border-radius: 1.5em;
            display: block;
            position: relative;
            width: 7.5em;
            height: 3em;
            transition: width 0.3s ease-in-out;
            border: none;
            cursor: pointer;
            padding: 0;
          }
          
          .btn:not(:disabled):active {
            transform: translateY(0.1em);
          }
          
          .btn__text {
            background-color: #49A760;
            border-radius: inherit;
            color: hsl(0,0%,100%);
            display: inline-block;
            padding: 0.75em 1.5em;
            transition:
              background-color 0.15s linear,
              color 0.15s 0.3s ease-in-out;
            width: 100%;
            font-weight: bold;
            font-size: 14px;
          }
          
          .btn:not(:disabled):focus .btn__text,
          .btn:not(:disabled):hover .btn__text {
            background-color: #3d6922;
          }
          
          .btn__progress {
            overflow: visible;
            position: absolute;
            top: 0;
            left: 0;
            width: 3em;
            height: 3em;
            visibility: hidden;
          }
          
          .btn__progress-track {
            r: 12px;
            stroke: #ddd;
            stroke-width: 24;
          }
          
          .btn__progress-fill {
            stroke: #49A760;
            stroke-dashoffset: 125.66;
          }
          
          .btn__progress-check {
            stroke: hsl(0,0%,100%);
            stroke-dashoffset: 34;
          }
          
          /* Both states */
          .btn--running,
          .btn--done {
            outline: none;
            pointer-events: none;
            width: 3em;
            user-select: none;
            -moz-user-select: none;
            -webkit-user-select: none;
          }
          
          .btn--running .btn__text,
          .btn--done .btn__text {
            color: transparent;
            transition:
              background-color 0.3s ease-in-out,
              visibility 0.3s steps(1);
          }
          
          .btn--running .btn__progress,
          .btn--done .btn__progress {
            visibility: visible;
          }
          
          /* Running state */
          .btn--running .btn__text {
            background-color: #ddd;
            visibility: hidden;
          }
          
          .btn--running .btn__progress {
            transition: visibility 0.3s 0.3s steps(1,start);
          }
          
          .btn--running .btn__progress-track {
            r: 20px;
            stroke-width: 8;
            transition:
              r 0.3s 0.3s ease-in-out,
              stroke-width 0.3s 0.3s ease-in-out;
          }
          
          .btn--running .btn__progress-fill {
            stroke-dashoffset: 0;
            transition: stroke-dashoffset 2s 0.6s linear;
          }
          
          /* Done state */
          .btn--done .btn__progress-track {
            stroke: #49A760;
            transition:
              r 0.3s ease-in-out,
              stroke-width 0.3s ease-in-out;
          }
          
          .btn--done .btn__progress-check {
            stroke-dashoffset: 0;
            transition: stroke-dashoffset 0.3s 0.3s ease-out;
          }
      

          .form-success-message {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #d4edda;
            color: #155724;
            padding: 20px;
            border-radius: 10px;
            font-size: 18px;
            text-align: center;
            border: 1px solid #c3e6cb;
            display: none;
            z-index: 2000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            max-width: 80%;
          }
      
          @media (max-width: 767.98px) {
            .enquiry-form-popup {
              width: 300px;
              right: -320px;
            }
      
            .enquiry-form-popup.show {
              right: 10px;
            }
          }
      
          @media (max-width: 575.98px) {
            .enquiry-form-popup {
              width: 280px;
              right: -290px;
            }
      
            .enquiry-form-popup.show {
              right: 5px;
            }
          }