/*
Theme Name: Impulse Academy Site Clone
Theme URI: https://impulsecomputeracademy.com/
Author: Avinash
Description: Visual clone shell theme matching impulsecomputeracademy.com homepage layout and React app mount.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
Text Domain: impulse-academy-clone
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #e2e8f0;
    background-color: #0f172a;
    font-family: Poppins, sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
}
 ::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1e293b;
}

::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}

.glass {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-premium {
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.1);
}

.glass-premium:hover {
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, #2563eb, #f59e0b);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.gradient-text-neon {
    background: linear-gradient(135deg, #00ffff, #0099ff);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: neon-pulse 3s ease-in-out infinite;
}

@keyframes neon-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.6));
    }
}

.gradient-bg {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(245, 158, 11, 0.1));
}

.btn-primary {
    cursor: pointer;
    background: linear-gradient(to right, #2563eb, #f59e0b);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    cursor: pointer;
    border: 2px solid #2563eb;
    color: #2563eb;
    background: transparent;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    background-color: #2563eb;
    color: rgb(255, 255, 255);
}

.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Header Styles */
.header {
    background: rgba(15, 23, 42, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.875rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb, #f59e0b);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.nav-list  {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-list  .menu-item  a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list ul .menu-item  a:hover {
    color: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #e2e8f0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    gap: 0;
}

.nav.mobile-open .nav-list {
    flex-direction: column;
    gap: 0;
}

.nav.mobile-open .nav-list li {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav {
        display: none;
    }

    .nav-list {
        gap: 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-padding {
    padding: 3rem 1rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.justify-between {
    justify-content: space-between;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.text-white {
    color: white;
}

.text-primary {
    color: #2563eb;
}

.text-lg {
    font-size: 1.125rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.w-full {
    width: 100%;
}

.rounded-lg {
    border-radius: 0.5rem;
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
    }
}
.site {
  min-height: 100vh;
}

.react-shell-main {
  display: block;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

     
.announcement-banner {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(0, 255, 255, 0.15));
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.banner-emoji {
    font-size: 1.3rem;
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(245, 158, 11, 0.05));
    padding: 3rem 1rem;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content-wrapper {
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: white;
}

.hero-tagline {
    font-size: 1.5rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: #e2e8f0;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

/* Section Styles */
.section-padding {
    padding: 4rem 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Courses Grid */
.courses-section {
    background: transparent;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.course-card {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.course-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image {
    transform: scale(1.05);
}

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.course-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.course-card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
}

.course-card h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.course-icon {
    font-size: 2rem;
    margin-left: 1rem;
}

.course-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0 1.5rem 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #cbd5e1;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    color: #64748b;
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
}

.meta-value {
    color: #2563eb;
    font-weight: 600;
}

.course-description {
    flex: 1;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
}

.course-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 1rem;
    padding: 0 1.5rem 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.student-count {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.course-level {
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    padding: 0.3rem 0.7rem;
    border-radius: 0.3rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.course-card .btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem 1.5rem;
}

.view-all-btn {
    text-align: center;
    margin-top: 2rem;
}

.view-all-btn .btn-primary {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

/* Why Choose Us Section */
.why-us-section {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(0, 255, 255, 0.05));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #cbd5e1;
    font-size: 1rem;
}

/* Journey Section */
.journey-section {
    background: transparent;
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 2rem;
    position: relative;
    text-align: center;
    transition: all 0.3s;
    margin-top: 2rem;
}

.step-card:hover {
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    border: 3px solid #0f172a;
}

.step-emoji {
    font-size: 3rem;
    margin: 1rem 0;
}

.step-card h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.journey-cta {
    text-align: center;
    margin: 3rem 0;
}

.journey-cta h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(0, 255, 255, 0.05));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card .btn-text {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.service-card .btn-text:hover {
    gap: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background: transparent;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-5px);
}

.testimonial-rating {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.testimonial-text {
    color: #cbd5e1;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #2563eb;
}

.author-info h4 {
    color: white;
    margin: 0 0 0.2rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.author-course {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
}

/* Contact Form */
.contact-section {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(0, 255, 255, 0.05));
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #e2e8f0;
    font-family: Poppins, sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    margin-bottom: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: #2563eb;
    background: rgba(30, 41, 59, 0.9);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder {
    color: #64748b;
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.contact-section .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

/* ========== PREMIUM HERO SECTION ========== */

.premium-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #0f172a;
    padding: 2rem 1rem;
}

/* Background Animations */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.gradient-mesh {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 40% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-5%, 5%);
    }
    50% {
        transform: translate(-10%, -5%);
    }
    75% {
        transform: translate(5%, 10%);
    }
}

/* Floating Orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.4), transparent);
    top: 10%;
    left: 10%;
    animation-duration: 25s;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3), transparent);
    top: 60%;
    right: 5%;
    animation-duration: 30s;
    animation-delay: -5s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent);
    bottom: 20%;
    left: 30%;
    animation-duration: 28s;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(30px, -30px);
    }
    50% {
        transform: translate(-20px, 20px);
    }
    75% {
        transform: translate(20px, -20px);
    }
}

/* Particle Canvas */
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Floating Tech Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.tech-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    animation: float-icon 8s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
}

.icon-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 50%;
    right: 5%;
    animation-delay: -2s;
}

.icon-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: -4s;
}

.icon-4 {
    top: 30%;
    left: 15%;
    animation-delay: -3s;
}

@keyframes float-icon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(20px) rotate(-5deg);
    }
}

/* Hero Container */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    z-index: 10;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Left Content */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: slideInLeft 0.8s ease-out;
    min-width: 0;
    overflow: hidden;
    width: 100%;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    background: #0f172ad9;
    border: 1px solid #0ff3;
    box-shadow: 0 8px 32px #00ffff1a;
    border-radius: 20px;
    padding: 20px;
}

/* Top Badges */
.hero-badges-top {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    animation: fadeInDown 0.8s ease-out;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.05);
}

.badge-green {
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.badge-orange {
    border-color: rgba(251, 146, 60, 0.3);
    color: #fb923c;
}

.badge-purple {
    border-color: rgba(168, 85, 247, 0.3);
    color: #a855f7;
}

/* Tagline */
.hero-tagline {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
    animation: slideInLeft 0.8s ease-out 0.2s backwards;
}

/* Learn Text */
.hero-learn-text {
    font-size: 1rem;
    font-weight: 600;
    color: #cbd5e1;
    margin: 0;
    animation: slideInLeft 0.8s ease-out 0.3s backwards;
}

/* Feature Boxes Grid */
.feature-boxes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    animation: slideInLeft 0.8s ease-out 0.4s backwards;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    background: rgba(30, 41, 59, 0.4);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-box:hover {
    border-color: rgba(0, 255, 255, 0.3);
    background: rgba(30, 41, 59, 0.6);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 1.75rem;
    display: block;
}

.feature-text {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

/* CTA Buttons */
.hero-buttons-new {
    display: flex;
    gap: 1rem;
    animation: slideInLeft 0.8s ease-out 0.5s backwards;
}

.btn-enroll {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Poppins, sans-serif;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4), 0 0 40px rgba(0, 153, 255, 0.2);
}

.btn-enroll:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 0 60px rgba(0, 153, 255, 0.3);
}

.btn-explore {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    color: #00ffff;
    background: transparent;
    border: 2px solid rgba(0, 255, 255, 0.5);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Poppins, sans-serif;
}

.btn-explore:hover {
    color: #00ffff;
    border-color: rgba(0, 255, 255, 0.8);
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Contact Info */
.hero-contact-info {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-top: 1rem;
    animation: slideInLeft 0.8s ease-out 0.6s backwards;
}

.hero-contact-info p {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.separator {
    color: #64748b;
    margin: 0 0.5rem;
}

.email-icon {
    margin-right: 0.3rem;
}

.hero-contact-info a {
    color: #00ffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-contact-info a:hover {
    color: #00ffff;
    text-decoration: underline;
}

/* Glass Effect */
.glass-effect {
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
}

/* Placement Badge */
.placement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    width: fit-content;
    animation: fadeInDown 0.8s ease-out;
}

.badge-icon {
    font-size: 1.25rem;
}

.placement-badge span:last-child {
    color: #06b6d4;
    font-weight: 600;
    font-size: 0.95rem;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Title */
.hero-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
    color: white;
    animation: slideInLeft 0.8s ease-out 0.1s backwards;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-main-title span {
    display: block;
    animation: slideInLeft 0.8s ease-out backwards;
}

.hero-main-title span:nth-child(1) {
    animation-delay: 0.2s;
    background: linear-gradient(135deg, #2563eb, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-main-title span:nth-child(2) {
    animation-delay: 0.3s;
    background: linear-gradient(135deg, #f59e0b, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Typing Section */
.typing-section {
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.typing-label {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    font-weight: 500;
}

.typing-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ffff;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
}

.typing-item {
    position: absolute;
    opacity: 0;
    animation: typing 4s ease-in-out infinite;
}

.typing-item.active {
    position: static;
    opacity: 1;
    animation: none;
}

@keyframes typing {
    0%, 10% {
        opacity: 0;
    }
    15%, 85% {
        opacity: 1;
    }
    90%, 100% {
        opacity: 0;
    }
}

.typing-item:nth-child(2) {
    animation-delay: 4s;
}

.typing-item:nth-child(3) {
    animation-delay: 8s;
}

.typing-item:nth-child(4) {
    animation-delay: 12s;
}

.typing-item:nth-child(5) {
    animation-delay: 16s;
}

.typing-item:nth-child(6) {
    animation-delay: 20s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subheading */
.hero-subheading {
    font-size: 1.125rem;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 500px;
    margin: 0;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.trust-badge:hover {
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.1);
    transform: translateY(-5px);
}

.badge-value {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #2563eb, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-label {
    font-size: 0.85rem;
    color: #cbd5e1;
    font-weight: 500;
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.7s backwards;
}

.btn-glow {
    position: relative;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #2563eb, #00ffff);
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4), 0 0 40px rgba(0, 255, 255, 0.2);
    font-family: Poppins, sans-serif;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shine {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(50px, 50px);
        opacity: 0;
    }
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.6), 0 0 60px rgba(0, 255, 255, 0.3);
}

.btn-glow:active {
    transform: translateY(-1px);
}

.btn-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 30%, rgba(255, 255, 255, 0.2), transparent 70%);
    animation: shimmer 2s infinite;
    border-radius: 0.75rem;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.btn-glass {
    position: relative;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #00ffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 0.75rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    font-family: Poppins, sans-serif;
}

.btn-glass:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.2);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    margin-left: 0.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-glass:hover .btn-icon {
    transform: translateX(3px);
}

/* Quick Contact */
.quick-contact {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #00ffff;
    border-color: rgba(0, 255, 255, 0.3);
    background: rgba(0, 255, 255, 0.05);
}

.contact-icon {
    font-size: 1.25rem;
}

.whatsapp-link {
    background: rgba(37, 195, 100, 0.1);
    border-color: rgba(37, 195, 100, 0.3);
    color: #25c364;
}

.whatsapp-link:hover {
    color: #25c364;
    border-color: rgba(37, 195, 100, 0.5);
    background: rgba(37, 195, 100, 0.15);
}

/* Scroll Hint */
.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out 0.9s backwards;
}

.scroll-text {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.scroll-arrow {
    font-size: 1.5rem;
    color: #00ffff;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Right Side - Slider */
.hero-right {
    animation: slideInRight 0.8s ease-out;
    min-width: 0;
    overflow: hidden;
    width: 100%;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.slider-container {
    position: relative;
    height: 400px;
    border-radius: 1.25rem;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    border: 2px solid rgba(0, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background: rgba(30, 41, 59, 0.5);
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    display: flex !important;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.slide-background {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-pattern {
    font-size: 6rem;
    opacity: 0.3;
    animation: float-pattern 6s ease-in-out infinite;
}

@keyframes float-pattern {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

.slide-background {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) saturate(1.2);
    animation: zoomIn 0.8s ease-out;
}

@keyframes zoomIn {
    0% {
        transform: scale(1.1);
        filter: brightness(0.6) saturate(1.2);
    }
    100% {
        transform: scale(1);
        filter: brightness(0.8) saturate(1.2);
    }
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(0, 255, 255, 0.15));
    z-index: 1;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(15, 23, 42, 0.8) 100%);
    pointer-events: none;
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
    color: white;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    color: #00ffff;
}

.slide-desc {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.5;
}

/* Swiper Controls */
.swiper-button-prev.hero-slider-prev,
.swiper-button-next.hero-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.swiper-button-prev.hero-slider-prev:hover,
.swiper-button-next.hero-slider-next:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.swiper-button-prev.hero-slider-prev {
    left: 1.5rem;
}

.swiper-button-next.hero-slider-next {
    right: 1.5rem;
}

/* Pagination Dots */
.swiper-pagination.hero-slider-dots {
    bottom: 2rem !important;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #00ffff;
    width: 30px;
    border-radius: 10px;
}

/* Modern CTA Section */
.hero-cta-section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    animation: slideInLeft 0.8s ease-out 0.65s backwards;
}

.cta-tagline {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin: 0;
    font-weight: 500;
    animation: fadeInDown 0.8s ease-out 0.65s backwards;
}

.cta-buttons-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    animation: slideInLeft 0.8s ease-out 0.7s backwards;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1.5px solid;
    background: rgba(30, 41, 59, 0.4);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-200%);
    transition: transform 0.6s ease;
}

.cta-btn:hover::before {
    transform: translateX(200%);
}

.cta-icon {
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.cta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    opacity: 0.7;
}

.cta-value {
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Phone CTA */
.cta-phone {
    border-color: rgba(37, 99, 235, 0.3);
    color: #2563eb;
}

.cta-phone:hover {
    border-color: rgba(37, 99, 235, 0.6);
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

/* WhatsApp CTA */
.cta-whatsapp {
    border-color: rgba(37, 195, 100, 0.3);
    color: #25c364;
}

.cta-whatsapp:hover {
    border-color: rgba(37, 195, 100, 0.6);
    background: rgba(37, 195, 100, 0.1);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(37, 195, 100, 0.2);
}

/* Email CTA */
.cta-email {
    border-color: rgba(0, 255, 255, 0.3);
    color: #00ffff;
}

.cta-email:hover {
    border-color: rgba(0, 255, 255, 0.6);
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 255, 255, 0.2);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25c364;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 195, 100, 0.4);
    animation: fadeInUp 0.8s ease-out 1s backwards;
    transition: all 0.3s ease;
    z-index: 100;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 195, 100, 0.6);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-icon {
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ========== RESPONSIVE PREMIUM HERO ========== */
@media (max-width: 1024px) {
    .hero-main-title {
        font-size: 3rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .slider-container {
        height: 400px;
    }

    .slide-title {
        font-size: 1.5rem;
    }

    .hero-left {
        text-align: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .hero-cta-buttons {
        justify-content: center;
    }

    .quick-contact {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-features {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .hero-buttons {
        gap: 1rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    /* Premium Hero Mobile */
    .premium-hero {
        min-height: auto;
        padding: 2rem 1rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-main-title {
        font-size: 2.25rem;
    }

    .hero-badges-top {
        flex-direction: column;
        gap: 0.5rem;
    }

    .badge-item {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-learn-text {
        font-size: 0.95rem;
    }

    .feature-boxes-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .feature-box {
        padding: 0.75rem;
        justify-content: flex-start;
    }

    .feature-icon {
        font-size: 1.5rem;
    }

    .feature-text {
        font-size: 0.9rem;
    }

    .hero-buttons-new {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .btn-enroll,
    .btn-explore {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-contact-info {
        font-size: 0.85rem;
    }

    .slider-container {
        height: 300px;
    }

    .slide-title {
        font-size: 1.1rem;
    }

    .slide-desc {
        font-size: 0.8rem;
    }

    .swiper-button-prev.hero-slider-prev,
    .swiper-button-next.hero-slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .swiper-button-prev.hero-slider-prev {
        left: 0.75rem;
    }

    .swiper-button-next.hero-slider-next {
        right: 0.75rem;
    }

    .floating-icons {
        display: none;
    }

    .floating-orb {
        filter: blur(50px);
        opacity: 0.2;
    }
}

 .footer-section {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(245, 158, 11, 0.1));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 1rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section-item h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section-item p {
    color: #cbd5e1;
    line-height: 1.625;
}

.footer-section-item ul {
    list-style: none;
}

.footer-section-item ul li {
    margin-bottom: 0.5rem;
}

.footer-section-item ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section-item ul li a:hover {
    color: #2563eb;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    max-width: 1200px;
    margin: 0 auto 0 1rem;
}
      .course-detail-header {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(0, 255, 255, 0.2));
            padding: 4rem 2rem;
            margin-bottom: 3rem;
            border-bottom: 1px solid rgba(0, 255, 255, 0.2);
        }

        .course-detail-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .course-title {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .course-subtitle {
            color: #cbd5e1;
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .course-main-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .course-image-large {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 0.75rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(0, 255, 255, 0.2);
        }

        .course-content-section {
            margin-bottom: 3rem;
        }

        .course-content-title {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .course-content-title span {
            font-size: 1.8rem;
        }

        .course-content-text {
            color: #cbd5e1;
            line-height: 1.8;
        }

        .course-content-text p {
            margin-bottom: 1rem;
        }

        .syllabus-list {
            list-style: none;
            padding: 0;
        }

        .syllabus-list li {
            color: #cbd5e1;
            padding: 0.75rem 0;
            padding-left: 2rem;
            position: relative;
            margin-bottom: 0.5rem;
        }

        .syllabus-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #00ffff;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .sidebar-card {
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 0.75rem;
            padding: 2rem;
            position: sticky;
            top: 2rem;
        }

        .sidebar-card-title {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .course-info-item {
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .course-info-item:last-child {
            border-bottom: none;
        }

        .info-label {
            color: #64748b;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .info-value {
            color: white;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .info-value.price {
            color: #00ffff;
            font-size: 1.5rem;
        }

        .enroll-button {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, #2563eb, #00ffff);
            color: white;
            border: none;
            border-radius: 0.5rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .enroll-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
        }

        .instructor-section {
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(0, 255, 255, 0.2);
            padding: 2rem;
            border-radius: 0.75rem;
            margin-bottom: 3rem;
        }

        .instructor-card {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
        }

        .instructor-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(0, 255, 255, 0.3);
        }

        .instructor-info h4 {
            color: white;
            margin-bottom: 0.3rem;
        }

        .instructor-info .title {
            color: #00ffff;
            font-size: 0.9rem;
            margin-bottom: 0.8rem;
        }

        .instructor-info p {
            color: #cbd5e1;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .faq-section {
            margin-top: 3rem;
        }

        .faq-item {
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 0.5rem;
            margin-bottom: 1.5rem;
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            color: white;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(0, 255, 255, 0.1);
        }

        .faq-toggle {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 1.5rem 1.5rem 1.5rem;
            color: #cbd5e1;
            display: none;
            line-height: 1.8;
        }

        .faq-answer.active {
            display: block;
        }

        @media (max-width: 768px) {
            .course-main-grid {
                grid-template-columns: 1fr;
            }

            .course-title {
                font-size: 1.8rem;
            }

            .sidebar-card {
                position: static;
            }
        }
.sub-menu li a {
    color: black !important;
}
.sub-menu li:hover{
    color: white !important;
    padding: 5px;
    background-color: #2563eb;
}

.sub-menu{
    display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 130px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
 
  color:black

}
/* set font color black to ul li a inside .sub-menu */

.menu-item-has-children > a::after {
    content: "▼";
    font-size: 0.6rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}
.menu-item-has-children::hover {
    color: #161616;
    background-color: #ffffff;
}
.menu-item-has-children::hover > a::after {
    transform: rotate(180deg);
}

.menu-item-has-children:hover .sub-menu {
    display: block;

}
.sub-menu li {
    padding: 5px;
    list-style: none;
   
}
.sub-menu li a{
color:black;
}