/* mainColor : 0F958A */
        /* darkColro:074B62 */
        .logo img{
            width: 100px;
        }
        .text-guvi { color: #0F958A; }
        .bg-guvi { background-color: #0F958A; }
        /* Custom Swiper Bullet Styling */
        .swiper-pagination-bullet-active { background: #0F958A !important; }

        :root { --guvi-green: #0F958A; --guvi-dark: #074B62; }
        .text-guvi { color: #0F958A; }

        /* Styling to match GUVI's professional partner look */
    .partner-logo-wrapper {
        /* filter: grayscale(100%); */
        /* opacity: 0.5; */
        transition: all 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .partner-logo-wrapper:hover {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.05);
    }

    .partner-logo {
        max-height: 100px; /* Uniform height for all partner logos */
        width: auto;
        object-fit: contain;
    }

    /* Remove Swiper's default transition timing to make it a constant marquee */
    .swiper-wrapper {
        transition-timing-function: linear !important;
    }

    /* Slider */

    /* Ensure the section and swiper take the absolute full width of the viewport */
    .hero-section {
            height: 450px; /* Standard GUVI hero height */
        }
        
        .swiper {
            width: 100%;
            height: 100%;
        }

        .swiper-slide {
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* Custom Pagination Styling */
        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: #fff;
            opacity: 0.5;
        }
        .swiper-pagination-bullet-active {
            background: #10b981 !important;
            width: 30px;
            border-radius: 6px;
            opacity: 1;
        }

        /* Navigation Button Styling */
        .nav-btn {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(4px);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
        }
        .nav-btn:hover {
            background: #10b981;
            transform: scale(1.1);
        }

        /* .hero-section {
            height: 450px; 
        }
        
        .hero-swiper {
            width: 100%;
            height: 100%;
        }

        .hero-swiper-slide {
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }


        .hero-swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: #fff;
            opacity: 0.5;
        }
        .hero-swiper-pagination-bullet-active {
            background: #10b981 !important;
            width: 30px;
            border-radius: 6px;
            opacity: 1;
        } */

 /* Testimonials*/
 
 .testimonial-swiper { padding-bottom: 60px; }
        .swiper-pagination-bullet-active { background: #10b981 !important; width: 25px; border-radius: 4px; }
        
        /* Subtle card hover effect */
        .testimonial-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
        }

 /**Footer*/
 
 .footer_logo{
    width: 150px;
 }

 /* Custom CSS utilities for the multilevel mega menu layout transition */
.domain-tab.active-tab {
    background-color: #ecfdf5 !important;
    color: #10b981 !important;
    font-weight: 700;
    box-shadow: inset 2px 0 0 0 #10b981;
}

.animated-fade-in {
    animation: menuFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes menuFadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom items layout rules specifically for the dense multi-column list array */
/* Premium Multi-Line UI Layout Engine */
.mega-course-item {
    display: flex;
    align-items: center;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    background-color: #f8fafc;
    border: 1px solid #f1f5f9;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.4;
    min-height: 3.5rem; /* Ensures matching box heights even if text wraps */
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Text wrapping fixes to show everything */
    white-space: normal !important;
    word-break: break-word;
    overflow: visible;
    text-overflow: clip;
}

.mega-course-item:hover {
    background-color: #ffffff;
    border-color: #a7f3d0; /* emerald-200 */
    color: #10b981; /* emerald-500 */
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.08);
    transform: translateY(-2px);
}

/* Scrollbar styling for a cleaner look */
.max-h-\[580px\]::-webkit-scrollbar {
    width: 4px;
}
.max-h-\[580px\]::-webkit-scrollbar-track {
    background: transparent;
}
.max-h-\[580px\]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}