/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0f172a;
    --secondary-color: #1e293b;
    --accent-color: #f59e0b;
    --accent-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
    --success-color: #10b981;
    --error-color: #ef4444;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    --glow-orange: rgba(245, 158, 11, 0.5);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Montserrat:wght@400;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: #ffffff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.top-bar {
    background: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-links {
    display: flex;
    gap: 20px;
}

.top-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-links a:hover {
    color: var(--accent-color);
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.navbar {
    padding: 10px 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition-smooth);
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .nav-menu {
        display: none;
        /* Hide for now, can implement mobile menu later if needed */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .header-cta .whatsapp-btn span {
        display: none;
    }

    .header-cta .whatsapp-btn {
        padding: 10px;
        border-radius: 50%;
    }
}


/* Premium Hero Section */
.premium-hero {
    position: relative;
    height: 90vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.hero-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 10s linear;
    transform: scale(1.1);
}

.swiper-slide-active .hero-bg-parallax {
    transform: scale(1.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 30%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 1;
}

.hero-content-container {
    position: relative;
    z-index: 2;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    opacity: 0.3;
    transition: var(--transition-smooth);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
}

.hero-text-glass {
    max-width: 650px;
    padding: 40px;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-badge {
    background: var(--accent-gradient);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    display: inline-block;
}

.hero-main-title {
    font-size: clamp(40px, 8vw, 72px);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero-main-title span {
    color: var(--accent-color);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Stats Counter */
.stats-counter-section {
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item-modern {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.stat-item-modern:hover {
    transform: translateY(-10px);
}

.stat-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--accent-color);
}

.stat-item-modern h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item-modern p {
    color: var(--text-light);
    font-weight: 500;
}

/* About Section Modern */
.about-modern {
    padding: 120px 0;
}

.about-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-stack {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

.about-image-stack .main-img {
    border-radius: 30px;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.3);
}

.img-overlay-card {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 30px;
    border-radius: 20px;
    width: 250px;
    text-align: center;
}

.section-title-modern {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

.section-title-modern span {
    color: var(--accent-color);
}

.about-check-list {
    list-style: none;
    margin: 30px 0 40px;
}

.about-check-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 18px;
}

.about-check-list li i {
    color: var(--accent-color);
}

@media (max-width: 991px) {
    .stats-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid-modern {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 576px) {
    .stats-grid-modern {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }
}


/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    background: linear-gradient(to bottom, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--accent-color);
    font-weight: 600;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Balloon Animation Styling */
.balloon-container {
    position: absolute;
    top: -60px;
    right: 20px;
    cursor: pointer;
    z-index: 100;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.balloon-container:hover {
    transform: scale(1.1) rotate(5deg);
}

.balloon {
    width: 60px;
    height: 75px;
    background: #f43f5e;
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    position: relative;
    animation: floatBalloon 3s ease-in-out infinite;
}

.balloon:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: #f43f5e;
    bottom: -5px;
    left: 24px;
    transform: rotate(45deg);
}

.balloon-string {
    position: absolute;
    width: 2px;
    height: 50px;
    background: rgba(255, 255, 255, 0.6);
    bottom: -45px;
    left: 29px;
}

@keyframes floatBalloon {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* Welcome Overlay Styling */
.welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.welcome-content {
    text-align: center;
    position: relative;
}

.welcome-text {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(50px);
    font-family: 'Poppins', sans-serif;
}

.welcome-text span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-top: 10px;
}

.plane-container {
    position: absolute;
    font-size: 80px;
    color: var(--accent-color);
    top: 50%;
    left: -200px;
    transform: translateY(-50%) rotate(20deg);
    z-index: 10000;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

/* Flight Animation */
.flight-container {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
}

.plane-animation {
    font-size: 50px;
    color: white;
    animation: flightPath 15s linear infinite;
}

@keyframes flightPath {
    0% {
        transform: translate(-100vw, 100vh) rotate(45deg);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translate(100vw, -100vh) rotate(45deg);
        opacity: 0;
    }
}

/* Animations and Reveals */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition-smooth);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-smooth);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 10px 20px -5px var(--glow-orange);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px var(--glow-orange);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: white;
}


/* Section Styles */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* About Section */
.about-section {
    background: var(--bg-light);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Courses Section */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.course-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.course-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.course-features {
    list-style: none;
    margin: 20px 0;
}

.course-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.course-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Glassmorphism Utilities */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Courses Grid Modern */
.courses-hero {
    background: var(--primary-color);
    padding: 100px 0;
    text-align: center;
    color: white;
    background-image: radial-gradient(at 0% 0%, hsla(217, 91%, 60%, 0.1) 0, transparent 50%);
}

.courses-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.courses-hero h1 span {
    color: var(--accent-color);
}

.modern-courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: -60px;
    padding-bottom: 80px;
}

.modern-course-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-course-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.2);
}

.course-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.course-card-body {
    padding: 30px;
}

.course-tag {
    background: var(--bg-light);
    color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.modern-course-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.course-meta {
    display: flex;
    gap: 20px;
    margin: 20px 0 25px;
    font-size: 14px;
    color: var(--text-light);
    border-top: 1px solid var(--bg-light);
    padding-top: 20px;
}

.course-meta i {
    color: var(--accent-color);
}

.full-width {
    width: 100%;
    text-align: center;
}

/* Learning CTA Card */
.glass-cta-card {
    background: var(--accent-gradient);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    color: white;
    box-shadow: 0 30px 60px -12px rgba(245, 158, 11, 0.4);
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Payment Page Split Screen */
.payment-split-section {
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
    padding: 50px 0;
    background: var(--bg-light);
}

.payment-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.payment-form-glass {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.payment-form-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-gradient);
}

.form-group-floating {
    position: relative;
    margin-bottom: 30px;
}

.form-group-floating input {
    width: 100%;
    padding: 15px 0;
    font-size: 16px;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group-floating label {
    position: absolute;
    top: 15px;
    left: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    color: var(--text-light);
}

.form-group-floating input:focus+label,
.form-group-floating input:not(:placeholder-shown)+label {
    top: -10px;
    font-size: 12px;
    color: var(--accent-color);
}

.form-group-floating input:focus {
    border-bottom-color: var(--accent-color);
}

.payment-illustration-side img {
    width: 100%;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
}

.form-row-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.secure-badge-glass {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.secure-badge-glass i {
    color: var(--success-color);
    font-size: 18px;
}

.trust-indicators {
    margin-top: 40px;
    text-align: center;
}

.trust-indicators h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.badge-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-badge {
    width: 60px;
    height: 40px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 20px;
    color: #cbd5e1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.illustration-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.2);
}

/* Final Refinements */
.text-center {
    text-align: center;
}

.section-header-modern {
    margin-bottom: 60px;
}

.premium-cta {
    padding: 100px 0;
    text-align: center;
}

.cta-glass-card {
    background: var(--primary-color);
    background-image: radial-gradient(at 100% 100%, hsla(217, 91%, 60%, 0.2) 0, transparent 50%);
    padding: 80px 40px;
    border-radius: 40px;
    color: white;
    box-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.4);
}

.cta-glass-card h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-actions-modern {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .cta-actions-modern {
        flex-direction: column;
    }

    .cta-glass-card h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .form-row-modern {
        grid-template-columns: 1fr;
    }

    .payment-form-glass {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .modern-courses-grid {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }

    .payment-illustration-side {
        order: -1;
    }
}


.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.page-header p {
    font-size: 20px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.course-detail-card {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    margin-bottom: 60px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.course-header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.course-icon-large {
    font-size: 56px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 20px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-title-section h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.course-subtitle {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 400;
}

.curriculum-section {
    margin: 40px 0;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.curriculum-section:hover {
    background: var(--bg-white);
    border-color: var(--accent-color);
}

.curriculum-section h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.curriculum-section h4 i {
    color: var(--accent-color);
}

.curriculum-section ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}

.curriculum-section li {
    padding: 10px 15px;
    padding-left: 35px;
    position: relative;
    color: var(--text-dark);
    background: var(--bg-white);
    border-radius: 12px;
    font-size: 16px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.curriculum-section li:hover {
    border-color: var(--border-color);
    transform: translateX(5px);
}

.curriculum-section li:before {
    content: "→";
    position: absolute;
    left: 15px;
    color: var(--accent-color);
    font-weight: 700;
}

.nested-list {
    grid-column: 1 / -1;
    margin-top: 15px;
    margin-left: 20px;
    display: block !important;
}

.course-outcome {
    background: var(--primary-color);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.course-outcome:before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    filter: blur(100px);
    opacity: 0.2;
    z-index: 0;
}

.course-outcome h3 {
    color: white;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.course-outcome p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--bg-white);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.feature-item i {
    color: var(--success-color);
    font-size: 24px;
}

.feature-item span {
    font-weight: 500;
    font-size: 17px;
}

/* Fees Section Refinement */
.fees-section {
    background: var(--bg-white);
    padding: 100px 0;
}

.fees-content {
    max-width: 900px;
    margin: 0 auto;
}

.admission-info {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    margin: 40px 0;
}

.admission-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.admission-info ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.admission-info li {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.admission-info li:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.admission-info i {
    font-size: 28px;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
}

.learning-options h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.option-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.option-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
}

.option-card i {
    font-size: 48px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    display: inline-block;
}

.option-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.option-card p {
    color: var(--text-light);
    font-size: 16px;
}

/* Footer Refinement */
.main-footer {
    background: var(--primary-color);
    color: white;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 25px;
}

.footer-col h4 {
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: 12px 0 0 12px;
    color: white;
    width: 100%;
}

.newsletter-form button {
    background: var(--accent-color);
    border: none;
    padding: 0 20px;
    border-radius: 0 12px 12px 0;
    color: white;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-form button:hover {
    background: #d97706;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Testimonials/Stats Section */
.testimonials-section {
    background: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 24px;
    color: var(--primary-color);
    min-width: 30px;
}

.contact-text h4 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-text a:hover {
    text-decoration: underline;
}

.training-centers-contact {
    margin: 30px 0;
}

.training-centers-contact h3 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.center-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.center-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.legal-info-contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.legal-info-contact h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* Contact Form */
.contact-form-section {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

.contact-form-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.required {
    color: var(--error-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Terms Page */
.terms-section {
    padding: 60px 0;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.terms-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.terms-content h2 {
    font-size: 28px;
    margin: 30px 0 20px;
    color: var(--text-dark);
}

.terms-list {
    margin: 20px 0;
    padding-left: 20px;
}

.terms-list li {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.contact-info-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-info-box h2,
.contact-info-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-details-box {
    margin: 20px 0;
}

.contact-details-box p {
    margin-bottom: 10px;
}

.training-center-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
}

.training-center-box h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Footer */
.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #d1d5db;
}

.footer-contact i {
    margin-right: 8px;
    color: var(--accent-color);
}

.training-center {
    margin-bottom: 20px;
}

.training-center strong {
    display: block;
    margin-bottom: 8px;
    color: white;
}

.training-center p {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.6;
}

.social-media {
    margin-bottom: 20px;
}

.social-link {
    display: inline-block;
    padding: 10px 20px;
    background: #25d366;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    margin-right: 10px;
    transition: background 0.3s;
}

.social-link:hover {
    background: #20ba5a;
}

.legal-info {
    font-size: 14px;
    color: #d1d5db;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.text-center {
    text-align: center;
}

/* Blog */
.blog-section {
    padding: 60px 0;
}

.blog-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 25px;
}

.blog-search {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-search input {
    min-width: 260px;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-title {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-card-title a {
    color: var(--text-dark);
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-meta {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 12px;
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 16px;
    flex: 1;
}

.blog-post {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-excerpt-big {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.blog-content h2,
.blog-content h3 {
    margin: 20px 0 10px;
}

.blog-content p {
    margin-bottom: 14px;
    line-height: 1.8;
}

.blog-content ul {
    margin: 10px 0 20px 22px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-info {
    color: var(--text-light);
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

/* Admin */
.admin-auth,
.admin-area {
    padding: 60px 0;
    background: var(--bg-light);
    min-height: 100vh;
}

.admin-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.admin-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-form textarea {
    resize: vertical;
}

.muted {
    color: var(--text-light);
}

.small {
    font-size: 13px;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    vertical-align: top;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.badge-success {
    background: #d1fae5;
    color: #065f46;
}

.badge-gray {
    background: #e5e7eb;
    color: #374151;
}

.btn-sm {
    padding: 8px 12px;
    font-size: 14px;
}

.danger {
    border-color: var(--error-color);
    color: var(--error-color);
}

.danger:hover {
    background: var(--error-color);
    color: white;
}

/* Main Content Layout */
.main-content {
    min-height: calc(100vh - 400px);
    /* Ensures footer doesn't jump up on short pages */
}

/* AI Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: inherit;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chatbot-toggle:hover {
    transform: scale(1.1);
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chatbot-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chatbot-header {
    background: var(--primary-color);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
    background: white;
    border-radius: 50%;
    padding: 2px;
}

.chatbot-header h3 {
    font-size: 16px;
    margin: 0;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
    opacity: 0.8;
}

.chatbot-close:hover {
    opacity: 1;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chatbot-message {
    display: flex;
    flex-direction: column;
    max-width: 85%;
}

.chatbot-message.user {
    align-self: flex-end;
}

.chatbot-message.bot {
    align-self: flex-start;
}

.message-bubble {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.5;
}

.user .message-bubble {
    background: var(--accent-color);
    color: white;
    border-top-right-radius: 4px;
}

.bot .message-bubble {
    background: white;
    color: var(--text-dark);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-top-left-radius: 4px;
    border: 1px solid #e2e8f0;
}

.chatbot-input-area {
    padding: 15px;
    background: white;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 10px;
}

.chatbot-input {
    flex: 1;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 14px;
    outline: none;
}

.chatbot-input:focus {
    border-color: var(--accent-color);
}

.chatbot-send {
    background: var(--accent-color);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-typing {
    padding: 12px 16px;
    background: white;
    border-radius: 18px;
    display: flex;
    gap: 4px;
    width: fit-content;
    border: 1px solid #e2e8f0;
}

.chatbot-typing span {
    width: 6px;
    height: 6px;
    background: #cbd5e1;
    border-radius: 50%;
    animation: typing 1s infinite ease-in-out;
}

.chatbot-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.chatbot-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@media (max-width: 480px) {
    .chatbot-window {
        width: 300px;
        height: 450px;
        right: -10px;
    }
}

.checkbox {
    display: flex;
    gap: 10px;
    align-items: center;
    user-select: none;
}

/* Student Dashboard */
.student-dashboard {
    padding: 40px 0 60px;
    background: radial-gradient(circle at top, rgba(56, 189, 248, 0.06), transparent 55%), #020617;
}

.student-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
}

.student-sidebar {
    background: #020617;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    padding: 18px 16px;
    color: #e5e7eb;
}

.student-welcome {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.avatar-circle {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #e0f2fe;
}

.welcome-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #9ca3af;
}

.welcome-name {
    font-size: 16px;
    font-weight: 600;
}

.student-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.student-nav li {
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13px;
    color: #9ca3af;
}

.student-nav li.active {
    background: rgba(56, 189, 248, 0.16);
    color: #e0f2fe;
}

.student-logout-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    color: #fca5a5;
    text-decoration: none;
}

.student-logout-link:hover {
    text-decoration: underline;
}

.student-main {
    background: rgba(15, 23, 42, 0.98);
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    padding: 18px 18px 22px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
}

.student-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.student-card h2 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #f9fafb;
}

.student-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.student-table th,
.student-table td {
    padding: 8px 10px;
    border-bottom: 1px solid rgba(31, 41, 55, 1);
    text-align: left;
    color: #e5e7eb;
}

.student-table th {
    color: #9ca3af;
}

.empty-cell {
    text-align: center;
    color: #6b7280;
    padding: 10px 0;
}

.badge-success {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    background: #22c55e33;
    color: #bbf7d0;
    font-size: 11px;
}

.badge-info {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    background: #38bdf833;
    color: #bae6fd;
    font-size: 11px;
}

@media (max-width: 900px) {
    .student-layout {
        grid-template-columns: 1fr;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.gallery-upload-section {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    margin-bottom: 50px;
    border: 1px solid var(--border-color);
}

.gallery-upload-section h2 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.upload-form {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.upload-form-group {
    flex: 1;
    min-width: 250px;
}

.upload-form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.upload-form-group input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    background: var(--bg-light);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.upload-form-group input[type="file"]:hover {
    border-color: var(--accent-color);
    background: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--card-shadow);
    background: var(--bg-white);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-delete {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-item-delete {
    opacity: 1;
}

.gallery-item-delete:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.empty-gallery {
    text-align: center;
    padding: 80px 20px;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    color: var(--text-light);
}

.empty-gallery i {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-gallery h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* Gallery Responsive */
@media (max-width: 768px) {
    .gallery-upload-section {
        padding: 25px;
    }

    .upload-form {
        flex-direction: column;
        align-items: stretch;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 15px;
    }
}

.checkbox input {
    width: auto;
    margin-top: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .course-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .hero-section {
        padding: 80px 0;
    }

    .course-detail-card {
        padding: 30px 20px;
    }

    .course-title-section h2 {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .top-bar-content {
        justify-content: center;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-title {
        font-size: 28px;
    }

    .logo-img {
        max-height: 50px;
    }

    .admission-info ul {
        grid-template-columns: 1fr;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--text-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Footer */
.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #d1d5db;
}

.footer-contact i {
    margin-right: 8px;
    color: var(--accent-color);
}

.training-center {
    margin-bottom: 20px;
}

.training-center strong {
    display: block;
    margin-bottom: 8px;
    color: white;
}

.training-center p {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.6;
}

.social-media {
    margin-bottom: 20px;
}

.social-link {
    display: inline-block;
    padding: 10px 20px;
    background: #25d366;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    margin-right: 10px;
    transition: background 0.3s;
}

.social-link:hover {
    background: #20ba5a;
}

.legal-info {
    font-size: 14px;
    color: #d1d5db;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.text-center {
    text-align: center;
    margin-left: 4px;
}

.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.auth-form input {
    width: 100%;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 14px;
    padding: 14px 16px 14px 44px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.auth-form input:focus {
    border-color: var(--accent-color);
    background: rgba(30, 41, 59, 0.8);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.auth-form input:focus+i {
    color: var(--accent-color);
}

.btn-auth {
    width: 100%;
    background: var(--accent-gradient);
    color: white;
    padding: 14px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
}

.btn-auth:active {
    transform: translateY(0);
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
}

.auth-footer a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.auth-footer a:hover {
    color: var(--accent-color);
}

.alert-auth {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Dashboard Enhancements */
.student-dashboard {
    padding: 30px 0 60px;
    background: #020617;
    min-height: 100vh;
}

.dashboard-header {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-title h1 {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
}

.dashboard-title p {
    color: #94a3b8;
    font-size: 14px;
}

.student-sidebar {
    height: fit-content;
    position: sticky;
    top: 100px;
}

.student-nav li {
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
}

.student-nav li:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.nav-icon {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.student-card {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    padding: 24px;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.student-card:hover {
    border-color: rgba(148, 163, 184, 0.4);
}

.student-card h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    margin-bottom: 20px;
    color: #f8fafc;
}

.student-card h2 i {
    color: var(--accent-color);
}

.student-table th {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 11px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.student-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.btn-action-pill {
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-view-pill {
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-view-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-download-pill {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.btn-download-pill:hover {
    background: rgba(59, 130, 246, 0.25);
    color: #93c5fd;
}

/* Admin */
.admin-auth,
.admin-area {
    padding: 60px 0;
    background: var(--bg-light);
    min-height: 100vh;
}

.admin-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.admin-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-form textarea {
    resize: vertical;
}

.muted {
    color: var(--text-light);
}

.small {
    font-size: 13px;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    vertical-align: top;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.badge-success {
    background: #d1fae5;
    color: #065f46;
}

.badge-gray {
    background: #e5e7eb;
    color: #374151;
}

.btn-sm {
    padding: 8px 12px;
    font-size: 14px;
}

.danger {
    border-color: var(--error-color);
    color: var(--error-color);
}

.danger:hover {
    background: var(--error-color);
    color: white;
}

.checkbox {
    display: flex;
    gap: 10px;
    align-items: center;
    user-select: none;
}

/* Sky Background & Twinkling Stars Animation */
.sky-card-bg {
    position: relative;
    overflow: hidden;
    color: black !important;
}

.sky-card-bg h3,
.sky-card-bg p,
.sky-card-bg li,
.sky-card-bg i {
    color: black !important;
    z-index: 2;
    position: relative;
}

.sky-card-bg .fee-badge {
    z-index: 2;
    position: relative;
}

.sky-card-bg .btn {
    z-index: 2;
    position: relative;
}

.star-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Star Objects */
.stars-1,
.stars-2,
.stars-3 {
    position: absolute;
    background: transparent;
    border-radius: 50%;
}

/* Small Stars */
.stars-1 {
    width: 2px;
    height: 2px;
    box-shadow:
        10px 10px #FFD700, 50px 80px #FFD700, 150px 30px #FFD700, 200px 120px #FFD700,
        300px 50px #FFD700, 420px 200px #FFD700, 350px 150px #FFD700, 80px 300px #FFD700,
        450px 60px #FFD700, 250px 250px #FFD700, 40px 180px #FFD700, 120px 220px #FFD700,
        380px 280px #FFD700, 220px 40px #FFD700, 180px 280px #FFD700, 500px 100px #FFD700,
        15px 150px #FFD700, 260px 45px #FFD700, 380px 15px #FFD700, 12px 250px #FFD700;
    animation: twinkle 4s infinite alternate;
}

/* Medium Stars */
.stars-2 {
    width: 3px;
    height: 3px;
    box-shadow:
        100px 50px #FDB813, 220px 150px #FDB813, 300px 20px #FDB813, 40px 250px #FDB813,
        450px 300px #FDB813, 350px 100px #FDB813, 150px 200px #FDB813, 500px 50px #FDB813,
        60px 20px #FDB813, 250px 80px #FDB813;
    animation: twinkle 6s infinite alternate-reverse;
}

/* Large Stars / Bright Spots */
.stars-3 {
    width: 4px;
    height: 4px;
    box-shadow:
        30px 100px #FFFACA, 400px 130px #FFFACA, 200px 280px #FFFACA, 120px 40px #FFFACA,
        500px 220px #FFFACA;
    animation: twinkle 3s infinite alternate;
}

@keyframes twinkle {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
        box-shadow:
            10px 10px 2px #FFD700, 50px 80px 2px #FFD700,
            /* Add glow effect on twinkle */
            150px 30px 2px #FFD700, 200px 120px 2px #FFD700;
    }

    100% {
        opacity: 0.4;
        transform: scale(0.9);
    }
}
/* Success Blueprint Section Styling */
.success-blueprint-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.section-badge-wrapper {
    display: flex;
    justify-content: center;
}

.section-badge {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    display: inline-block;
    margin-bottom: 10px;
}

.blueprint-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.blueprint-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    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.8);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blueprint-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -5px rgba(245, 158, 11, 0.15);
    background: white;
}

.blueprint-icon-box {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fff 0%, #fef3c7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.blueprint-card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-gradient);
    color: white;
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    z-index: 1;
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.blueprint-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.blueprint-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Card Border Gradient Animation */
.card-border-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.blueprint-card:hover .card-border-gradient {
    transform: scaleX(1);
}

/* Glow Effect */
.card-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blueprint-card:hover .card-glow {
    opacity: 1;
}

/* Flexible Payment Options Redesign */
.payment-modes {
    margin-top: 100px;
    position: relative;
    padding: 60px 0;
}

.payment-modes::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.payment-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -5px rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
}

.payment-card:hover::before {
    opacity: 1;
}

.payment-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.payment-card:hover .payment-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.2);
}

.payment-icon {
    font-size: 32px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.payment-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.payment-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* Floating Animation for Icons */
.floating-icon {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.delay-1 { animation-delay: 0s; }
.delay-2 { animation-delay: 1s; }
.delay-3 { animation-delay: 2s; }
