        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h4 {
            color: #ffd700;
            font-size: 18px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }

        .section-title h4::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, #ffd700, #ff6b6b);
        }

        .section-title h1 {
            color: white;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }

        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .highlight-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .highlight-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.6s;
        }

        .highlight-card:hover::before {
            left: 100%;
        }

        .highlight-card:hover {
            transform: translateY(-15px) scale(1.02);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .icon-container {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, #ff6b6b, #ffd700);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.3s ease;
        }

        .highlight-card:hover .icon-container {
            transform: rotateY(360deg);
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
        }

        .icon-container i {
            font-size: 2.5rem;
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .highlight-card h3 {
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 8px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .highlight-card h5 {
            color: #ffd700;
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .highlight-card p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            line-height: 1.6;
            font-weight: 400;
        }

        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .shape:nth-child(1) {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            top: 20%;
            right: 10%;
            animation-delay: 2s;
        }

        .shape:nth-child(3) {
            bottom: 10%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .stats-bar {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            padding: 20px 40px;
            margin-top: 50px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .stat-item {
            text-align: center;
            color: white;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffd700;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (max-width: 768px) {
            .section-title h1 {
                font-size: 2.5rem;
            }
            
            .highlights-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .highlight-card {
                padding: 30px 20px;
            }
            
            .stats-bar {
                flex-direction: column;
                gap: 15px;
            }
        }

        /* Pulse animation for attention */
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
            70% { box-shadow: 0 0 0 20px rgba(255, 215, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
        }

        .highlight-card:nth-child(6) .icon-container {
            animation: pulse 2s infinite;
        }
  
      

        .outcome-wrapper {
            background: linear-gradient(135deg,  #1e3c72 0%, #2a5298 100%);
            position: relative;
            min-height: 100vh;
            padding: 120px 0;
        }

        .outcome-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 206, 84, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 121, 198, 0.3) 0%, transparent 50%);
            animation: gradientShift 15s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        .outcome-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.1), transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.1), transparent),
                radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.1), transparent),
                radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.1), transparent);
            background-repeat: repeat;
            background-size: 200px 200px;
            animation: sparkle 20s linear infinite;
        }

        @keyframes sparkle {
            0% { transform: translateY(0px); }
            100% { transform: translateY(-200px); }
        }

        .header-section {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 10;
        }

        .subtitle-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            padding: 12px 30px;
            border-radius: 50px;
            margin-bottom: 30px;
            animation: glow 3s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { box-shadow: 0 0 20px rgba(255, 255, 255, 0.2); }
            to { box-shadow: 0 0 30px rgba(255, 255, 255, 0.4); }
        }

        .subtitle-badge h4 {
            color: #fff;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin: 0;
        }

        .main-heading {
            color: #fff;
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 0;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .outcomes-grid {
            position: relative;
            z-index: 10;
        }

        .outcome-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 45px 35px;
            text-align: center;
            height: 100%;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .outcome-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.6s ease;
        }

        .outcome-card:hover::before {
            left: 100%;
        }

        .outcome-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .icon-container {
            width: 90px;
            height: 90px;
            margin: 0 auto 30px;
            position: relative;
            z-index: 2;
        }

        .icon-circle {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .outcome-card:hover .icon-circle {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
            transform: scale(1.1) rotate(360deg);
            box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
        }

        .icon-circle i {
            font-size: 2.2rem;
            color: #fff;
            transition: all 0.3s ease;
        }

        .outcome-card:hover .icon-circle i {
            transform: scale(1.1);
        }

        .card-content h5 {
            color: #2c3e50;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.3;
            position: relative;
            z-index: 2;
        }

        .card-content p {
            color: #5a6c7d;
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
            position: relative;
            z-index: 2;
            font-weight: 400;
        }

        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 15s infinite ease-in-out;
        }

        .floating-element:nth-child(1) {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
            animation-duration: 20s;
        }

        .floating-element:nth-child(2) {
            top: 20%;
            right: 20%;
            animation-delay: -5s;
            animation-duration: 25s;
        }

        .floating-element:nth-child(3) {
            bottom: 30%;
            left: 15%;
            animation-delay: -10s;
            animation-duration: 18s;
        }

        .floating-element:nth-child(4) {
            bottom: 20%;
            right: 10%;
            animation-delay: -15s;
            animation-duration: 22s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.7;
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
                opacity: 1;
            }
        }

        .success-metrics {
            position: absolute;
            top: 50%;
            left: -50px;
            transform: translateY(-50%);
            writing-mode: vertical-rl;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 3px;
            z-index: 5;
        }

        @media (max-width: 1200px) {
            .main-heading {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .outcome-wrapper {
                padding: 80px 0;
            }
            
            .main-heading {
                font-size: 2.5rem;
            }
            
            .outcome-card {
                padding: 35px 25px;
                margin-bottom: 30px;
            }
            
            .header-section {
                margin-bottom: 60px;
            }
            
            .success-metrics {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .main-heading {
                font-size: 2rem;
            }
            
            .subtitle-badge {
                padding: 10px 20px;
            }
            
            .subtitle-badge h4 {
                font-size: 0.85rem;
            }
        }

        .pulse-animation {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

  
      :root {
        --primary-color: #667eea; /* main color */
        --primary-dark: #5a67d8; /* slightly darker shade */
        --primary-light: #8094f1; /* slightly lighter shade */

        --text-primary: #1f2937;
        --text-secondary: #6b7280;
        --text-light: #9ca3af;

        /* Gradients in bluish-purple variations */
        --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        --gradient-primary-light: linear-gradient(
          135deg,
          #8094f1 0%,
          #a1b1f5 100%
        );
        --gradient-subtle: linear-gradient(
          135deg,
          #eef2ff 0%,
          #e0e7ff 100%
        ); /* very light purple background */

        /* Shadows */
        --shadow-light: 0 4px 6px -1px rgba(102, 126, 234, 0.1);
        --shadow-medium: 0 10px 15px -3px rgba(102, 126, 234, 0.15);
        --shadow-heavy: 0 25px 50px -12px rgba(102, 126, 234, 0.3);
        --shadow-primary: 0 10px 30px rgba(102, 126, 234, 0.35); /* replacing green shadow */
                    --accent-color: #06b6d4;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --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-4: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            --gradient-5: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%, #fecfef 100%);
      }

        /* Accordion Enhancements */
        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        .accordion-button {
            background: rgba(189, 27, 27, 0.9);
            border: none;
            border-radius: 15px;
            font-weight: 600;
            color: var(--secondary-color);
            padding: 1.5rem;
            transition: all 0.3s ease;
        }

        .accordion-button:not(.collapsed) {
            background: var(--gradient-2);
            color: white;
            box-shadow: var(--shadow-medium);
        }

        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
        }

        .accordion-body {
            background: rgba(255, 255, 255, 0.98);
            border-top: 1px solid rgba(0, 0, 0, 0.125);
        }
     

      body {
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: var(--text-primary);
      }

      

         .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 35px 0;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 40px;
        }

        /* .hero-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            animation: float 20s ease-in-out infinite;
        } */

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

/* Default Styles (Laptop & Desktop) */
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
}

.hero-breadcrumb {
    /* margin-bottom: 30px; */
    font-size: 16px;
    opacity: 0.8;
}

.hero-breadcrumb a {
    color: white;
    text-decoration: none;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
    color: #fff;
}

.hero-breadcrumb span {
    margin: 0 10px;
}

.hero-main-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.hero-info h1 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 3px;
    animation: pulse-glow 3s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% {
        filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.8));
    }
}

.hero-info h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 90%;
}

.cta-button {
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    background: linear-gradient(45deg, #00e5ff, #00bcd4);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 229, 255, 0.6);
    color: white;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: float-card 6s ease-in-out infinite alternate;
}

@keyframes float-card {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    100% {
        transform: translateY(-10px) rotate(1deg);
    }
}

.hero-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 229, 255, 0.1), transparent);
    animation: rotate 8s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-card-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-card h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #00e5ff;
    font-weight: 700;
}

.certification-badge {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px auto;
    font-size: 2.5rem;
    animation: pulse-badge 2s infinite;
    background: linear-gradient(45deg, #00e5ff, #00bcd4);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 229, 255, 0.8);
    }
}

.enrollment-count {
    color: white;
    padding: 18px 30px;
    border-radius: 30px;
    text-align: center;
    margin-top: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    background: rgba(0, 229, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.enrollment-count:hover {
    background: rgba(0, 229, 255, 0.9);
    transform: translateY(-2px);
}

/* Background Video Section */
.hero-background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero-video-overlay {
    z-index: 1;
}

/* MEDIA QUERIES */

/* Tablets (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .hero-info h1 {
        font-size: 3.5rem;
    }

    .hero-info h2 {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-card {
        margin: auto;
        max-width: 500px;
    }
}

/* Phones (up to 768px) */
@media screen and (max-width: 768px) {
    .hero-info h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-info h2 {
        font-size: 1.6rem;
        text-align: center;
    }

    .hero-description {
        font-size: 1rem;
        text-align: center;
        margin: 0 auto 30px auto;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 12px 30px;
    }

    .hero-card {
        padding: 30px;
    }

    .hero-breadcrumb {
        font-size: 14px;
        text-align: center;
        margin-bottom: 20px;
    }

    .hero-main-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-actions {
        text-align: center;
        padding: 0 !important;
    }
}

        /* Enhanced Stats Section - Seamlessly Integrated */
        .premium-stats-showcase {
            background: linear-gradient(
                135deg,
                #007bff 0%,
                #0056b3 50%,
                #003d82 100%
            );
            padding: 60px 0;
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(255, 193, 7, 0.2);
        }

        .premium-stats-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M40 40c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16zm-16-16c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            animation: float 25s ease-in-out infinite reverse;
            pointer-events: none;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .stats-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .stats-title h2 {
            font-size: 3rem;
            font-weight: 700;
            color: #ffc107;
            background: linear-gradient(45deg, #ffc107, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
        }

        .stats-title p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto;
        }

      .dynamic-metrics-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columns on large screens */
    gap: 30px;
    list-style: none;
}

@media (max-width: 1200px) {
    .dynamic-metrics-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .dynamic-metrics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .dynamic-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .dynamic-metrics-grid {
        grid-template-columns: 1fr;
    }
}


        .metric-spotlight {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 193, 7, 0.2);
            border-radius: 20px;
            padding: 32px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .metric-spotlight::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .metric-spotlight:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 193, 7, 0.4);
        }

        .metric-spotlight:hover::before {
            left: 100%;
        }

        .primary-metric-value {
            font-size: 2.8rem;
            font-weight: 800;
            color: #ffc107;
            margin-bottom: 12px;
            line-height: 1;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            letter-spacing: -0.02em;
        }

        .metric-description-label {
            font-size: 1rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            line-height: 1.3;
        }

        /* Animated accent dots matching hero theme */
        .metric-spotlight::after {
            content: '';
            position: absolute;
            top: 15px;
            right: 15px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ffc107;
            opacity: 0.8;
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {
            0%, 100% {
                opacity: 0.8;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.3);
            }
        }

        /* Staggered animations */
        .metric-spotlight:nth-child(1) { animation-delay: 0.1s; }
        .metric-spotlight:nth-child(2) { animation-delay: 0.2s; }
        .metric-spotlight:nth-child(3) { animation-delay: 0.3s; }
        .metric-spotlight:nth-child(4) { animation-delay: 0.4s; }
        .metric-spotlight:nth-child(5) { animation-delay: 0.5s; }
        .metric-spotlight:nth-child(6) { animation-delay: 0.6s; }

        .metric-spotlight {
            animation: slideInUp 0.8s ease-out both;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Special effects for specific metrics */
        .metric-spotlight:nth-child(3) .primary-metric-value {
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .metric-spotlight:nth-child(6) .primary-metric-value {
            /* color: #4caf50; */
            text-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-main-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero-info h1 {
                font-size: 4rem;
            }

            .hero-info h2 {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 20px 0;
                min-height: 80vh;
            }

            .hero-info h1 {
                font-size: 3rem;
                letter-spacing: 1px;
            }

            .hero-info h2 {
                font-size: 2rem;
            }

            .hero-description {
                font-size: 1.1rem;
            }

            .hero-card {
                padding: 30px;
            }

            .hero-card h3 {
                font-size: 1.8rem;
            }

            .premium-stats-showcase {
                padding: 40px 0;
            }

            .stats-title h2 {
                font-size: 2.5rem;
            }


            .metric-spotlight {
                padding: 24px;
            }

            .primary-metric-value {
                font-size: 2.2rem;
            }

            .metric-description-label {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .hero-info h1 {
                font-size: 2.5rem;
            }

            .hero-info h2 {
                font-size: 1.8rem;
            }

        

            .metric-spotlight {
                padding: 20px;
            }

            .primary-metric-value {
                font-size: 1.8rem;
            }

            .metric-description-label {
                font-size: 0.8rem;
            }
        }
      /* Content Sections */
      .content-section {
        background: white;
        padding: 80px 0;
      }

      .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
      }

      /* Tabs Styles */
      .tabs-container {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow-medium);
        border: 1px solid rgba(34, 197, 94, 0.1);
      }

      .tabs {
        display: flex;
        background: #f8fafc;
        flex-wrap: wrap;
        border-bottom: 1px solid rgba(34, 197, 94, 0.1);
      }

      .tab {
        flex: 1;
        min-width: 120px;
        padding: 20px 15px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        background: none;
        color: var(--text-secondary);
        font-size: 1rem;
        font-weight: 500;
        position: relative;
      }

      .tab::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 3px;
        background: var(--gradient-green);
        transition: all 0.3s ease;
        transform: translateX(-50%);
      }

      .tab.active {
        background: white;
        color: var(--primary-color);
        font-weight: 700;
      }

      .tab.active::after {
        width: 80%;
      }

      .tab:hover:not(.active) {
        background: rgba(34, 197, 94, 0.05);
        color: var(--primary-color);
      }

      .tab-content {
        padding: 50px;
        min-height: 400px;
        background: white;
      }

      .tab-pane {
        display: none;
      }

      .tab-pane.active {
        display: block;
      }

      .tab-pane h3 {
        color: var(--primary-color);
        margin-bottom: 25px;
        font-size: 2rem;
        font-weight: 700;
      }

      .tab-pane p {
        line-height: 1.8;
        margin-bottom: 20px;
        color: var(--text-secondary);
        font-size: 1.1rem;
      }

      /* Feature Cards */
      .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 2.5rem;
        margin-top: 1rem;
      }

      .feature-card {
        background: white;
        border-radius: 25px;
        padding: 2.5rem;
        border: 2px solid rgba(34, 197, 94, 0.1);
        box-shadow: var(--shadow-light);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        cursor: pointer;
      }

      .feature-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: var(--gradient-green);
        transform: scaleX(0);
        transition: transform 0.4s ease;
      }

      .feature-card::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: radial-gradient(
          circle,
          rgba(34, 197, 94, 0.1) 0%,
          transparent 70%
        );
        transition: all 0.4s ease;
        transform: translate(-50%, -50%);
        border-radius: 50%;
      }

      .feature-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: var(--shadow-heavy);
        border-color: var(--primary-color);
      }

      .feature-card:hover::before {
        transform: scaleX(1);
      }

      .feature-card:hover::after {
        width: 300px;
        height: 300px;
      }

      .feature-icon {
        width: 80px;
        height: 80px;
        background: var(--gradient-subtle);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
        transition: all 0.4s ease;
        border: 3px solid rgba(34, 197, 94, 0.2);
        position: relative;
        z-index: 2;
        color: var(--primary-color);
      }

      .feature-card:hover .feature-icon {
        background: var(--gradient-green);
        transform: scale(1.15) rotate(10deg);
        border-color: var(--primary-color);
        box-shadow: var(--shadow-green);
        
      }

      .feature-icon i {
        font-size: 2rem;
        color: var(--primary-color);
        transition: all 0.4s ease;
      }

      .feature-card:hover .feature-icon i {
        color:var(--primary-color);
        transform: scale(1.2);
      }

      .feature-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 1rem;
        line-height: 1.4;
        position: relative;
        z-index: 2;
      }

      .feature-description {
        color: var(--text-secondary);
        font-size: 1rem;
        line-height: 1.7;
        margin: 0;
        position: relative;
        z-index: 2;
      }

      /* Section Titles */
      .section-title {
        font-size: 3.5rem;
        font-weight: 800;
        color: var(--text-primary);
        margin-bottom: 2rem;
        position: relative;
        /* display: inline-block; */
      }

      .section-title .highlight {
        background: var(--gradient-primary);
        padding: 0.2rem 1.5rem;
        border-radius: 20px;
        color: white;
        position: relative;
        transform: rotate(-1deg);
        display: inline-block;
        box-shadow: var(--shadow-medium);
      }

      .features-title {
        font-size: 3rem;
        font-weight: 700;
        color: var(--text-primary);
        /* margin-bottom: 3rem; */
        position: relative;
        display: inline-block;
      }

      .features-title .highlight {
        background: var(--gradient-primary);
        padding: 0.3rem 1.5rem;
        border-radius: 15px;
        color: white;
        position: relative;
        transform: rotate(-0.5deg);
        display: inline-block;
        box-shadow: var(--shadow-medium);
      }

      /* Additional Content Styles */
      .modules-list {
        list-style: none;
        margin-top: 20px;
      }

      .modules-list li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(34, 197, 94, 0.1);
        color: var(--text-secondary);
        font-size: 1.1rem;
      }

      .modules-list li strong {
        color: var(--primary-color);
      }

      .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
      }

      .benefit-card {
        background: rgba(34, 197, 94, 0.05);
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        border: 2px solid rgba(34, 197, 94, 0.1);
        transition: all 0.3s ease;
      }

      .benefit-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary-color);
        background: rgba(34, 197, 94, 0.1);
      }

      .benefit-card h4 {
        color: var(--primary-color);
        margin-bottom: 15px;
        font-size: 1.3rem;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .hero-main-content {
          grid-template-columns: 1fr;
          gap: 40px;
          text-align: center;
        }

        .hero-info h1 {
          font-size: 3rem;
        }

        .hero-info h2 {
          font-size: 2rem;
        }

        .course-stats {
          grid-template-columns: repeat(2, 1fr);
        }

        .tabs {
          flex-direction: column;
        }

        .tab {
          flex: none;
          width: 100%;
        }

        .section-title {
          font-size: 2.5rem;
          text-align: center;
        }

        .features-title {
          font-size: 2.2rem;
          text-align: center;
        }

        .features-grid {
          grid-template-columns: 1fr;
          gap: 2rem;
        }

        .price-section {
          flex-direction: column;
          align-items: center;
          gap: 15px;
        }

        .tab-content {
          padding: 30px;
        }
      }

      @media (max-width: 480px) {
        .hero-info h1 {
          font-size: 2.5rem;
        }

        .hero-info h2 {
          font-size: 1.6rem;
        }

        .hero-description {
          font-size: 1.1rem;
        }

        .course-stats {
          grid-template-columns: 1fr;
        }

        .tab-content {
          padding: 20px;
        }
      }
    

    

        .course_tab_container-fluid {
            background: transparent;
        }

        /* Enhanced Navigation Pills */
        .nav-pills {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            padding: 10px;
            box-shadow: var(--shadow-medium);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .nav-pills .nav-link {
            border-radius: 20px;
            padding: 12px 24px;
            margin: 0 5px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
            color: #64748b;
        }

        .nav-pills .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-1);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .nav-pills .nav-link:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
            color: white;
            border-color: var(--primary-color);
        }

        .nav-pills .nav-link:hover::before {
            left: 0;
        }

        .nav-pills .nav-link.active {
            background: var(--gradient-1);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow-heavy);
            border-color: var(--secondary-color);
        }

        .nav-pills .nav-link.active::before {
            left: 0;
        }

        /* Tab Content Styling */
        .tab-content {
            margin-top: 3rem;
        }

        .tab-pane {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }

        .tab-pane.show.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Feature Cards Enhancement */
        .feature-item {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: var(--shadow-light);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-3);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-heavy);
        }

        .feature-item:hover::before {
            transform: scaleX(1);
        }

        .feature-item h4 {
            color: var(--secondary-color);
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .feature-item h5 {
            color: #475569;
            font-weight: 500;
            font-size: 0.95rem;
        }

        /* Accordion Enhancements */
        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        .accordion-button {
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 15px;
            font-weight: 600;
            color: var(--secondary-color);
            padding: 1.5rem;
            transition: all 0.3s ease;
        }

        .accordion-button:not(.collapsed) {
            background: var(--gradient-2);
            color: white;
            box-shadow: var(--shadow-medium);
        }

        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
        }

        .accordion-body {
            background: rgba(255, 255, 255, 0.98);
            border-top: 1px solid rgba(0, 0, 0, 0.125);
        }

        /* Section Headers */
        .text-primary {
            color: var(--accent-color) !important;
            font-weight: 700;
        }

        .display-4 {
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Countdown Timer Styling */
        .countdown-container {
            background: var(--gradient-3);
            border-radius: 20px;
            padding: 2rem;
            margin: 2rem 0;
            color: white;
            text-align: center;
            box-shadow: var(--shadow-heavy);
        }

        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        .countdown-item {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 1rem;
            min-width: 80px;
            backdrop-filter: blur(10px);
        }

        .countdown-number {
            font-size: 2rem;
            font-weight: bold;
            display: block;
        }

        .countdown-label {
            font-size: 0.8rem;
            opacity: 0.9;
        }

        /* Progress Bar for Batch Filling */
        .batch-progress {
            margin: 1.5rem 0;
        }

        .progress {
            height: 10px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.3);
            overflow: hidden;
        }

        .progress-bar {
            background: var(--gradient-1);
            transition: width 2s ease-in-out;
        }

        /* Interactive Icons */
        .fa {
            transition: all 0.3s ease;
        }

        .feature-item:hover .fa {
            transform: scale(1.2) rotate(5deg);
            color: var(--accent-color);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-pills .nav-link {
                font-size: 0.85rem;
                padding: 10px 16px;
                margin: 2px;
            }
            
            .countdown-timer {
                flex-wrap: wrap;
                gap: 0.5rem;
            }
            
            .countdown-item {
                min-width: 60px;
                padding: 0.8rem;
            }
        }

        /* Loading Animation */
        .loading-spinner {
            display: none;
            text-align: center;
            padding: 2rem;
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid rgba(59, 130, 246, 0.3);
            border-left: 4px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Notification Toast */
        .toast-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1055;
        }

        .custom-toast {
            background: var(--gradient-1);
            color: white;
            border: none;
            border-radius: 15px;
            box-shadow: var(--shadow-heavy);
        }
    
    
       

        .container {
            max-width: 1200px;
        }

        /* Enhanced Navigation Pills */
        .nav-pills {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 12px;
            box-shadow: var(--shadow-heavy);
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 3rem;
        }

        .nav-pills .nav-link {
            border-radius: 20px;
            padding: 15px 30px;
            margin: 0 8px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .nav-pills .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .nav-pills .nav-link:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: var(--shadow-glow);
            color: var(--primary-color);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .nav-pills .nav-link:hover::before {
            left: 0;
        }

        .nav-pills .nav-link.active {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            color: var(--primary-color);
            transform: translateY(-3px) scale(1.05);
            box-shadow: var(--shadow-glow);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .nav-pills .nav-link.active::before {
            left: 0;
        }

        /* Tab Content Styling */
        .tab-content {
            margin-top: 2rem;
        }

        .tab-pane {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .tab-pane.show.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Hero Section for Each Tab */
        .tab-hero {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 3rem 2rem;
            margin-bottom: 3rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: var(--shadow-heavy);
        }

        .tab-hero h4 {
            color: white;
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .tab-hero p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            margin: 0;
        }

        /* Enhanced Feature Cards */
        .feature-item {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: var(--shadow-medium);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            height: 100%;
            padding: 2rem 1.5rem;
        }

        .feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--gradient-3);
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }

        .feature-item::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .feature-item:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: var(--shadow-heavy), var(--shadow-glow);
        }

        .feature-item:hover::before {
            transform: scaleX(1);
        }

        .feature-item:hover::after {
            opacity: 1;
        }

        .feature-item i {
            transition: all 0.4s ease;
            margin-bottom: 1.5rem;
        }

        .feature-item:hover i {
            transform: scale(1.2) rotate(10deg);
            color: var(--accent-color) !important;
        }

        .feature-item h4 {
            color: var(--secondary-color);
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .feature-item h5 {
            color: #475569;
            font-weight: 500;
            font-size: 1rem;
            line-height: 1.5;
        }

        /* Special Styling for Apply Now Button */
        .apply-btn {
            background: var(--gradient-2);
            border: none;
            border-radius: 25px;
            padding: 12px 24px;
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.4s ease;
            box-shadow: var(--shadow-medium);
            margin-top: 1rem;
        }

        .apply-btn:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: var(--shadow-heavy);
            background: var(--gradient-1);
        }

        /* Batch Progress Styling */
        .batch-status {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 2rem;
            margin: 2rem 0;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: var(--shadow-medium);
        }

        .batch-status h6 {
            color: white;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-align: center;
            font-size: 1.1rem;
        }

        .progress {
            height: 12px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.2);
            overflow: hidden;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .progress-bar {
            background: var(--gradient-5);
            transition: width 2s ease-in-out;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(255, 154, 158, 0.4);
        }

        .seats-info {
            color: rgba(255, 255, 255, 0.9);
            text-align: center;
            margin-top: 1rem;
            font-size: 0.95rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-pills .nav-link {
                font-size: 0.9rem;
                padding: 12px 20px;
                margin: 2px;
            }
            
            .tab-hero {
                padding: 2rem 1.5rem;
            }
            
            .tab-hero h4 {
                font-size: 2rem;
            }
            
            .feature-item {
                padding: 1.5rem 1rem;
                margin-bottom: 1rem;
            }
        }

        /* Animation Classes */
        /* .fade-in {
            animation: fadeIn 0.8s ease-out;
        } */

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slide-in {
            animation: slideIn 0.6s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
    
      .tabs {
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 10px;
      }

      .tabs::-webkit-scrollbar {
        display: none;
      }

      .tab {
        padding: 15px 25px;
        cursor: pointer;
        white-space: nowrap;
        font-weight: 500;
        color: #0b81e9;
        border-bottom: 3px solid transparent;
        transition: all 0.3s ease;
        position: relative;
        border-radius: 8px 8px 0 0;
      }

      .tab:hover {
        color: #28a745;
        background: rgba(40, 167, 69, 0.05);
      }

      .tab.active {
        /* color: #28a745;
        border-bottom-color: #28a745; */
        background: white;
        font-weight: 600;
      }
      html {
        scroll-behavior: smooth;
      }

      .tabs {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 20px;
      }

      .tab {
        text-decoration: none;
        padding: 10px 15px;
        /* background-color: #eee; */
        border-radius: 5px;
        color: #333;
        font-weight: bold;
      }

      .tab:hover,
      .tab.active {
        background-color: #007bff;
        color: white;
      }

      .tab-section {
        margin-bottom: 80px;
      }
    


      
    /* Course Tab Section Styles */
.course-content-section {
  padding: 20px 0;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.course-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.course-navigation-wrapper {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 0 20px;
}

.course-nav-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 5px;
  padding: 10px 0;
}

.course-nav-tabs::-webkit-scrollbar {
  display: none;
}

.course-nav-item {
  display: inline-block;
  padding: 15px 25px;
  text-decoration: none;
  color: #6c757d;
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  min-width: 120px;
  text-align: center;
}

.course-nav-item:hover {
  color: #007bff;
  background: rgba(0, 123, 255, 0.05);
  border-color: rgba(0, 123, 255, 0.15);
  transform: translateY(-2px);
  text-decoration: none;
}

.course-nav-item.course-active-tab {
  color: #007bff;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0.05) 100%);
    /* border-color: #007bff; */
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.course-nav-item.course-active-tab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: #007bff;
  border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .course-container {
    padding: 0 15px;
  }
  
  .course-navigation-wrapper {
    padding: 0 15px;
  }
  
  .course-nav-item {
    padding: 12px 20px;
    font-size: 0.9rem;
    min-width: 100px;
  }
}

@media (max-width: 576px) {
  .course-content-section {
    padding: 15px 0;
  }
  
  .course-container {
    padding: 0 10px;
  }
  
  .course-navigation-wrapper {
    padding: 0 10px;
    border-radius: 8px;
  }
  
  .course-nav-item {
    padding: 10px 16px;
    font-size: 0.85rem;
    min-width: 90px;
  }
}

/* Alternative Style Variations */

/* Modern Gradient Style */
.course-nav-item.gradient-style {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
}

.course-nav-item.gradient-style:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Minimal Underline Style */
.course-nav-item.minimal-style {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 15px 20px;
}

.course-nav-item.minimal-style:hover {
  background: none;
  border-bottom-color: #007bff;
  transform: none;
}

.course-nav-item.minimal-style.course-active-tab {
  background: none;
  border-bottom-color: #007bff;
  box-shadow: none;
}

.course-nav-item.minimal-style.course-active-tab::after {
  display: none;
}

/* Pill Style */
.course-nav-item.pill-style {
  border-radius: 25px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
}

.course-nav-item.pill-style:hover {
  background: #e9ecef;
  border-color: #007bff;
}

.course-nav-item.pill-style.course-active-tab {
  background: #007bff;
  color: white;
  border-color: #007bff;
}


 
 
        .outcome-wrapper {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            position: relative;
            min-height: 100vh;
            padding: 120px 0;
        }

        .outcome-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 206, 84, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 121, 198, 0.3) 0%, transparent 50%);
            animation: gradientShift 15s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        .outcome-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.1), transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.1), transparent),
                radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.1), transparent),
                radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.1), transparent);
            background-repeat: repeat;
            background-size: 200px 200px;
            animation: sparkle 20s linear infinite;
        }

        @keyframes sparkle {
            0% { transform: translateY(0px); }
            100% { transform: translateY(-200px); }
        }

        .header-section {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 10;
        }

        .subtitle-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            padding: 12px 30px;
            border-radius: 50px;
            margin-bottom: 30px;
            animation: glow 3s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { box-shadow: 0 0 20px rgba(255, 255, 255, 0.2); }
            to { box-shadow: 0 0 30px rgba(255, 255, 255, 0.4); }
        }

        .subtitle-badge h4 {
            color: #fff;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin: 0;
        }

        .main-heading {
            color: #fff;
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 0;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .outcomes-grid {
            position: relative;
            z-index: 10;
        }

        .outcome-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 45px 35px;
            text-align: center;
            height: 100%;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .outcome-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.6s ease;
        }

        .outcome-card:hover::before {
            left: 100%;
        }

        .outcome-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .icon-container {
            width: 90px;
            height: 90px;
            margin: 0 auto 30px;
            position: relative;
            z-index: 2;
        }

        .icon-circle {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .outcome-card:hover .icon-circle {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
            transform: scale(1.1) rotate(360deg);
            box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
        }

        .icon-circle i {
            font-size: 2.2rem;
            color: #fff;
            transition: all 0.3s ease;
        }

        .outcome-card:hover .icon-circle i {
            transform: scale(1.1);
        }

        .card-content h5 {
            color: #2c3e50;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.3;
            position: relative;
            z-index: 2;
        }

        .card-content p {
            color: #5a6c7d;
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
            position: relative;
            z-index: 2;
            font-weight: 400;
        }

        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 15s infinite ease-in-out;
        }

        .floating-element:nth-child(1) {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
            animation-duration: 20s;
        }

        .floating-element:nth-child(2) {
            top: 20%;
            right: 20%;
            animation-delay: -5s;
            animation-duration: 25s;
        }

        .floating-element:nth-child(3) {
            bottom: 30%;
            left: 15%;
            animation-delay: -10s;
            animation-duration: 18s;
        }

        .floating-element:nth-child(4) {
            bottom: 20%;
            right: 10%;
            animation-delay: -15s;
            animation-duration: 22s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.7;
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
                opacity: 1;
            }
        }

        .success-metrics {
            position: absolute;
            top: 50%;
            left: -50px;
            transform: translateY(-50%);
            writing-mode: vertical-rl;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 3px;
            z-index: 5;
        }

        @media (max-width: 1200px) {
            .main-heading {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .outcome-wrapper {
                padding: 80px 0;
            }
            
            .main-heading {
                font-size: 2.5rem;
            }
            
            .outcome-card {
                padding: 35px 25px;
                margin-bottom: 30px;
            }
            
            .header-section {
                margin-bottom: 60px;
            }
            
            .success-metrics {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .main-heading {
                font-size: 2rem;
            }
            
            .subtitle-badge {
                padding: 10px 20px;
            }
            
            .subtitle-badge h4 {
                font-size: 0.85rem;
            }
        }

        .pulse-animation {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
            

    
      .cta-section {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            color: white;
            text-align: center;
        }

        .btn-cta {
            background: white;
            color: var(--primary-color);
            border: none;
            padding: 15px 40px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            margin: 0 10px 10px 0;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            color: var(--primary-color);
            text-decoration: none;
        }

        .btn-cta.whatsapp {
            background: #25d366;
            color: white;
        }

        .btn-cta.whatsapp:hover {
            background: #128c7e;
            color: white;
        }


        
        /* Custom styles for plus/minus accordion with unique class */
        .custom-syllabus-accordion .custom-accordion-button {
            position: relative;
            padding-right: 3rem;
            background-color: #f8f9fa;
            border: none;
            font-weight: 500;
        }
        
        /* Hide the default Bootstrap arrow */
        .custom-syllabus-accordion .custom-accordion-button::after {
            display: none;
        }
        
        /* Add custom plus/minus icon */
        .custom-syllabus-accordion .custom-accordion-button::before {
            content: '+';
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            font-weight: bold;
            color: #0d6efd;
            transition: all 0.3s ease;
        }
        
        /* Change to minus when expanded */
        .custom-syllabus-accordion .custom-accordion-button:not(.collapsed)::before {
            content: '−';
            transform: translateY(-50%) rotate(0deg);
        }
        
        /* Hover effects */
        .custom-syllabus-accordion .custom-accordion-button:hover::before {
            color: #0a58ca;
            transform: translateY(-50%) scale(1.1);
        }
        
        .custom-syllabus-accordion .custom-accordion-button:not(.collapsed):hover::before {
            transform: translateY(-50%) scale(1.1) rotate(0deg);
        }
        
        /* Additional styling */
        .custom-syllabus-accordion .custom-accordion-item {
            border: 1px solid #dee2e6;
            margin-bottom: 0.5rem;
            border-radius: 0.375rem;
            overflow: hidden;
        }
        
        .custom-syllabus-accordion .custom-accordion-button:not(.collapsed) {
            background-color: #e7f1ff;
            box-shadow: none;
        }
        
        .accordion-body {
            background-color: #ffffff;
        }
        
        .text-primary {
            color: #0d6efd !important;
        }
        
        .text-success {
            color: #198754 !important;
        }
    