    :root {
        --primary-color: #0f172a;
        --secondary-color: #3b82f6;
        --accent-color: #06b6d4;
        --success-color: #10b981;
        --warning-color: #f59e0b;
        --danger-color: #ef4444;
        --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
        --text-dark: #1e293b;
        --text-light: #64748b;
        --text-muted: #94a3b8;
        --bg-light: #f8fafc;
        --bg-white: #ffffff;
        --border-color: #e2e8f0;
        --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        --border-radius-sm: 8px;
        --border-radius-md: 12px;
        --border-radius-lg: 16px;
        --border-radius-xl: 24px;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Poppins', sans-serif;
        line-height: 1.7;
        color: var(--text-dark);
        font-weight: 400;
        letter-spacing: 0.01em;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: -0.025em;
    }

    h1 {
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-weight: 800;
    }

    h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
    }

    h3 {
        font-size: clamp(1.5rem, 3vw, 2rem);
        font-weight: 600;
    }

    h4 {
        font-size: clamp(1.25rem, 2.5vw, 1.5rem);
        font-weight: 600;
    }

    h5 {
        font-size: clamp(1.1rem, 2vw, 1.25rem);
        font-weight: 600;
    }

    .lead {
        font-size: clamp(1.1rem, 2.5vw, 1.3rem);
        font-weight: 400;
        line-height: 1.6;
        color: white;
    }

    /* Smooth Scrolling */
    html {
        scroll-behavior: smooth;
    }

    /* Navigation */
    .navbar {
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        padding: 1rem 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar.scrolled {
        background: rgba(15, 23, 42, 0.98);
        padding: 0.7rem 0;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }

    .navbar-brand {
        font-size: 1.8rem;
        font-weight: 800;
        color: #fff !important;
        display: flex;
        align-items: center;
        font-family: 'Space Grotesk', sans-serif;
    }

    .navbar-brand i {
        margin-right: 12px;
        color: var(--accent-color);
        font-size: 2rem;
    }

    .nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
        font-weight: 500;
        margin: 0 8px;
        padding: 8px 16px !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        border-radius: var(--border-radius-md);
    }

    .nav-link:hover {
        color: var(--accent-color) !important;
        background: rgba(6, 182, 212, 0.1);
    }

    .nav-link.btn {
        background: var(--gradient-1);
        color: white !important;
        border-radius: var(--border-radius-xl);
        padding: 10px 20px !important;
        margin-left: 12px;
    }

    .nav-link.btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    /* Hero Banner */
    .hero-banner {
        background: var(--gradient-hero);
        min-height: 100vh;
        display: flex;
        align-items: center;
        color: #fff;
        position: relative;
        overflow: hidden;
        padding: 120px 0 80px;
    }

    .hero-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }

    .hero-banner h1 {
        font-weight: 800;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #ffffff 0%, #06b6d4 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-banner .lead {
        font-size: clamp(1.2rem, 3vw, 1.4rem);
        margin-bottom: 1.5rem;
        opacity: 0.95;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
    }

    .hero-banner p {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 2.5rem;
        line-height: 1.7;
    }

    .cta-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        margin-top: 2rem;
    }

    .btn-primary-custom {
        background: var(--gradient-1);
        border: none;
        padding: 16px 32px;
        font-weight: 600;
        border-radius: var(--border-radius-xl);
        color: white;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        font-size: 1.05rem;
        display: inline-flex;
        align-items: center;
        cursor: pointer;
    }

    .btn-primary-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
        color: white;
    }

    .btn-outline-custom {
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: white;
        padding: 14px 30px;
        font-weight: 600;
        border-radius: var(--border-radius-xl);
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        font-size: 1.05rem;
        display: inline-flex;
        align-items: center;
        cursor: pointer;
    }

    .btn-outline-custom:hover {
        background: rgba(255, 255, 255, 0.15);
        color: white;
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

    /* Hero Contact Form */
    .hero-contact-form {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: var(--border-radius-xl);
        padding: 2.5rem;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
    }

    .hero-contact-form::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-1);
    }

    .hero-contact-form h3 {
        color: var(--text-dark);
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
        text-align: center;
    }

    /* Floating Animation */
    .floating {
        animation: floating 6s ease-in-out infinite;
    }

    @keyframes floating {

        0%,
        100% {
            transform: translateY(0px) rotate(0deg);
        }

        33% {
            transform: translateY(-15px) rotate(1deg);
        }

        66% {
            transform: translateY(-5px) rotate(-1deg);
        }
    }

    /* Form Styles */
    .form-control {
        border: 2px solid var(--border-color);
        border-radius: var(--border-radius-md);
        padding: 14px 16px;
        margin-bottom: 1rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 0.95rem;
        font-weight: 500;
        background: var(--bg-white);
    }

    .form-control:focus {
        border-color: var(--secondary-color);
        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
        background: white;
        outline: none;
    }

    .form-control::placeholder {
        color: var(--text-muted);
        font-weight: 400;
    }

    /* Modal Styles */
    .modal-content {
        border-radius: var(--border-radius-xl);
        border: none;
        overflow: hidden;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    }

    .modal-header {
        background: var(--gradient-1);
        color: white;
        border: none;
        padding: 1.5rem 2rem;
    }

    .modal-title {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .modal-body {
        padding: 2rem;
    }

    .btn-close {
        filter: brightness(0) invert(1);
        opacity: 0.8;

    }

    .btn-close:hover {
        opacity: 1;
    }


    .btn-submit-pop {
        background: var(--gradient-1);
        color: #fff !important;
    }

    /* Section Styles */


    .section-title {
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 800;
        text-align: center;
        margin-bottom: 1rem;
        color: var(--text-dark);
        position: relative;
    }

    .section-subtitle {
        text-align: center;
        font-size: 1.15rem;
        color: var(--text-light);
        margin-bottom: 4rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        font-weight: 400;
        line-height: 1.6;
    }

    /* Course Cards */
    .course-card,
    .service-card {
        background: var(--bg-white);
        border-radius: var(--border-radius-xl);
        padding: 2.5rem;
        box-shadow: var(--shadow-md);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid var(--border-color);
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .course-card::before,
    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-1);
        transform: scaleX(0);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .course-card:hover::before,
    .service-card:hover::before {
        transform: scaleX(1);
    }

    .course-card:hover,
    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
        border-color: rgba(59, 130, 246, 0.2);
    }

    .card-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
        color: white;
        position: relative;
        overflow: hidden;
    }

    .course-card:nth-child(6n+1) .card-icon {
        background: var(--gradient-1);
    }

    .course-card:nth-child(6n+2) .card-icon {
        background: var(--gradient-2);
    }

    .course-card:nth-child(6n+3) .card-icon {
        background: var(--gradient-3);
    }

    .course-card:nth-child(6n+4) .card-icon {
        background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    }

    .course-card:nth-child(6n+5) .card-icon {
        background: linear-gradient(135deg, #0abde3 0%, #006ba6 100%);
    }

    .course-card:nth-child(6n+6) .card-icon {
        background: linear-gradient(135deg, #feca57 0%, #ff9ff3 100%);
    }

    .service-card:nth-child(6n+1) .card-icon {
        background: var(--gradient-3);
    }

    .service-card:nth-child(6n+2) .card-icon {
        background: var(--gradient-1);
    }

    .service-card:nth-child(6n+3) .card-icon {
        background: var(--gradient-2);
    }

    .service-card:nth-child(6n+4) .card-icon {
        background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    }

    .service-card:nth-child(6n+5) .card-icon {
        background: linear-gradient(135deg, #0abde3 0%, #006ba6 100%);
    }

    .service-card:nth-child(6n+6) .card-icon {
        background: linear-gradient(135deg, #feca57 0%, #ff9ff3 100%);
    }

    .card-title {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-align: center;
        color: var(--text-dark);
    }

    .card-text {
        color: var(--text-light);
        text-align: center;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        font-size: 0.95rem;
    }

    /* Stats Section */
    .stats-section {
        background: var(--gradient-1);
        color: white;
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
    }

    .stats-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

    .stat-item {
        text-align: center;
        margin-bottom: 2rem;
        position: relative;
    }

    .stat-number {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 800;
        display: block;
        font-family: 'Space Grotesk', sans-serif;
    }

    .stat-label {
        font-size: 1.15rem;
        opacity: 0.95;
        font-weight: 500;
        margin-top: 0.5rem;
    }

    /* About Section */
    .about-section {
        padding: 6rem 0;
        background: var(--bg-light);
    }

    .about-image {
        border-radius: var(--border-radius-xl);
        box-shadow: var(--shadow-xl);
    }

    /* ===============================
   Testimonials Section
   =============================== */
    /* Section */
    #testimonials {
        background: #f8f9fa;
        padding: 60px 15px;
        color: var(--bs-body-color, #212529);
    }

    /* Titles */
    .section-title {
        font-weight: 700;
        font-size: 2.5rem;
        margin-bottom: 0.3rem;
        color: var(--bs-body-color, #212529);
        text-align: center;
    }

    .section-subtitle {
        font-weight: 400;
        font-size: 1.1rem;
        color: var(--bs-secondary-color, #6c757d);
        text-align: center;
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Carousel wrapper */
    .testimonial-carousel-wrapper {
        overflow: hidden;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }

    /* Track */
    .testimonial-carousel {
        display: flex;
        will-change: transform;
        transition: transform 0.5s ease;
    }

    /* Card */
    .testimonial-card {
        background: #ffffff;
        box-shadow: 0 0.25rem 0.75rem rgb(0 0 0 / 0.1);
        border-radius: 0.75rem;
        padding: 20px 40px 15px;
        margin: 15px 5px;
        flex: 0 0 33.333%;
        max-width: 33.333%;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: inherit;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 0.15);
    }

    /* Avatar */
    .testimonial-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 3px solid var(--bs-primary, #0d6efd);
        object-fit: cover;
        margin-bottom: 10px;
        box-shadow: 0 0.3rem 0.8rem rgb(13 110 253 / 0.3);
    }

    /* Content */
    .testimonial-card p {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    .testimonial-card h6 {
        font-weight: 700;
        margin-bottom: 5px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }

    .testimonial-card small {
        font-size: 0.9rem;
        color: var(--bs-secondary-color, #6c757d);
    }

    /* Buttons */
    .text-center .btn {
        font-weight: 600;
        border-radius: 30px;
        padding: 10px 25px;
        font-size: 1rem;
        min-width: 80px;
        transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
        background: var(--gradient-1, linear-gradient(135deg, #0d6efd, #6610f2));
        cursor: pointer;
        color: #fff;
        border: none;
    }

    .text-center .btn-primary {
        box-shadow: 0 0.3rem 0.75rem rgb(13 110 253 / 0.4);
    }

    .text-center .btn-primary:hover,
    .text-center .btn-primary:focus {
        background-color: #0b5ed7;
        box-shadow: 0 0.5rem 1rem rgb(11 94 215 / 0.6);
        transform: translateY(-2px);
    }

    /* Responsive: 2-up on tablets, 1-up on phones */
    @media (max-width: 991.98px) {
        .testimonial-card {
            flex: 0 0 50%;
            max-width: 50%;
        }
    }

    @media (max-width: 575.98px) {
        .testimonial-card {
            flex: 0 0 100% !important;
            max-width: 100% !important;
            margin: 0 !important;
            padding: 20px 15px;
        }

        .testimonial-carousel {
            margin: 0 !important;
            padding: 0 !important;
        }
    }




    /* CTA Sections */
    .cta-section {
        background: var(--gradient-2);
        color: white;
        padding: 5rem 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

    .cta-section h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        margin-bottom: 1rem;
    }

    .cta-section .btn:hover {
        color: white;
        transform: translateY(-2px);

    }

    /* Contact Form */
    .contact-form {
        background: var(--bg-white);
        border-radius: var(--border-radius-xl);
        padding: 3rem;
        box-shadow: var(--shadow-xl);
        border: 1px solid var(--border-color);
    }

    /* Footer */
    .footer {
        background: var(--primary-color);
        color: white;
        padding: 4rem 0 2rem;
    }

    .footer-links {
        list-style: none;
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 0.8rem;
    }

    .footer-links a {
        color: var(--text-muted);
        text-decoration: none;
        transition: all 0.3s ease;
        font-weight: 400;
    }

    .footer-links a:hover {
        color: var(--accent-color);
    }

    .footer p {
        margin-left: 18px;
    }

    .social-icons {
        display: flex;
        gap: 1rem;
        justify-content: start;
        margin-left: 18px;
    }

    .social-icons a {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
    }

    .social-icons a:hover {
        background: var(--accent-color);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

    /* Accordion Styles */
    .accordion-item {
        border: none;
        margin-bottom: 1rem;
        border-radius: var(--border-radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: all 0.3s ease;
    }

    .accordion-item:hover {
        box-shadow: var(--shadow-lg);
    }

    .accordion-button {
        background: var(--bg-white);
        border: none;
        font-weight: 600;
        font-size: 1.1rem;
        color: var(--text-dark);
        padding: 1.5rem 2rem;
    }

    .accordion-button:not(.collapsed) {
        background: var(--gradient-1);
        color: white;
    }

    .accordion-body {
        padding: 1.5rem 2rem;
        color: var(--text-light);
        line-height: 1.7;
    }

    /* Alert Styles */
    .alert {
        border: none;
        border-radius: var(--border-radius-md);
        padding: 1rem 1.5rem;
        font-weight: 500;
    }

    .alert-success {
        background: rgba(16, 185, 129, 0.1);
        color: var(--success-color);
        border-left: 4px solid var(--success-color);
    }

    .alert-danger {
        background: rgba(239, 68, 68, 0.1);
        color: var(--danger-color);
        border-left: 4px solid var(--danger-color);
    }

    /* Loading Spinner */
    .spinner {
        width: 20px;
        height: 20px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        border-top-color: white;
        animation: spin 1s ease-in-out infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    /* Back to Top Button */
    #backToTop {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 1000;
        border-radius: 50%;
        width: 55px;
        height: 55px;
        display: none;
        background: var(--gradient-1);
        border: none;
        box-shadow: var(--shadow-xl);
        color: white;
        font-size: 1.2rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    #backToTop:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    }

    /* Responsive Design   */
    @media (max-width: 992px) {
        .hero-banner {
            text-align: center;
            padding: 100px 0 60px;
        }

        .hero-contact-form {
            margin-top: 3rem;
        }

        .cta-buttons {
            justify-content: center;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .btn-primary-custom,
        .btn-outline-custom {
            width: 100%;
            max-width: 280px;
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        .navbar-nav {
            text-align: center;
            padding-top: 1rem;
        }

        .hero-banner {
            padding: 80px 0 40px;
        }

        .hero-contact-form {
            padding: 2rem;
        }

        .stats-section .row>div {
            margin-bottom: 2rem;
        }

        .contact-form {
            padding: 2rem;
        }

        .modal-body {
            padding: 1.5rem;
        }

        .course-card,
        .service-card {
            margin-bottom: 2rem;
            padding: 2rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .social-icons {
            justify-content: center;
            margin-top: 1.5rem;
        }
    }

    @media (max-width: 576px) {
        .hero-banner h1 {
            font-size: 2.2rem;
        }

        .hero-contact-form {
            padding: 1.5rem;
        }

        .course-card,
        .service-card {
            padding: 1.5rem;
        }

        .contact-form {
            padding: 1.5rem;
        }

        .cta-buttons {
            flex-direction: column;
            gap: 0.8rem;
        }

        .btn-primary-custom,
        .btn-outline-custom {
            width: 100%;
            text-align: center;
            justify-content: center;
        }
    }

    /* Custom Utilities */
    .text-gradient {
        background: var(--gradient-1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .bg-glass {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Why Choose me  */
    #why-choose-us {
        background: var(--gradient-1);
    }

    .feature-card {
        border-radius: 12px;
        background: #fff;
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .icon-box {
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .feature-card:hover .icon-box {
        transform: rotate(10deg) scale(1.1);
    }

    #why-choose-us h4 {
        color: #000;
    }

    .Free-Demo:hover {
        transform: translate(0, -3px);
    }

/* Curriculum Tabs */

/* Tablist container */
[role="tablist"] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center; /* Center on smaller screens */
}

/* Tabs */
[role="tab"] {
    padding: 10px 15px;
    border-radius: 12px;
    background-color: #fff;
    border: 1px solid var(--primary-color);
    color: #000;
    cursor: pointer;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
    transition: all 0.3s;
    flex: 1 1 auto; /* Grow/shrink */
}

/* Hover effect */
[role="tab"]:hover {
    background: var(--gradient-2);
    transform: translateY(-2px);
}

/* Active tab */
[role="tab"][aria-selected="true"] {
    background: var(--gradient-2);
    color: #fff;
    border-color: var(--primary-color);
}

/* Tab panels */
[role="tabpanel"] {
    border-radius: 16px;
    border: 1px solid var(--primary-color);
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
}

/* Hide panels when hidden */
[hidden] {
    display: none;
}

/* Meta tags inside panels */
.meta span {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 4px;
    font-size: 14px;
}

/* Pills and tags */
.pill,
.tag {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    margin-right: 5px;
    font-size: 13px;
}

/* Responsive adjustments */
@media (min-width: 576px) {
    [role="tab"] {
        min-width: 100px;
        padding: 12px 18px;
    }
}

@media (min-width: 768px) {
    [role="tablist"] {
        justify-content: flex-start; /* Align left on larger screens */
    }
    [role="tab"] {
        min-width: 120px;
        padding: 15px 20px;
    }
}

@media (min-width: 1200px) {
    [role="tab"] {
        min-width: 140px;
        padding: 15px 25px;
    }
}



    /* Learnign Outcome */

    .skill-icon {
        font-size: 3rem;
        transition: font-size 0.3s ease;
    }

    .skill-icon {
        font-size: 3rem;
        transition: font-size 0.3s ease;
    }

    @media (max-width: 992px) {
        .skill-icon {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 768px) {
        .skill-icon {
            font-size: 2rem;
        }
    }

    @media (max-width: 576px) {
        .skill-icon {
            font-size: 1.8rem;
        }
    }


    /* Skill Card Hover Effect */
    .skill-card {
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        cursor: pointer;
    }

    .skill-card:hover {
        transform: scale(1.05) rotate(-1deg);

        box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);

    }

    /* <!-- Tools & Software – Interactive Grid Style --> */


    .tool-card {
        background: white;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        cursor: pointer;
    }

    .tool-card:hover {
        transform: translateY(-10px) rotate(-1deg);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }

    .tool-icon {
        font-size: 36px;
        display: inline-block;
        padding: 12px 15px;
        border-radius: 50%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        transition: transform 0.3s ease;
    }

    .tool-card:hover .tool-icon {
        transform: scale(1) rotate(10deg);
    }

    .tool-card h5 {
        font-weight: 700;
        margin-bottom: 8px;
    }

    .tool-card p {
        font-size: 14px;
        color: #6c757d;
    }

    /* <!-- Prerequisites & Who This Course Is For – Modern Style --> */


    .dg-card-modern {
        background: var(--gradient-2);
        color: #fff;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

    .dg-card-modern:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
    }

    .dg-card-modern h4 {
        color: #fff;
        border-bottom: 2px solid rgba(255, 255, 255, 0.4);
        padding-bottom: 6px;
        margin-bottom: 15px;
        position: relative;
    }

    .dg-card-modern ul li {
        font-size: 15px;
        line-height: 1.6;
        display: flex;
        align-items: flex-start;
        margin-bottom: 8px;
    }

    .dg-card-modern ul li .icon {
        display: inline-block;
        width: 30px;
        font-size: 18px;
        margin-right: 10px;
        flex-shrink: 0;
    }

    /* Subtle overlay animation on hover */
    .dg-card-modern .card-overlay {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 70%);
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }

    .dg-card-modern:hover .card-overlay {
        opacity: 1;
    }

    .dg-card-modern .icon {
        font-size: 1.6rem !important;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .dg-card-modern ul li .icon {
            font-size: 16px;
            width: 25px;
        }
    }