/* Global font size reduction - proportional scaling */
:root {
    --font-scale: 0.85; /* Reduce all fonts by 15% */
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #0a0a0a;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: calc(1.3rem * var(--font-scale));
    font-weight: 700;
    color: white;
}

.logo-text .accent {
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffd700;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta-btn {
    background: linear-gradient(45deg, #ff6b6b, #ffd700);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        gap: 20px;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-cta-btn {
        margin-top: 10px;
    }
}

/* Advanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.3); }
    50% { box-shadow: 0 0 40px rgba(102, 126, 234, 0.6); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    0%, 50% { border-color: transparent; }
    51%, 100% { border-color: #ffd700; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Glass Morphism Effect */
.glass-morphism {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.glass-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 20px;
    transition: all 0.3s ease;
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slide-up {
    animation: fadeInUp 0.8s ease-out;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-text.revealed {
    opacity: 1;
    transform: translateY(0);
}

.pulse {
    animation: pulse 2s infinite;
}

/* Magnetic Button Effect */
.magnetic-btn {
    position: relative;
    transition: transform 0.3s ease;
}

.magnetic-btn:hover {
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.3) 0%, transparent 50%);
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
        rgba(102, 126, 234, 0.1) 0%,
        transparent 25%,
        transparent 75%,
        rgba(255, 107, 107, 0.1) 100%);
}

/* Geometric Shapes */
.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    border-radius: 30%;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
    transform: rotate(45deg);
    border-radius: 20%;
}

.shape-4 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
    border-radius: 0;
    transform: rotate(45deg);
}

.shape-5 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 60%;
    animation-delay: 3s;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.shape-6 {
    width: 90px;
    height: 90px;
    bottom: 30%;
    right: 40%;
    animation-delay: 5s;
    border-radius: 20%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 107, 0.1));
}

/* Floating Icons */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    animation: float 8s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-icon-1 {
    top: 15%;
    left: 80%;
    animation-delay: 0s;
}

.floating-icon-2 {
    top: 70%;
    left: 10%;
    animation-delay: 2s;
}

.floating-icon-3 {
    top: 40%;
    right: 10%;
    animation-delay: 4s;
}

.floating-icon-4 {
    bottom: 30%;
    left: 70%;
    animation-delay: 6s;
}

.floating-icon-5 {
    top: 25%;
    left: 25%;
    animation-delay: 8s;
}

.floating-icon-6 {
    bottom: 40%;
    right: 25%;
    animation-delay: 10s;
}

/* Particle Canvas */
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    overflow: hidden;
    color: rgba(255, 255, 255, 0.95);
}

.urgency-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
    animation: pulse 2s infinite;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    border-radius: 50px;
    animation: glow 3s ease-in-out infinite;
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.title-line-1 {
    display: block;
    font-size: 0.6em;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 10px;
}

.title-line-2 {
    display: block;
    font-size: 1em;
    margin-bottom: 10px;
}

.title-line-3 {
    display: block;
    font-size: 0.8em;
    font-weight: 600;
}

.highlight-text {
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(45deg, #ffd700, #ff6b6b, #667eea);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.typing-effect {
    position: relative;
    overflow: hidden;
    border-right: 3px solid #ffd700;
    white-space: nowrap;
    animation: typing 2s steps(10, end), blink 1s step-end infinite;
}

.hero-subtitle {
    font-size: calc(1rem * var(--font-scale));
    margin-bottom: 25px;
    opacity: 0.95;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.feature-item i {
    color: #4ade80;
    font-size: 1rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stat {
    position: relative;
    text-align: center;
    padding: 20px 15px;
    min-width: 150px;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffd700;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.stat-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ff6b6b);
    border-radius: 2px;
    width: 0%;
    transition: width 2s ease-in-out;
}

.counter {
    transition: all 0.5s ease;
}

/* Hero Countdown Timer */
.hero-countdown {
    margin: 30px 0 40px 0;
    text-align: center;
}

.countdown-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    max-width: 600px;
    margin: 0 auto;
}

.countdown-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-unit {
    text-align: center;
    min-width: 80px;
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    line-height: 1;
}

.countdown-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    position: relative;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: calc(0.9rem * var(--font-scale));
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ffd700, #667eea);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    animation: gradientShift 3s ease-in-out infinite;
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff6b6b, #ffd700);
    transition: opacity 0.3s ease;
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    text-align: center;
    pointer-events: auto;
    /* Ensure it doesn't interfere with other sections */
    margin-bottom: 0;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto 10px;
}

.scroll-arrow:hover {
    border-color: #ffd700;
    color: #ffd700;
    transform: scale(1.1);
}

.scroll-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Value Proposition Section */
.value-proposition {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.value-proposition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.3;
}

.value-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.value-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.value-text p {
    font-size: 1rem;
    margin-bottom: 35px;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.95);
}

.value-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.value-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.value-feature i {
    font-size: 1.5rem;
    color: #ffd700;
    margin-top: 5px;
    flex-shrink: 0;
}

.value-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.value-feature p {
    opacity: 0.9;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.countdown-timer {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.timer-label {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.timer-unit {
    text-align: center;
}

.timer-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.timer-label-small {
    font-size: 0.8rem;
    opacity: 0.7;
}

.value-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.floating-card:hover {
    transform: scale(1.05);
}

.floating-card i {
    font-size: 2rem;
    color: #ffd700;
}

.floating-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 10%;
    right: 20%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    right: 10%;
    animation-delay: 4s;
}

.central-orb {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 3s infinite;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
}

.orb-inner {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.orb-inner i {
    font-size: 2rem;
    color: white;
}

/* Section Styles */
section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: calc(1.9rem * var(--font-scale));
    font-weight: 700;
    margin-bottom: 16px;
    color: #2d3748;
}

.section-header p {
    font-size: 0.9rem;
    color: #718096;
    max-width: 650px;
    margin: 0 auto;
}

/* Learning Benefits */
.learning-benefits {
    padding: 80px 0;
    background: #f8fafc;
}

/* Fix text visibility in learning benefits section */
.learning-benefits .section-header h2 {
    color: #1a202c !important;
}

.learning-benefits .section-header p {
    color: #4a5568 !important;
}

.learning-benefits .section-badge {
    background: rgba(102, 126, 234, 0.1) !important;
    color: #667eea !important;
    border: 1px solid rgba(102, 126, 234, 0.3) !important;
}

.learning-benefits .section-badge i {
    color: #667eea !important;
}

.learning-benefits .section-cta-content h3 {
    color: #1a202c !important;
}

.learning-benefits .section-cta-content p {
    color: #4a5568 !important;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d3748;
}

.benefit-card p {
    color: #718096;
    line-height: 1.6;
}

/* Program Overview */
.program-overview {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: white;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 0px;
}

.program-overview .section-header h2 {
    color: white;
}

.program-overview .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.section-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.95);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.divider-icon {
    color: #ffd700;
    font-size: 1.2rem;
}

.program-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 1200px) {
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .program-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.program-card {
    position: relative;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.program-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Unique border colors for each card */
.program-card:nth-child(1) {
    border: 1px solid rgba(79, 172, 254, 0.3);
    box-shadow: 0 8px 32px rgba(79, 172, 254, 0.1);
}

.program-card:nth-child(2) {
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.1);
}

.program-card:nth-child(3) {
    border: 1px solid rgba(0, 210, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 210, 255, 0.1);
}

.program-card:nth-child(4) {
    border: 1px solid rgba(210, 153, 194, 0.3);
    box-shadow: 0 8px 32px rgba(210, 153, 194, 0.1);
}

/* Enhanced hover effects for each card */
.program-card:nth-child(1):hover {
    box-shadow: 0 20px 60px rgba(79, 172, 254, 0.2);
    border-color: rgba(79, 172, 254, 0.5);
}

.program-card:nth-child(2):hover {
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.program-card:nth-child(3):hover {
    box-shadow: 0 20px 60px rgba(0, 210, 255, 0.2);
    border-color: rgba(0, 210, 255, 0.5);
}

.program-card:nth-child(4):hover {
    box-shadow: 0 20px 60px rgba(210, 153, 194, 0.2);
    border-color: rgba(210, 153, 194, 0.5);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.program-card:hover .card-glow {
    opacity: 1;
}

.card-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: white;
    z-index: 2;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    animation: gradientShift 4s ease-in-out infinite;
}

/* Unique gradients for each card */
.program-card:nth-child(1) .icon-bg {
    background: linear-gradient(45deg, #667eea, #764ba2, #4facfe);
    background-size: 200% 200%;
}

.program-card:nth-child(2) .icon-bg {
    background: linear-gradient(45deg, #ff6b6b, #ffd700, #ff8a80);
    background-size: 200% 200%;
}

.program-card:nth-child(3) .icon-bg {
    background: linear-gradient(45deg, #4ecdc4, #44a08d, #00d2ff);
    background-size: 200% 200%;
}

.program-card:nth-child(4) .icon-bg {
    background: linear-gradient(45deg, #a8edea, #fed6e3, #d299c2);
    background-size: 200% 200%;
}

.icon-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.icon-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: iconParticle 3s ease-in-out infinite;
}

/* Unique particle colors for each card */
.program-card:nth-child(1) .icon-particles span {
    background: #4facfe;
}

.program-card:nth-child(2) .icon-particles span {
    background: #ffd700;
}

.program-card:nth-child(3) .icon-particles span {
    background: #00d2ff;
}

.program-card:nth-child(4) .icon-particles span {
    background: #d299c2;
}

.icon-particles span:nth-child(1) {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.icon-particles span:nth-child(2) {
    top: 15%;
    right: 15%;
    animation-delay: 1s;
}

.icon-particles span:nth-child(3) {
    bottom: 15%;
    left: 50%;
    animation-delay: 2s;
}

.icon-particles span:nth-child(4) {
    top: 50%;
    left: 85%;
    animation-delay: 0.5s;
}

.icon-particles span:nth-child(5) {
    bottom: 15%;
    right: 15%;
    animation-delay: 1.5s;
}

@keyframes iconParticle {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

/* Icon decorative elements */
.icon-decoration {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rotate 8s linear infinite;
}

.icon-decoration::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Unique icon decorations for each card */
.program-card:nth-child(1) .icon-decoration {
    border-color: #4facfe;
}

.program-card:nth-child(1) .icon-decoration::before {
    background: #4facfe;
}

.program-card:nth-child(2) .icon-decoration {
    border-color: #ffd700;
    animation-direction: reverse;
}

.program-card:nth-child(3) .icon-decoration {
    border-color: #00d2ff;
    top: -10px;
    left: -10px;
    right: auto;
}

.program-card:nth-child(3) .icon-decoration::before {
    background: #00d2ff;
}

.program-card:nth-child(4) .icon-decoration {
    border-color: #d299c2;
    animation-direction: reverse;
    top: auto;
    bottom: -10px;
}

.program-card:nth-child(4) .icon-decoration::before {
    background: #d299c2;
}

.program-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

.program-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
}

.card-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.card-duration i {
    color: #ffd700;
}

.card-tech-stack {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.card-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

/* Unique hover effects for each card */
.program-card:nth-child(1) .card-hover-effect {
    background: linear-gradient(45deg, transparent, rgba(79, 172, 254, 0.1), transparent);
}

.program-card:nth-child(2) .card-hover-effect {
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
}

.program-card:nth-child(3) .card-hover-effect {
    background: linear-gradient(45deg, transparent, rgba(0, 210, 255, 0.1), transparent);
}

.program-card:nth-child(4) .card-hover-effect {
    background: linear-gradient(45deg, transparent, rgba(210, 153, 194, 0.1), transparent);
}

.program-card:hover .card-hover-effect {
    transform: translateX(100%);
}

/* Card content wrapper */
.card-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Enhanced tech tags with unique colors */
.program-card:nth-child(1) .tech-tag {
    background: rgba(79, 172, 254, 0.2);
    border: 1px solid rgba(79, 172, 254, 0.3);
    color: #4facfe;
}

.program-card:nth-child(2) .tech-tag {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
}

.program-card:nth-child(3) .tech-tag {
    background: rgba(0, 210, 255, 0.2);
    border: 1px solid rgba(0, 210, 255, 0.3);
    color: #00d2ff;
}

.program-card:nth-child(4) .tech-tag {
    background: rgba(210, 153, 194, 0.2);
    border: 1px solid rgba(210, 153, 194, 0.3);
    color: #d299c2;
}

/* Accomplishments Grid */
.accomplishments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.accomplishment-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.accomplishment-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.accomplishment-header {
    padding: 30px 30px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.accomplishment-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.accomplishment-icon i {
    font-size: 1.8rem;
    color: white;
    z-index: 2;
    position: relative;
}

.accomplishment-badge {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.accomplishment-content {
    padding: 30px;
}

.accomplishment-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.accomplishment-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.accomplishment-features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.feature-item i {
    color: #48bb78;
    font-size: 0.8rem;
    width: 16px;
}

.tech-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Section CTAs */
.section-cta {
    text-align: center;
    margin-top: 0px;
    padding: 50px 0;
}

.section-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Card number indicators */
.card-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 3;
}

.program-card:nth-child(1) .card-number {
    background: rgba(79, 172, 254, 0.3);
    color: #4facfe;
    border: 1px solid rgba(79, 172, 254, 0.5);
}

.program-card:nth-child(2) .card-number {
    background: rgba(255, 215, 0, 0.3);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.5);
}

.program-card:nth-child(3) .card-number {
    background: rgba(0, 210, 255, 0.3);
    color: #00d2ff;
    border: 1px solid rgba(0, 210, 255, 0.5);
}

.program-card:nth-child(4) .card-number {
    background: rgba(210, 153, 194, 0.3);
    color: #d299c2;
    border: 1px solid rgba(210, 153, 194, 0.5);
}

/* Curriculum Section */
.curriculum-section {
    padding: 50px 0px 0px 0px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

/* Fix text visibility in curriculum section */
.curriculum-section .section-header h2 {
    color: #1a202c !important;
}

.curriculum-section .section-header p {
    color: #4a5568 !important;
}

.curriculum-section .section-badge {
    background: rgba(102, 126, 234, 0.1) !important;
    color: #667eea !important;
    border: 1px solid rgba(102, 126, 234, 0.3) !important;
}

.curriculum-section .section-badge i {
    color: #667eea !important;
}

.curriculum-section .section-cta-content h3 {
    color: #1a202c !important;
}

.curriculum-section .section-cta-content p {
    color: #4a5568 !important;
}

/* Ensure all text elements in curriculum section are visible */
.curriculum-section * {
    color: #1a202c;
}

.curriculum-section p {
    color: #4a5568;
}

/* Override for elements that should remain white text on colored backgrounds */
.curriculum-section .accordion-header,
.curriculum-section .accordion-header *,
.curriculum-section .week-deliverable,
.curriculum-section .week-deliverable *,
.curriculum-section .objective-icon,
.curriculum-section .objective-icon * {
    color: white !important;
}

/* Curriculum Accordion */
.curriculum-accordion {
    max-width: 900px;
    margin: 30px auto 0;
}

.accordion-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 30px;
    cursor: pointer;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.accordion-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.accordion-header:hover::before {
    left: 100%;
}

.week-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-right: 25px;
    min-width: 80px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.week-info {
    flex: 1;
}

.week-info h3 {
    font-size: calc(1.3rem * var(--font-scale));
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.week-duration {
    font-size: calc(0.85rem * var(--font-scale));
    opacity: 0.9;
    margin: 0;
}

.accordion-toggle {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    background: white;
    opacity: 0;
    visibility: hidden;
}

.accordion-item.active .accordion-content {
    max-height: 1500px;
    padding: 40px 30px;
    opacity: 1;
    visibility: visible;
    background: #ffffff !important;
    border-top: 1px solid #e2e8f0;
}

.week-description {
    margin-bottom: 30px;
}

.week-description p {
    font-size: calc(1rem * var(--font-scale));
    line-height: 1.7;
    color: #1a202c !important;
    font-weight: 600;
    margin-bottom: 0;
}

.learning-objectives h4 {
    font-size: calc(1.1rem * var(--font-scale));
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 25px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.objectives-list {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.objective-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: #ffffff;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.objective-item:hover {
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.objective-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.objective-icon i {
    color: white;
    font-size: 1.3rem;
}

.objective-content h5 {
    font-size: calc(1.05rem * var(--font-scale));
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.objective-content p {
    font-size: calc(0.9rem * var(--font-scale));
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

.week-deliverable {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: #48bb78;
    border-radius: 15px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.week-deliverable i {
    font-size: 1.4rem;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.week-content-container {
    position: relative;
    min-height: 600px;
}

.week-content {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeIn 0.5s ease-in-out;
}

.week-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.week-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.week-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.week-duration {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 500;
}

/* These styles are for a different section - removing to avoid conflicts */

/* Conflicting styles removed - using main accordion styles instead */

.objective-icon {
    width: 45px;
    height: 45px;
    background: #48bb78;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(72, 187, 120, 0.3);
}

.objective-icon i {
    color: white;
    font-size: 1.1rem;
}

/* Conflicting white text styles removed - using main accordion styles */

.week-deliverable {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
       background: #48bb78;
    border-radius: 15px;
    border: 2px solid rgba(72, 187, 120, 0.5);
    color: white;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.2);
}

.week-deliverable i {
    color: #48bb78;
    font-size: 1.2rem;
}

/* Selection Process */

.selection-process .section-badge {
    background: rgba(102, 126, 234, 0.1) !important;
    color: #667eea !important;
    border: 1px solid rgba(102, 126, 234, 0.3) !important;
}

.selection-process .section-badge i {
    color: #667eea !important;
}

.selection-process {
    position: relative;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    overflow: hidden;
    padding-bottom: 0px;
}

.neural-network-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.neural-svg {
    width: 100%;
    height: 100%;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.timeline-progress {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, #667eea, #764ba2, #ffd700);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.progress-line {
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, #ffd700, #ff6b6b);
    border-radius: 2px;
    animation: progressFill 4s ease-in-out infinite;
}

@keyframes progressFill {
    0%, 100% { height: 0%; }
    50% { height: 100%; }
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    padding: 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    padding-right: 40px;
    padding-left: 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    padding-left: 40px;
    padding-right: 0;
}

.timeline-number {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.number-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 0s infinite;
}

.number-pulse {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid #ffd700;
    border-radius: 50%;
    animation: ripple 3s infinite;
}

@keyframes ripple {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

.timeline-content {
    flex: 1;
    position: relative;
}

.timeline-icon {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2d3748;
}

.timeline-content p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 15px;
}

.timeline-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.timeline-item:nth-child(even) .timeline-stats {
    justify-content: flex-end;
}

.stat-pill {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.timeline-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    opacity: 0.1;
}

.decoration-circle,
.decoration-triangle,
.decoration-square,
.decoration-hexagon,
.decoration-star {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.decoration-circle {
    border-radius: 50%;
}

.decoration-triangle {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.decoration-square {
    transform: rotate(45deg);
}

.decoration-hexagon {
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
}

.decoration-star {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* Success Stories */
.success-stories {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

/* Fix text visibility in success stories section */
.success-stories .section-header h2 {
    color: #1a202c !important;
}

.success-stories .section-header p {
    color: #4a5568 !important;
}

.success-stories .section-badge {
    background: rgba(102, 126, 234, 0.1) !important;
    color: #667eea !important;
    border: 1px solid rgba(102, 126, 234, 0.3) !important;
}

.success-stories .section-badge i {
    color: #667eea !important;
}

.success-stories .section-cta-content h3 {
    color: #1a202c !important;
}

.success-stories .section-cta-content p {
    color: #4a5568 !important;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}

.quote-icon {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #667eea;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 8px;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: #ffd700;
    font-size: 0.9rem;
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    display: block;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
}

/* Training Location */
.training-location {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

/* Fix text visibility in training location section */
.training-location .section-header h2 {
    color: #1a202c !important;
}

.training-location .section-header p {
    color: #4a5568 !important;
}

.training-location .section-badge {
    background: rgba(102, 126, 234, 0.1) !important;
    color: #667eea !important;
    border: 1px solid rgba(102, 126, 234, 0.3) !important;
}

.training-location .section-badge i {
    color: #667eea !important;
}

.training-location .section-cta-content h3 {
    color: #1a202c !important;
}

.training-location .section-cta-content p {
    color: #4a5568 !important;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-card,
.schedule-card,
.facilities-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.location-card:hover,
.schedule-card:hover,
.facilities-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.location-icon,
.schedule-icon,
.facilities-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.location-info h3,
.schedule-info h3,
.facilities-info h3 {
    font-size: calc(1.1rem * var(--font-scale));
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.location-info p,
.schedule-info p {
    color: #4a5568;
    margin-bottom: 5px;
    font-size: calc(0.9rem * var(--font-scale));
}

.location-address {
    color: #718096 !important;
    font-size: 0.9rem !important;
}

.schedule-time {
    font-weight: 600;
    color: #667eea !important;
    font-size: 1.1rem !important;
}

.schedule-days {
    color: #4a5568 !important;
}

.facility-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4a5568;
    font-size: 0.9rem;
}

.facility-item i {
    color: #48bb78;
    font-size: 1rem;
}

.location-visual {
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    color: white;
}

.location-pin {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

.location-label h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.location-label p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Support Services */
.support-services {
    background: #f7fafc;
    padding: 50px 0;
}

/* Fix text visibility in support services section */
.support-services .section-header h2 {
    color: #1a202c !important;
}

.support-services .section-header p {
    color: #4a5568 !important;
}

.support-services .section-badge {
    background: rgba(102, 126, 234, 0.1) !important;
    color: #667eea !important;
    border: 1px solid rgba(102, 126, 234, 0.3) !important;
}

.support-services .section-badge i {
    color: #667eea !important;
}

.support-services .section-cta-content h3 {
    color: #1a202c !important;
}

.support-services .section-cta-content p {
    color: #4a5568 !important;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2d3748;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.service-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.service-features span {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

/* CTA Section */
.cta-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section .section-header h2,
.cta-section h2 {
    color: white;
}

.cta-section .section-header p,
.cta-section p {
    color: rgba(255, 255, 255, 0.8);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 107, 107, 0.2) 0%, transparent 50%);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-feature i {
    color: #4ade80;
    font-size: 1.2rem;
}

.cta-feature span {
    font-weight: 500;
}

.cta-action {
    text-align: center;
}

.mega-btn {
    font-size: 1.2rem;
    padding: 20px 40px;
    min-width: 300px;
}

.cta-note {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Quiz Section */
.quiz-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}

.quiz-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.quiz-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 100px 100px;
    animation: float 20s linear infinite;
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.quiz-header {
    text-align: center;
    margin-bottom: 50px;
}

.quiz-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.95);
}

.quiz-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: calc(2.4rem * var(--font-scale));
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.quiz-header p {
    font-size: calc(1.05rem * var(--font-scale));
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.quiz-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.quiz-stat i {
    color: #ffd700;
}

.quiz-form {
    background: rgba(255, 255, 255, 0.15);
    padding: 50px;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.footer-links li {
        display: flex;
    align-items: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px ;
    margin-bottom: 0px;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: calc(0.9rem * var(--font-scale));
    color: rgba(255, 255, 255, 0.95);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    padding-left: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: calc(0.9rem * var(--font-scale));
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 70%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    pointer-events: none;
}

.textarea-icon {
    top: 45px;
    transform: none;
}

.checkbox-group {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.5;
    padding: 8px 0;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.checkbox-label:hover .checkmark {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #ffd700;
    border-color: #ffd700;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0a0a0a;
    font-weight: bold;
    font-size: 14px;
}

.checkbox-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.checkbox-grid .checkbox-label {
    margin-bottom: 0;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    min-height: 60px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.checkbox-grid .checkbox-label:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.checkbox-grid .checkbox-label input[type="checkbox"]:checked {
    background: #ffd700;
}

.checkbox-grid .checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #ffd700;
    border-color: #ffd700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.checkbox-grid .checkbox-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

/* Thank You Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s ease;
}

.popup-overlay.show .popup-container {
    transform: scale(1) translateY(0);
}

.popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2.5rem;
}

.popup-content h2 {
    color: #2d3748;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 700;
}

.popup-content p {
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.popup-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.popup-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #4a5568;
    font-size: 0.95rem;
}

.popup-feature i {
    color: #48bb78;
    font-size: 1.1rem;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: #4ade80;
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.footer-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    background-size: 50px 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 300px;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-link:hover {
    background: linear-gradient(45deg, #667eea, #764ba2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-info {
    list-style: none;
}

.footer-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-info i {
    color: #667eea;
    width: 16px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffd700;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }

    .value-content {
        gap: 40px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .success-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .value-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .location-details {
   
    min-width: 340px;
    max-width: min-content;
}
    .hero {
        padding-top: 80px;
        min-height: 85vh;
        padding-bottom: 40px;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-bottom: 20px;
    }

    .badge, .urgency-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }

    .feature-item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .hero-stats {
        gap: 15px;
        margin-bottom: 20px;
    }

    .stat {
        min-width: 90% !important;
        padding: 15px 12px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-countdown {
        margin: 20px 0 30px 0;
    }

    .countdown-container {
        padding: 20px 15px;
    }

    .countdown-label {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .countdown-display {
        gap: 15px;
    }

    .countdown-unit {
        min-width: 60px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-text {
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        font-size: 0.95rem;
        padding: 14px 24px;
    }

    .value-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .value-text h2 {
        font-size: 1.8rem;
    }

    .value-text p {
        font-size: 0.95rem;
    }

    .countdown-timer {
        padding: 15px;
    }

    .timer-display {
        gap: 15px;
    }

    .timer-number {
        font-size: 1.5rem;
    }

    .timer-label-small {
        font-size: 0.7rem;
    }

    .program-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .program-card {
        padding: 25px 20px;
    }

    .program-card h3 {
        font-size: 1.2rem;
    }

    .program-card p {
        font-size: 0.9rem;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .timeline-number {
        margin-bottom: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .timeline-item::after {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .quiz-form {
        padding: 25px 15px;
        border-radius: 20px;
    }

    .quiz-header h2 {
        font-size: calc(1.8rem * var(--font-scale));
    }

    .quiz-stats {
        flex-direction: column;
        gap: 12px;
    }

    .quiz-stat {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .section-header h2 {
        font-size: calc(1.6rem * var(--font-scale));
    }

    .section-header p {
        font-size: calc(0.85rem * var(--font-scale));
    }

    /* Accomplishments responsive */
    .accomplishments-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
.accomplishment-badge {

    margin: 0px 0px;
}
.accomplishment-icon i {
    font-size: 1.2rem;
}
    .accomplishment-header {
        padding: 15px 20px 15px;
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
    }

    .accomplishment-content {
        padding: 25px 20px;
    }

    .accomplishment-content h3 {
        font-size: 1.4rem;
    }

    .accomplishment-features {
        margin-bottom: 20px;
    }

    /* Curriculum accordion responsive */
    .curriculum-accordion {
        margin-top: 40px;
    }

    .accordion-header {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .week-badge {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .week-info h3 {
        font-size: 1.3rem;
    }

    .accordion-content {
        padding: 0 20px;
    }

    .accordion-item.active .accordion-content {
        padding: 25px 20px;
    }

    .objectives-list {
        gap: 15px;
    }

    .objective-item {
        padding: 15px;
    }

    .week-content {
        padding: 30px 20px;
    }

    .week-header h3 {
        font-size: 1.5rem;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .objective-item {
        padding: 15px;
    }

    .week-deliverable {
        padding: 15px;
        font-size: 0.9rem;
    }

    .section-cta {
        margin-top: 0px;
        padding: 30px 0;
    }

    .section-cta-content {
        padding: 0 20px;
    }

    .section-cta-content h3 {
        font-size: 1.5rem;
    }

    .section-cta-content p {
        font-size: 1rem;
    }

    /* Training location responsive */
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .facility-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .map-placeholder {
        height: 300px;
    }

    .location-card,
    .schedule-card,
    .facilities-card {
        padding: 25px 20px;
    }

    .location-icon,
    .schedule-icon,
    .facilities-icon {
        width: 50px;
        height: 50px;
        font-size: calc(1.3rem * var(--font-scale));
    }

    /* Mobile accordion styles */
    .accordion-header {
        padding: 20px 15px;
    }

    .week-badge {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .week-info h3 {
        font-size: 1.2rem;
    }

    .week-duration {
        font-size: 0.85rem;
    }

    .accordion-content {
        padding: 0 15px;
    }

    .accordion-item.active .accordion-content {
        padding: 20px 15px;
    }

    .objective-item {
        padding: 12px;
        flex-direction: row;
        text-align: center;
        gap: 10px;
    }
    .objective-content h5 {
    font-size: calc(0.9rem * var(--font-scale));
    font-weight: 700;
    color: rgb(26, 32, 44);
    margin-bottom: 2px;
    text-align: start;
}
.objective-content p {
    font-size: calc(0.8rem * var(--font-scale));
    color: #4a5568;
    margin: 0;
    line-height: 1.2;
    font-weight: 500;
    text-align: start;
}

    .week-deliverable {
        padding: 15px;
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .checkbox-grid .checkbox-label {
        padding: 14px 16px;
        min-height: 55px;
        gap: 12px;
    }

    .checkbox-grid .checkbox-text {
        font-size: 0.9rem;
    }

    .checkmark {
        width: 22px;
        height: 22px;
    }

    .popup-container {
        padding: 30px 20px;
        margin: 20px;
    }

    .popup-content h2 {
        font-size: 1.5rem;
    }

    .popup-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero {
        padding-top: 70px;
        padding-bottom: 30px;
    }

    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .badge, .urgency-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .feature-item {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .value-text h2 {
        font-size: 1.6rem;
    }

    .value-text p {
        font-size: 0.9rem;
    }

    .quiz-header h2 {
        font-size: 1.8rem;
    }

    .quiz-header p {
        font-size: 0.95rem;
    }

    .cta-text h2 {
        font-size: 1.6rem;
    }

    .btn-primary, .btn-secondary, .mega-btn {
        min-width: 220px;
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    .countdown-timer {
        padding: 12px;
    }

    .timer-display {
        gap: 10px;
    }

    .timer-number {
        font-size: 1.2rem;
    }

    .timer-label-small {
        font-size: 0.65rem;
    }

    .program-card {
        padding: 20px 15px;
    }

    .program-card h3 {
        font-size: 1.1rem;
    }

    .program-card p {
        font-size: 0.85rem;
    }

    .tech-tag {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .timeline-item {
        padding: 15px;
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .quiz-form {
        padding: 20px 12px;
        border-radius: 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        padding-left: 40px;
        font-size: 0.9rem;
    }

    .input-icon {
        left: 15px;
        font-size: 0.9rem;
    }

    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-content {
        gap: 20px;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-info li,
    .footer-links a {
        font-size: 0.85rem;
    }
}

/* Missing Animation Classes */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in.delay-1 {
    animation-delay: 0.2s;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.animate-slide-up.delay-1 {
    animation-delay: 0.2s;
}

.animate-slide-up.delay-2 {
    animation-delay: 0.4s;
}

.animate-slide-up.delay-3 {
    animation-delay: 0.6s;
}

.animate-slide-up.delay-4 {
    animation-delay: 0.8s;
}

.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.reveal-text.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text.delay-1 {
    transition-delay: 0.2s;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Floating Particles */
.floating-particle {
    pointer-events: none;
}

/* Canvas Styling */
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Progress Bar Animations */
.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: inherit;
    transition: width 1.5s ease;
}

/* Accordion Content Animation - Enhanced (consolidated with main styles) */

/* Ensure all accordion text is visible */
.accordion-content * {
    color: #1a202c !important;
}

.accordion-content h1,
.accordion-content h2,
.accordion-content h3,
.accordion-content h4,
.accordion-content h5,
.accordion-content h6 {
    color: #1a202c !important;
}

.accordion-content p {
    color: #4a5568 !important;
}

.accordion-content .objective-content h5 {
    color: #1a202c !important;
}

.accordion-content .objective-content p {
    color: #4a5568 !important;
}

/* Ensure week deliverable text is visible */
.week-deliverable {
    color: white !important;
}

.week-deliverable * {
    color: white !important;
}

/* Debug styles to ensure visibility - can be removed later */
.accordion-content {
    background: #ffffff !important;
}

.accordion-item.active .accordion-content {
    background: #ffffff !important;
}

/* Force text visibility in all accordion elements */
.accordion-content,
.accordion-content div,
.accordion-content span,
.accordion-content p,
.accordion-content h1,
.accordion-content h2,
.accordion-content h3,
.accordion-content h4,
.accordion-content h5,
.accordion-content h6 {
    color: #1a202c !important;
}

/* Exception for week deliverable which should be white text on colored background */
.week-deliverable,
.week-deliverable * {
    color: white !important;
}

/* Glass Morphism Effect */
.glass-morphism {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Magnetic Button Effect */
.magnetic-btn {
    transition: transform 0.2s ease;
}

/* Tilt Effect */
[data-tilt] {
    transition: transform 0.3s ease;
}

/* Mobile Menu Fixes */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex !important;
    }
}

/* Countdown Expired Style */
.countdown-expired {
    font-size: 1.5rem;
    color: #ffd700;
    font-weight: bold;
    text-align: center;
    padding: 20px;
}

/* Additional fixes for display issues */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat {
    min-width: 150px;
    padding: 20px 15px;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-unit {
    min-width: 80px;
    text-align: center;
}

/* Fix for accomplishment cards */
.accomplishment-card {
    height: auto;
    min-height: 500px;
}

/* Ensure proper spacing */
.section-header {
    margin-bottom: 30px;
}

/* Fix button alignment */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Improve form layout */
.quiz-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Fix mobile navigation */
@media (max-width: 768px) {
    .hero-stats {
        gap: 15px;
        margin: 30px 0;
    }

    .stat {
        min-width: 120px;
        padding: 15px 10px;
    }

    .countdown-display {
        gap: 15px;
    }

    .countdown-unit {
        min-width: 60px;
    }

    .accomplishment-card {
        min-height: auto;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* COMPREHENSIVE TEXT VISIBILITY FIX - Final Safety Net */
/* Ensure no white text appears on light background sections */
.training-location .section-header,
.training-location .section-header *,
.success-stories .section-header,
.success-stories .section-header *,
.learning-benefits .section-header,
.learning-benefits .section-header *,
.support-services .section-header,
.support-services .section-header * {
    color: #1a202c !important;
}

/* Ensure section badges are always visible on light backgrounds */
.training-location .section-badge,
.success-stories .section-badge,
.learning-benefits .section-badge,
.support-services .section-badge {
    background: rgba(102, 126, 234, 0.1) !important;
    color: #667eea !important;
    border: 1px solid rgba(102, 126, 234, 0.3) !important;
}

/* Ensure CTA content is visible on light backgrounds */
.training-location .section-cta-content,
.training-location .section-cta-content *,
.success-stories .section-cta-content,
.success-stories .section-cta-content *,
.learning-benefits .section-cta-content,
.learning-benefits .section-cta-content *,
.support-services .section-cta-content,
.support-services .section-cta-content * {
    color: #1a202c !important;
}

.form-group label {
 
    font-size: calc(1.2rem * var(--font-scale));
}
