
        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
  
        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 100vh;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        /* Video Background Styles */
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
            opacity: 0.3; /* Reduced video opacity */
        }

        .hero-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4); /* Darker overlay for better text readability */
            z-index: -1;
        }

        /* Fallback gradients (in case video doesn't load) */
        .bg-gradient-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .bg-gradient-secondary {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .bg-gradient-tertiary {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .hero-content {
            color: white;
            z-index: 2;
            position: relative;
            /* margin-top: 65px; */
        }

        .hero-content .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.25); /* Slightly more opaque */
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-top: 48px;
            backdrop-filter: blur(15px); /* More blur */
            border: 1px solid rgba(255, 255, 255, 0.4);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Added shadow */
        }

        .hero-content .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 12px;
            text-shadow: 0 6px 12px rgba(0, 0, 0, 0.8); /* Stronger shadow */
            color: white;
            position: relative;
        }

        .hero-content .hero-title .text-highlight {
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            text-shadow: none; /* Remove shadow from gradient text */
        }

        .hero-content .hero-description {
            font-size: 1.25rem;
            line-height: 1.6;
            margin-bottom: 12px;
            opacity: 1;
            max-width: 500px;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8); /* Stronger shadow */
            color: rgba(255, 255, 255, 0.95);
        }

        .hero-content .hero-stats {
            display: flex;
            gap: 32px;
            margin-bottom: 12px;
        }

        .hero-content .hero-stats .stat-item {
            text-align: center;
        }

        .hero-content .hero-stats .stat-item .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #ffd700;
            margin-bottom: 4px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-content .hero-stats .stat-item .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
            font-weight: 500;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .hero-content .hero-actions {
            display: flex;
            gap: 16px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .hero-content .hero-actions .btn {
            padding: 14px 28px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            font-size: 1rem;
            border: 2px solid transparent;
        }

        .hero-content .hero-actions .btn-primary {
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            border: none;
            color: white;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
        }

        .hero-content .hero-actions .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
            color: white;
        }
        .hero-content .hero-actions .btn-secondary {
            background: linear-gradient(45deg, #4285f4);
            border: none;
            color: white;
            box-shadow: 0 4px 15px rgb(66,133,244);
        }

        .hero-content .hero-actions .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgb(66,133,244);
            color: white;
        }

        .hero-content .hero-actions .btn-outline-light {
            background: rgba(255, 255, 255, 0.2); /* More opaque */
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: white;
            backdrop-filter: blur(15px); /* More blur */
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Added shadow */
        }

        .hero-content .hero-actions .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.7);
            transform: translateY(-2px);
            color: white;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
        }

        .hero-content .hero-features {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .hero-content .hero-features .feature-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            opacity: 0.9;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .hero-content .hero-features .feature-item i {
            color: #ffd700;
        }

        .hero-image {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image .image-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .hero-image .image-container .floating-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 16px;
            padding: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            will-change: transform;
        }

        .hero-image .image-container .card-1 {
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }

        .hero-image .image-container .card-2 {
            top: 20%;
            left: 5%;
            animation-delay: -2s;
        }

        .hero-image .image-container .card-3 {
            bottom: 15%;
            right: 5%;
            animation-delay: -4s;
        }

        .hero-image .image-container .floating-card .card-content {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 600;
            color: #333;
            font-size: 0.9rem;
        }

        .hero-image .image-container .floating-card .progress-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: conic-gradient(#4facfe 0deg, #4facfe 360deg, #e0e0e0 360deg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #333;
            font-size: 0.8rem;
        }

        .hero-image .image-container .floating-card .progress-circle .progress-value {
            background: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image .image-container .floating-card .user-group {
            display: flex;
            gap: -8px;
        }

        .hero-image .image-container .floating-card .user-group .user-avatar {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border: 2px solid white;
            margin-left: -8px;
        }

        .hero-image .image-container .floating-card .user-group .user-avatar:first-child {
            margin-left: 0;
        }

        /* Device Mockups */
        .main-hero-image {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
        }

        .main-hero-image .laptop-mockup {
            width: 400px;
            height: 250px;
            background: #333;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .main-hero-image .screen {
            width: 100%;
            height: 100%;
            background: white;
            border-radius: 8px;
            overflow: hidden;
        }

        .course-preview {
            padding: 20px;
            height: 100%;
        }

        .course-preview .video-player {
            width: 100%;
            height: 120px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .course-preview .play-button {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #667eea;
            cursor: pointer;
        }

        .course-preview .course-info h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: #333;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-content .hero-stats {
                gap: 16px;
            }
            
            .hero-content .hero-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-video {
                /* On mobile, you might want to adjust video positioning */
                object-position: center center;
            }
        }

        

        /* <!-- About Section --> <!-- Features Section --> */
        /* Spinner Styles */
        #spinner {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            z-index: 9999;
        }

        .spinner-border {
            width: 3rem;
            height: 3rem;
            border-color: #fff;
            border-right-color: transparent;
        }

        /* Navigation Styles */
        .navbar {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98) !important;
            padding: 0.5rem 0;
        }

        .navbar-brand img {
            height: 70px;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link {
            color: #2d3748 !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.75rem 1rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            color: #667eea !important;
        }

        .navbar-nav .nav-link.active {
            color: #667eea !important;
        }

        .navbar-light .navbar-nav .nav-link {
            font-family: 'Open Sans', sans-serif;
            position: relative;
            margin-right: 15px;
            padding: 35px 0;
            font-size: 16px;
            font-weight: 500;
            outline: none;
            transition: all 0.3s ease;
        }

        .sticky-top.navbar-light .navbar-nav .nav-link {
            padding: 20px 0;
            color: var(--bs-dark) !important;
        }

        .navbar-light .navbar-brand img {
            max-height: 60px;
            transition: all 0.3s ease;
        }

        .sticky-top.navbar-light .navbar-brand img {
            max-height: 50px;
        }

        .navbar .dropdown-toggle::after {
            border: none;
            content: "\f107";
            font-family: "Font Awesome 6 Free";
            font-weight: 600;
            vertical-align: middle;
            margin-left: 8px;
        }

        .navbar {
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95) !important;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .dropdown-menu {
            border: none;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            border-radius: 12px;
            /* margin-top: 0.5rem; */
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .dropdown-item {
            font-weight: 500;
            color: #2d3748;
            transition: all 0.3s ease;
            padding: 5px 20px;
        }

        .dropdown-item:hover {
            background: rgba(102, 126, 234, 0.1);
            color: #667eea;
        }

        .btn-primary {
            background: linear-gradient(45deg, #667eea, #764ba2);
            border: none;
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
        }

        /* Enhanced Dropdown Styles */
        .enhanced-dropdown {
            position: relative;
        }

        .enhanced-dropdown .dropdown-menu {
            display: block;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .enhanced-dropdown.show .dropdown-menu,
        .enhanced-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            pointer-events: auto;
        }

        /* Add delay for better UX */
        .enhanced-dropdown .dropdown-menu {
            transition-delay: 0s;
        }

        .enhanced-dropdown:hover .dropdown-menu {
            transition-delay: 0.1s;
        }

        .enhanced-dropdown:not(:hover) .dropdown-menu {
            transition-delay: 0.3s;
        }

        /* Mobile specific styles */
        @media (max-width: 991px) {
            .enhanced-dropdown .dropdown-menu {
                position: static;
                display: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: transparent;
                margin-top: 0;
                transition: none;
            }

            .enhanced-dropdown.show .dropdown-menu {
                display: block;
            }

            .dropdown-item {
                padding: 0.5rem 1rem;
                margin-left: 1rem;
            }
        }

        
/* Hover dropdown only on desktop */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Optional: Smooth dropdown effect */
.dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.dropdown.show .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* Show dropdown on hover only in desktop view */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Style the dropdown */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}



        

        /* Hero Carousel Styles */
        .carousel {
            /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
            position: relative;
            overflow: hidden;
        }

        .carousel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad1" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:1" /></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad1)"><animate attributeName="cx" values="200;800;200" dur="20s" repeatCount="indefinite"/></circle><circle cx="800" cy="600" r="150" fill="url(%23grad1)"><animate attributeName="cy" values="600;200;600" dur="15s" repeatCount="indefinite"/></circle><circle cx="400" cy="800" r="80" fill="url(%23grad1)"><animate attributeName="r" values="80;120;80" dur="10s" repeatCount="indefinite"/></circle></svg>') center/cover;
            opacity: 0.1;
            z-index: 1;
        }

        .carousel-inner {
            position: relative;
            z-index: 2;
            /* min-height: 90vh; */
            display: flex;
            align-items: center;
        }

        .carousel-item {
            /* min-height: 90vh; */
            display: flex;
            align-items: center;
        }

        .carousel-slide-content {
            padding: 4rem 0;
        }

        .carousel-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            line-height: 1.2;
        }

        .carousel-desc {
            font-size: 1.5rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .text-content p {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .btn-outline-primary {
            border: 2px solid rgba(255,255,255,0.8);
            color: white;
            background: transparent;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-outline-primary:hover {
            background: white;
            color: #667eea;
            border-color: white;
            transform: translateY(-2px);
        }

        .image-content img {
            max-height: 500px;
            width: auto;
            filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Carousel Controls */
        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
            opacity: 0.8;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: rgba(255,255,255,0.2);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            backdrop-filter: blur(10px);
        }

        .carousel-indicators {
            bottom: 2rem;
        }

        .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 0.3rem;
            background: rgba(255,255,255,0.5);
            border: none;
        }

        .carousel-indicators .active {
            background: white;
        }

        .cta-button {
            background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255,107,107,0.4);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255,107,107,0.6);
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .carousel-title {
                font-size: 2.5rem;
            }
            
            .carousel-desc {
                font-size: 1.2rem;
            }
            
            .navbar-brand img {
                height: 40px;
            }
        }
/* About Section */
.about-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    position: relative;
    padding: 30px 0;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(102,126,234,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>') center/cover;
    opacity: 0.3;
}

.about-content {
    position: relative;
    z-index: 2;
}

/* About Image */
.about-image {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-10px);
}

.about-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* Section Text Styling */
.section-badge {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: left;
}

.section-text {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

/* Vision Card */
.vision-mission-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.vision-mission-card:hover {
    transform: translateY(-5px);
}

.vision-mission-card h3 {
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.vision-card {
    border-left: 6px solid #667eea;
    padding-left: 2.5rem;
    border-right: 6px solid #667eea;
}

.mission-card {
    border-right: 6px solid #ff6b6b;
    padding-right: 2.5rem;
}

/* ==================== MEDIA QUERIES ==================== */

/* Tablet View (≤ 991px) */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }

    .section-text {
        font-size: 1rem;
    }

    .about-image img {
        max-height: 300px;
    }
}

/* Mobile View (≤ 767px) */
@media (max-width: 767px) {
    .about-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .section-badge {
        display: block;
        text-align: center;
        margin: 0 auto 1rem;
    }

    .about-image img {
        max-height: 250px;
    }

    .vision-mission-card {
        padding: 1.5rem;
    }

    .vision-mission-card h3 {
        font-size: 1.3rem;
    }

    .section-text {
        font-size: 1rem;
        text-align: justify;
    }
}


 /* Features Section */
        .features-section {
            background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
            padding: 100px 0;
            position: relative;
        }

        .features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.05);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:1" /></linearGradient></defs><polygon points="0,0 1000,300 1000,1000 0,700" fill="url(%23grad2)"/></svg>') center/cover;
        }

        .features-section .features-content {
            position: relative;
            z-index: 2;
        }

        .features-section .features-title {
            color: white;
            text-align: center;
            margin-bottom: 3rem;
        }

        .features-section .features-title .section-badge {
            background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
            padding: 15px 20px;
            border-radius: 25px;
        }

        .features-section .features-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-top: 1rem;
        }

        .features-section .feature-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .features-section .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .features-section .feature-icon {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .features-section .feature-card h4 {
            color: #2d3748;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .features-section .feature-card p {
            color: #4a5568;
            line-height: 1.6;
            font-size: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .features-title h2 {
                font-size: 2rem;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-delay-1 { animation-delay: 0.1s; }
        .animate-delay-2 { animation-delay: 0.2s; }
        .animate-delay-3 { animation-delay: 0.3s; }
        .animate-delay-4 { animation-delay: 0.4s; }

        
        /* course section */

        .course_container {
            max-width: 1400px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .header {
            text-align: center;
            padding: 60px 40px 40px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .header p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        .tabs-container {
            background: white;
            padding: 0 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .tabs {
            display: flex;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .tabs::-webkit-scrollbar {
            display: none;
        }

        .tab {
            padding: 20px 25px;
            cursor: pointer;
            white-space: nowrap;
            font-weight: 500;
            color: #666;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }

        .tab:hover {
            color: #667eea;
            background: rgba(102, 126, 234, 0.05);
        }

        .tab.active {
            color: #667eea;
            border-bottom-color: #667eea;
            background: rgba(102, 126, 234, 0.05);
        }

        .content {
            padding: 40px;
        }

        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .course-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .course-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .course-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .course-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #ff4757;
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .course-info {
            padding: 25px;
        }

        .course-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }

        .course-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            color: #666;
            font-size: 0.9rem;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-bottom: 30px;
        }

        .pagination button {
            width: 40px;
            height: 40px;
            border: none;
            border-radius: 50%;
            background: #f0f0f0;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pagination button:hover {
            background: #667eea;
            color: white;
        }

        .pagination .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .pagination .dot.active {
            background: #27ae60;
            transform: scale(1.2);
        }

        .explore-btn {
            display: block;
            margin: 0 auto;
            padding: 15px 30px;
            background: #27ae60;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .explore-btn:hover {
            background: #2ecc71;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
        }

        .loading {
            display: none;
            text-align: center;
            padding: 40px;
            color: #666;
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid #667eea;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }
            
            .content {
                padding: 20px;
            }
            
            .tabs-container {
                padding: 0 20px;
            }
            
            .courses-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }


        /* guvi tab section */
        /* Header */
        .guvi_header {
            background: #0f4c3a;
            color: white;
            padding: 20px 0;
        }

        .nav {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .nav a {
            color: white;
            text-decoration: none;
            margin-right: 15px;
        }

        /* .nav a:hover {
            text-decoration: underline;
        } */

        .hero {
            text-align: center;
            padding: 40px 0;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 10px;
            color: #ffeb3b;
            font-weight: bold;
        }

        .hero .subtitle {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: white;
        }

        .hero p {
            font-size: 1rem;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            color: #e0e0e0;
        }

        .price-section {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
        }

        .price {
            font-size: 2rem;
            font-weight: bold;
        }

        .original-price {
            color: #ccc;
            text-decoration: line-through;
            margin-right: 10px;
        }

        .current-price {
            color: #ffeb3b;
        }

        .enroll-btn {
            background: #ffeb3b;
            color: #333;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .enroll-btn:hover {
            background: #fdd835;
            transform: translateY(-2px);
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
            text-align: center;
        }

        .stat-item {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 10px;
        }

        .stat-item div:first-child {
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Navigation Menu */
        .nav-menu {
            background: #f5f5f5;
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .nav-items {
            display: flex;
            justify-content: center;
            list-style: none;
        }

        .nav-items li {
            margin: 0;
        }

        .nav-items a {
            display: block;
            padding: 20px 30px;
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }

        .nav-items a:hover,
        .nav-items a.active {
            background: white;
            border-bottom-color: #0f4c3a;
            color: #0f4c3a;
        }

        /* Sections */
        .section {
            padding: 60px 0;
            border-bottom: 1px solid #eee;
        }

        .section h2 {
            color: #333;
            margin-bottom: 30px;
            font-size: 2rem;
            text-align: center;
        }

        /* Overview Section */
        .overview-content {
            background: white;
            padding: 40px;
        }

        .overview-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 40px;
            text-align: justify;
        }

        /* Did You Know Section */
        .did-you-know {
            background: linear-gradient(135deg, #0f4c3a 0%, #1a6b4f 100%);
            color: white;
            padding: 40px;
            border-radius: 15px;
            margin: 40px 0;
            text-align: center;
        }

        .did-you-know h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #ffeb3b;
        }

        .salary-highlight {
            font-size: 4rem;
            font-weight: bold;
            color: #ffeb3b;
            margin: 15px 0;
        }

        .character-illustration {
            float: right;
            margin-left: 20px;
            margin-bottom: 20px;
        }
      /* logo section */
        .logobody {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 90vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow-x: hidden;
        }
        .logobody_1 {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow-x: hidden;
        }
        .logotitle {
  display: inline-block;
  padding: 12px 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-weight: bold;
  border-radius: 40px;
  font-size: 14px;
  text-align: center;
  font-family: sans-serif;
  letter-spacing: 1px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


        .logotitle {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            text-align: center;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }
         .feedbacktitle {
            font-size: 3rem;
            font-weight: 700;
            color: #007bff;
            text-align: center;
            margin-bottom: 3rem;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

      
        .logo-container {
            width: 100%;
            overflow: hidden;
            /* margin: 1.5rem 0; */
            position: relative;
        }

        .logo-container::before,
        .logo-container::after {
            content: '';
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .logo-container::before {
            left: 0;
            /* background: linear-gradient(to right, rgba(102, 126, 234, 1), transparent); */
        }

        .logo-container::after {
            right: 0;
            /* background: linear-gradient(to left, rgba(118, 75, 162, 1), transparent); */
        }

        .logo-row {
            display: flex;
            align-items: center;
            gap: 3rem;
            padding: 1rem 0;
            white-space: nowrap;
        }

        .scroll-left {
            animation: scrollLeft 30s linear infinite;
        }

        .scroll-right {
            animation: scrollRight 35s linear infinite;
        }

        @keyframes scrollLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes scrollRight {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }

        .logo-item {
            flex-shrink: 0;
            background: white;
            border-radius: 15px;
            /* padding: 2.5rem 2rem; */
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 180px;
            height: 80px;
        }

        .logo-item:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .logo-item img {
            max-width: 140px;
            max-height: 50px;
            object-fit: contain;
            filter: brightness(1.1);
        }

        .logo-text {
            font-size: 1.4rem;
            font-weight: 600;
            color: #333;
        }

        /* Custom logo styles */
        .amazon { color: #FF9900; }
        .google { 
            background: linear-gradient(45deg, #4285f4, #ea4335, #fbbc05, #34a853);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .microsoft { color: #00BCF2; }
        .apple { color: #000; }
        .netflix { color: #E50914; }
        .spotify { color: #1DB954; }
        .tesla { color: #CC0000; }
        .uber { color: #000; }
        .airbnb { color: #FF5A5F; }
        .stripe { color: #635BFF; }

        @media (max-width: 768px) {
            .logotitle {
                font-size: 2rem;
                margin-bottom: 2rem;
            }
            
            .logo-item {
                min-width: 140px;
                height: 60px;
                padding: 1rem 1.5rem;
            }
            
            .logo-text {
                font-size: 1.1rem;
            }
        }



        /* Footer Start */

        .footer_container-fluid {
            width: 100%;
            padding: 0 15px;
            color: #00f2fe;
        }

        .footer_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .footer {
            background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><defs><pattern id="pattern" patternUnits="userSpaceOnUse" width="50" height="50"><circle cx="25" cy="25" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="%23000000"/><rect width="100%" height="100%" fill="url(%23pattern)"/></svg>');
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            padding: 80px 0;
            color: var(--bs-body);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            /* gap: 10px; */
            /* margin-bottom: 40px; */
        }

        .footer-item {
            display: flex;
            flex-direction: column;
            color: #ffff;

        }

        .footer-item h4 {
            color: var(--bs-primary);
            margin-bottom: 25px;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .footer-item p {
            line-height: 35px;
            margin-bottom: 20px;
            color: var(--bs-body);
            opacity: 0.9;
        }

        .footer .footer-item a {
            line-height: 35px;
            color: var(--bs-body);
            transition: 0.5s;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            opacity: 0.8;
        }

        .footer .footer-item a:hover {
            letter-spacing: 2px;
            color: var(--bs-primary);
            opacity: 1;
            transform: translateX(5px);
        }

        .footer .footer-item a i {
            margin-right: 2px;
            width: 16px;
        }

        /* Social Media Icons */
        .social-icons {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
        }

        .btn-square {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bs-primary);
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-square:hover {
            background: #0ea5c7;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(21, 185, 217, 0.4);
        }

        .footer .footer-item a i {
    font-size: 18px;
    color: white; /* or your preferred color */
}


        /* Copyright Start */
        .copyright {
            background: var(--bs-dark) !important;
            padding: 25px 0;
        }

        .copyright-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright-content span,
        .copyright-content div {
            color: white;
        }

        .copyright-content a {
            color: var(--bs-primary);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s;
        }

        .copyright-content a:hover {
            border-bottom-color: var(--bs-primary);
        }

.floating-buttons_form {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-buttons_what_phone {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.btn-lg-square {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-lg-square:hover {
    background: #0ea5c7;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(21, 185, 217, 0.4);
}

.btn-lg-square i {
    font-size: 1.5rem;
}

/* Optional: Normalize alignment */
.floating-buttons a {
    align-self: flex-start;
}

.btn-lg-square.phone,
.btn-lg-square.whatapp,
.btn-lg-square.form {
    align-self: flex-start; /* optional: ensures all align the same */
    float: none;
    margin: 0;
}

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .copyright-content {
                flex-direction: column;
                text-align: center;
            }

            .floating-buttons {
                right: 15px;
                bottom: 15px;
            }

            .btn-lg-square {
                width: 50px;
                height: 50px;
            }

            .btn-lg-square i {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .footer {
                padding: 60px 0;
            }

            .footer-item h4 {
                font-size: 1.1rem;
            }

            .social-icons {
                justify-content: center;
            }
        }
        /* Section title styles */
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeInUp 1s ease-in-out;
        }

        .section-title h4 {
            /* color: #007bff; */
            font-size: 1rem;
            font-weight: 500;
            text-transform: uppercase;
            margin-bottom: 1rem;
            letter-spacing: 3px;
        }

        .section-title h1 {
            font-size: 50px;
            font-weight: 300;
            color: #007bff;
            margin-bottom: 1rem;
        }


          /* Testimonial container */
        .testimonial {
            padding: 6rem 0;
            /* background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%); */
            position: relative;
        }

        /* Carousel container */
        .testimonial-carousel {
            position: relative;
            overflow: hidden;
        }

        .carousel-container {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            width: 500%; /* 5 items × 100% */
        }

        .testimonial-slide {
            width: 20%; /* 100% / 5 items */
            flex-shrink: 0;
            padding: 0 20px;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-item {
            background: var(--white-color);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid #f0f0f0;
        }

        .testimonial-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }

        /* Quote icons */
        .quote-left {
            position: absolute;
            top: 20px;
            left: 25px;
            font-size: 2rem;
            color: #007bff;
            opacity: 0.7;
        }

        .quote-right {
            position: absolute;
            bottom: 20px;
            right: 25px;
            font-size: 2rem;
            color: #007bff;
            opacity: 0.7;
        }

        /* Profile image */
        .profile-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 600;
            color: #007bff;
            border: 3px solid white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .testimonial-item:nth-child(1) .profile-image {
            background: linear-gradient(135deg, var(--cyan-color), #FF7F50);
        }

        .testimonial-item:nth-child(2) .profile-image {
            background: linear-gradient(135deg, var(--orange-color), #FF7F50);
        }

        .testimonial-item:nth-child(3) .profile-image {
            background: linear-gradient(135deg, var(--pink-color), #FF7F50);
        }

        /* Testimonial text */
        .testimonial-text {
            margin-bottom: 25px;
        }

        .testimonial-text p {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.6;
            font-style: italic;
        }

.testimonial .testimonial-item .testimonial-img {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.testimonial .testimonial-item .testimonial-img img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border-style: double;
    background: var(--bs-white);
    object-fit: cover;
    filter: grayscale(100%) opacity(0.3); /* Makes image grayscale with reduced opacity */
}

/* Optional: Add dark overlay with pseudo-element for more control */
.testimonial .testimonial-item .testimonial-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    background: rgba(0, 0, 0, 0.25); /* Grey overlay */
    pointer-events: none;
}


        /* Author info */
        .author-info h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 5px;
        }

        .author-info p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        /* Stars rating */
        .stars {
            display: flex;
            justify-content: center;
            gap: 3px;
        }

        .stars i {
            color: #007bff;
            font-size: 1.1rem;
        }

        /* Navigation buttons */
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            pointer-events: none;
            z-index: 10;
        }

        .nav-btn {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: var(--white-color);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            pointer-events: auto;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(74, 158, 255, 0.3);
        }

        .nav-btn:hover {
            background: #3A8EEF;
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(74, 158, 255, 0.4);
        }

        .nav-btn:active {
            transform: scale(0.95);
        }

        .nav-btn.prev {
            margin-left: -25px;
        }

        .nav-btn.next {
            margin-right: -25px;
        }

        /* Dots indicator */
        .carousel-dots {
            display: flex;
            justify-content: center;
            margin-top: 50px;
            gap: 12px;
            color: #007bff;
        }

        .dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #007bff;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .dot.active {
            background: #7c9bbd;
            transform: scale(1.2);
        }

        .dot:hover {
            background: var(--primary-color);
            transform: scale(1.1);
        }

        /* Slide 2 colors */
        .slide-2 .testimonial-item:nth-child(1) .profile-image {
            background: linear-gradient(135deg, var(--green-color), #32CD32);
        }

        .slide-2 .testimonial-item:nth-child(2) .profile-image {
            background: linear-gradient(135deg, var(--purple-color), #8A2BE2);
        }

        .slide-2 .testimonial-item:nth-child(3) .profile-image {
            background: linear-gradient(135deg, #FF6347, #FF4500);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .testimonial-item {
            animation: fadeInUp 0.8s ease-in-out;
        }

        .testimonial-item:nth-child(2) {
            animation-delay: 0.1s;
        }

        .testimonial-item:nth-child(3) {
            animation-delay: 0.2s;
        }

        /* Responsive design */
        @media (max-width: 1024px) {
            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .section-title h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .testimonial-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .section-title h1 {
                font-size: 2rem;
            }

            .testimonial-item {
                padding: 30px 25px;
            }

            .nav-btn {
                width: 45px;
                height: 45px;
                font-size: 1rem;
            }

            .nav-btn.prev {
                margin-left: -15px;
            }

            .nav-btn.next {
                margin-right: -15px;
            }
        }

        @media (max-width: 480px) {
            .section-title h1 {
                font-size: 1.8rem;
            }

            .testimonial-item {
                padding: 25px 20px;
            }

            .profile-image {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }

            .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 0.9rem;
            }
        }



        
        /* fqa section starts */

        :root {
            --primary-color: #2563eb;
            --primary-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            --secondary-color: #f8fafc;
            --accent-color: #0ea5e9;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --border-color: #e2e8f0;
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        }

        .faq-section_body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }

        .faq-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
        }

        .faq-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(37,99,235,0.03);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(37,99,235,0);stop-opacity:0" /></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23grad)" /><circle cx="800" cy="400" r="200" fill="url(%23grad)" /><circle cx="400" cy="800" r="180" fill="url(%23grad)" /></svg>') no-repeat center center;
            background-size: cover;
            opacity: 0.3;
            pointer-events: none;
        }

        .faq-section .section-header {
            position: relative;
            z-index: 2;
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--primary-gradient);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 0.025em;
            text-transform: uppercase;
            margin-bottom: 1rem;
            box-shadow: var(--shadow-md);
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            /* -webkit-text-fill-color: transparent; */
            background-clip: text;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .faq-container {
            position: relative;
            z-index: 2;
        }

        .accordion-custom {
            background: white;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            border: 1px solid var(--border-color);
        }

        .accordion-item {
            border: none;
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .accordion-item:last-child {
            border-bottom: none;
        }

        .accordion-item:hover {
            background: rgba(37, 99, 235, 0.02);
        }

        .faq-section .accordion-button {
            background: transparent;
            border: none;
            padding: 1.5rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            text-align: left;
            transition: all 0.3s ease;
            box-shadow: none;
            position: relative;
        }

        .faq-section .accordion-button:not(.collapsed) {
            background: var(--primary-gradient);
            color: white;
            box-shadow: none;
        }

        .faq-section .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
            border-color: var(--primary-color);
        }

        .faq-section .accordion-button::after {
            background-image: none;
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.875rem;
            transition: transform 0.3s ease;
        }

        .faq-section .accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
            color: white;
        }

        .accordion-body {
            padding: 1.5rem 2rem 2rem;
            background: white;
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-light);
        }

        .faq-icon {
            color: var(--primary-color);
            margin-right: 1rem;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .faq-section .accordion-button:not(.collapsed) .faq-icon {
            color: white;
        }

        .faq-image-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            background: var(--primary-gradient);
            padding: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px;
        }

        .faq-image-content {
            text-align: center;
            color: white;
        }

        .faq-image-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .faq-image-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .faq-image-subtitle {
            font-size: 1rem;
            opacity: 0.8;
        }

        .faq-section .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .faq-section .stat-item {
            text-align: center;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            display: block;
        }

        .stat-label {
            font-size: 0.875rem;
            opacity: 0.8;
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-elements::before,
        .floating-elements::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgba(37, 99, 235, 0.1);
            animation: float 6s ease-in-out infinite;
        }

        .floating-elements::before {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-elements::after {
            bottom: 20%;
            right: 10%;
            animation-delay: 3s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .accordion-button {
                padding: 1rem 1.5rem;
                font-size: 1rem;
            }
            
            .accordion-body {
                padding: 1rem 1.5rem 1.5rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }


        /* fqa section ends */

.vision-mission-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.boxshadow:hover{
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);

}

.whatsapp {
            background: #25d366;
            color: white;
        }

        whatsapp:hover {
            background: #128c7e;
            color: white;
        }

.phone {
            color: black;
        }

        


 @media (max-width: 992px) {
     .hero-image {
        display: none;
    }

            
            }