* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF6B35;
    --dark-bg: #0B0B0F;
    --military-green: #2A4A3A;
    --gold-accent: #FFD700;
    --smoke-white: #F5F5F5;
    --danger-red: #DC2626;
    --tactical-gray: #1A1A1A;
    --neon-green: #00FF41;
    --card-bg: rgba(26, 26, 26, 0.8);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--smoke-white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Military Grid Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(255, 107, 53, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}


/* ===== NAVBAR IMAGE LOGO STYLING ===== */
.strike-brand-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px; /* Adjust height as needed */
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.strike-logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1) saturate(1.1);
    transition: all 0.3s ease;
    max-width: 120px; /* Prevent logo from being too wide */
    
    /* Remove background effect */
    background: transparent;
    mix-blend-mode: screen; /* Helps blend with dark backgrounds */
}

.strike-logo-img:hover {
    filter: brightness(1.4) contrast(1.2) saturate(1.3);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Enhance the brand container for better image integration */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between "Coder Army" and STRIKE image */
    transition: all 0.3s ease;
}

.nav-brand:hover .strike-logo-img {
    filter: brightness(1.3) contrast(1.15) saturate(1.2);
    transform: scale(1.03);
}

/* Brand divider styling to complement the image */
.brand-divider {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, 
        var(--primary-orange), 
        var(--gold-accent), 
        var(--primary-orange)
    );
    border-radius: 1px;
    opacity: 0.8;
    box-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
    animation: dividerGlow 3s ease-in-out infinite alternate;
}

@keyframes dividerGlow {
    0% {
        box-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
        opacity: 0.8;
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
        opacity: 1;
    }
}

/* Mobile responsiveness for the logo image */
@media (max-width: 768px) {
    .strike-brand-image {
        height: 35px;
    }
    
    .strike-logo-img {
        max-width: 100px;
    }
    
    .nav-brand {
        gap: 10px;
    }
    
    .brand-divider {
        height: 25px;
    }
}

@media (max-width: 480px) {
    .strike-brand-image {
        height: 30px;
    }
    
    .strike-logo-img {
        max-width: 80px;
    }
    
    .nav-brand {
        gap: 8px;
    }
    
    /* Hide "Coder Army" text on very small screens to save space */
    .brand-logo {
        display: none;
    }
    
    .brand-divider {
        display: none;
    }
}

/* Special effects for the STRIKE logo */
.strike-brand-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 107, 53, 0.2), 
        transparent
    );
    transition: left 0.5s ease;
    z-index: 1;
}

.strike-brand-image:hover::before {
    left: 100%;
}

.strike-logo-img {
    position: relative;
    z-index: 2;
}

/* Dark mode background removal effect */
@media (prefers-color-scheme: dark) {
    .strike-logo-img {
        filter: brightness(1.3) contrast(1.2) saturate(1.1) hue-rotate(5deg);
    }
}

/* Enhanced hover effect for the entire nav brand */
.nav-brand:hover {
    transform: translateY(-1px);
}

.nav-brand:hover .brand-logo {
    color: var(--primary-orange);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.4);
}

/* Loading effect for the image */
.strike-logo-img {
    opacity: 0;
    animation: logoFadeIn 0.8s ease forwards;
}

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


/* Sticky Top Navbar */
.navbar-container {
    position: sticky; 
    top: 0; 
    left: 0;
    width: 100%;
    background: rgba(11, 11, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.simple-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    min-height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--smoke-white);
}

.code-bracket {
    color: var(--primary-orange);
    font-weight: 700;
    font-family: 'Orbitron', monospace;
}

.brand-name {
    color: var(--smoke-white);
    transition: color 0.3s ease;
}

.brand-divider {
    width: 2px;
    height: 25px;
    background: linear-gradient(to bottom, var(--primary-orange), var(--gold-accent));
    margin: 0 0.5rem;
}

.strike-brand {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-orange), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    color: rgba(245, 245, 245, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.simple-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--danger-red));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.simple-cta-btn:hover::before {
    left: 100%;
}

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

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.mobile-nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

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

.mobile-nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(11, 11, 15, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--primary-orange);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
}

.mobile-nav-link {
    color: var(--smoke-white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-orange);
    padding-left: 1rem;
}

.mobile-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--danger-red));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.mobile-cta-link:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.navbar-container.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    background: rgba(11, 11, 15, 0.98);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4) contrast(1.2) saturate(1.1);
    animation: parallaxFloat 20s ease-in-out infinite;
}

@keyframes parallaxFloat {
    0%, 100% { transform: scale(1.05) translateY(0); }
    50% { transform: scale(1.08) translateY(-20px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(11, 11, 15, 0.8) 0%,
        rgba(26, 26, 26, 0.6) 50%,
        rgba(11, 11, 15, 0.8) 100%
    );
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    padding: 2rem;
    position: relative;
    z-index: 2;
    animation: heroContentFadeIn 1.5s ease-out;
}

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

.military-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(45deg, var(--primary-orange), var(--danger-red));
    border-radius: 25px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: badgeFloat 3s ease-in-out infinite;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0) rotateZ(-1deg); }
    50% { transform: translateY(-8px) rotateZ(1deg); }
}

/* Title Container with Coming Soon Animation */
.title-container {
    margin-bottom: 2rem;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary-orange), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -3px;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.3)); }
    to { filter: drop-shadow(0 0 40px rgba(255, 107, 53, 0.6)); }
}

/* Coming Soon Text Animation */
.coming-soon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.coming-soon-text {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

.coming-soon-text span {
    display: inline-block;
    animation: loadingBounce 1.5s ease-in-out infinite;
}

.coming-soon-text span:nth-child(1) { animation-delay: 0s; }
.coming-soon-text span:nth-child(2) { animation-delay: 0.1s; }
.coming-soon-text span:nth-child(3) { animation-delay: 0.2s; }
.coming-soon-text span:nth-child(4) { animation-delay: 0.3s; }
.coming-soon-text span:nth-child(5) { animation-delay: 0.4s; }
.coming-soon-text span:nth-child(6) { animation-delay: 0.5s; }
.coming-soon-text span:nth-child(7) { animation-delay: 0.6s; } 
.coming-soon-text span:nth-child(8) { animation-delay: 0.7s; }
.coming-soon-text span:nth-child(9) { animation-delay: 0.8s; }
.coming-soon-text span:nth-child(10) { animation-delay: 0.9s; }
.coming-soon-text span:nth-child(11) { animation-delay: 1s; }

.coming-soon-text .dots {
    animation: dotsPulse 1.5s ease-in-out infinite;
}

.coming-soon-text .dots:nth-child(12) { animation-delay: 1.1s; }
.coming-soon-text .dots:nth-child(13) { animation-delay: 1.2s; }
.coming-soon-text .dots:nth-child(14) { animation-delay: 1.3s; }

.coming-soon-text .space {
    width: 1rem;
}

@keyframes loadingBounce {
    0%, 80%, 100% {
        transform: translateY(0) scale(1);
        color: var(--gold-accent);
    }
    40% {
        transform: translateY(-15px) scale(1.1);
        color: var(--primary-orange);
        text-shadow: 0 0 15px var(--primary-orange);
    }
}

@keyframes dotsPulse {
    0%, 80%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    40% {
        opacity: 1;
        transform: scale(1.2);
        color: var(--primary-orange);
        text-shadow: 0 0 10px var(--primary-orange);
    }
}

/* Loading-bar */
.loading-circle-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-track {
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.loading-circle {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--primary-orange), var(--gold-accent));
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 15px var(--primary-orange);
    animation: moveCircle 2.5s ease-in-out infinite;
}

@keyframes moveCircle {
    0% {
        left: -8px;
        box-shadow: 0 0 15px var(--primary-orange);
    }
    50% {
        left: calc(100% - 8px);
        box-shadow: 0 0 20px var(--gold-accent), 0 0 30px var(--primary-orange);
    }
    100% {
        left: -8px;
        box-shadow: 0 0 15px var(--primary-orange);
    }
}


.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

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

.hero-description {
    font-size: 1.3rem;
    color: rgba(245, 245, 245, 0.8);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.price-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.original-price {
    font-size: 2rem;
    color: rgba(245, 245, 245, 0.5);
    text-decoration: line-through;
}

.current-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold-accent);
    font-family: 'Orbitron', monospace;
    animation: priceGlow 2s ease-in-out infinite alternate;
}

@keyframes priceGlow {
    from { text-shadow: 0 0 10px var(--gold-accent); }
    to { text-shadow: 0 0 20px var(--gold-accent), 0 0 30px rgba(255, 215, 0, 0.5); }
}

.discount-badge {
    padding: 0.5rem 1rem;
    background: var(--danger-red);
    border-radius: 20px;
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

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

.batch-info {
    font-size: 1.2rem;
    color: var(--neon-green);
    margin-bottom: 3rem;
    font-family: 'Orbitron', monospace;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(45deg, var(--primary-orange), var(--danger-red));
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    font-family: 'Orbitron', monospace;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 1.3s both;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

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

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.5);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-code {
    position: absolute;
    font-family: 'Orbitron', monospace;
    font-size: clamp(1rem, 2vw, 2rem);
    font-weight: 700;
    color: rgba(255, 107, 53, 0.2);
    animation: floatingCode 15s linear infinite;
}

.floating-code:nth-child(1) {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-code:nth-child(2) {
    top: 60%;
    left: 5%;
    animation-delay: 3s;
}

.floating-code:nth-child(3) {
    top: 40%;
    right: 20%;
    animation-delay: 6s;
}

.floating-code:nth-child(4) {
    top: 80%;
    left: 15%;
    animation-delay: 9s;
}

@keyframes floatingCode {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0.2;
    }
}

/* Quick Stats */
.quick-stats {
    background: linear-gradient(135deg, var(--tactical-gray), rgba(255, 107, 53, 0.05));
    padding: 6rem 0;
    border-top: 2px solid var(--primary-orange);
    border-bottom: 2px solid var(--primary-orange);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-orange);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.3);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold-accent);
    font-family: 'Orbitron', monospace;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(245, 245, 245, 0.8);
    font-weight: 500;
}

/* Section Styling */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary-orange), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(245, 245, 245, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

/* Course Syllabus */
.syllabus {
    background: linear-gradient(135deg, rgba(11, 11, 15, 0.9), rgba(26, 26, 26, 0.5));
}

.syllabus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.syllabus-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
}

.syllabus-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.2);
}

.card-header {
    padding: 2.5rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    text-align: center;
}

.syllabus-icon {
    font-size: 3.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    display: block;
}

.syllabus-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: var(--gold-accent);
}

.syllabus-card ul {
    list-style: none;
    padding: 2rem;
}

.syllabus-card li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    padding-left: 2rem;
    color: rgba(245, 245, 245, 0.9);
    transition: all 0.3s ease;
}

.syllabus-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-size: 0.9rem;
}

.syllabus-card li:hover {
    color: var(--gold-accent);
    padding-left: 2.5rem;
}

.syllabus-card li:last-child {
    border-bottom: none;
}

/* Previous Courses Showcase */
.previous-courses {
    background: linear-gradient(135deg, var(--tactical-gray), rgba(11, 11, 15, 0.9));
}

.course-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.course-showcase-card {
    background: var(--card-bg);
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.5s ease;
    backdrop-filter: blur(20px);
}

.course-showcase-card:hover {
    transform: translateY(-20px);
    border-color: var(--primary-orange);
    box-shadow: 0 40px 80px rgba(255, 107, 53, 0.4);
}

.course-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.course-image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
    filter: brightness(0.8) contrast(1.1) saturate(1.2);
}

.course-showcase-card:hover .course-image-photo {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2) saturate(1.3);
}

.course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 11, 15, 0.2) 0%, transparent 50%, rgba(255, 107, 53, 0.1) 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    z-index: 2;
}

.course-badge {
    padding: 0.5rem 1rem;
    background: var(--danger-red);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

.price-tag {
    background: rgba(11, 11, 15, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.old-price {
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.6);
    text-decoration: line-through;
    font-weight: 500;
}

.new-price {
    font-size: 1.2rem;
    color: var(--gold-accent);
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.course-content {
    padding: 2.5rem;
}

.course-content h3 {
    font-size: 1.8rem;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', monospace;
}

.course-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(245, 245, 245, 0.7);
    font-size: 0.95rem;
}

.course-meta i {
    color: var(--primary-orange);
}

.course-content p {
    color: rgba(245, 245, 245, 0.8);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Features Grid */
.why-choose {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(11, 11, 15, 0.9));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
}

.feature-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.3);
}

.feature-icon-container {
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 4rem;
    color: var(--primary-orange);
}

.feature-card h3 {
    font-size: 1.6rem;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', monospace;
}

.feature-card p {
    color: rgba(245, 245, 245, 0.8);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, rgba(11, 11, 15, 0.9), rgba(42, 74, 58, 0.1));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 30px;
    font-size: 8rem;
    color: var(--primary-orange);
    opacity: 0.1;
    font-family: Georgia, serif;
    z-index: 0;
}

.testimonial-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.testimonial-content {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(245, 245, 245, 0.9);
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-orange), var(--gold-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.author-info h4 {
    color: var(--gold-accent);
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.author-info p {
    font-size: 1rem;
    color: rgba(245, 245, 245, 0.6);
}

.rating {
    margin-top: 1rem;
    color: var(--gold-accent);
    position: relative;
    z-index: 1;
}

.rating i {
    margin-right: 0.2rem;
}


/* ===== SEAMLESS INFINITE ANIMATION ===== */
.animated-reviews {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(11, 11, 15, 0.95), rgba(26, 26, 26, 0.8));
    overflow: hidden;
    position: relative;
}

.reviews-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    width: max-content;
    position: relative;
}

/* SEAMLESS Left to Right Animation */
.row-left-to-right {
    animation: seamlessLeftToRight 40s linear infinite;
}

@keyframes seamlessLeftToRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Move exactly half the width */
    }
}

/* SEAMLESS Right to Left Animation */
.row-right-to-left {
    animation: seamlessRightToLeft 40s linear infinite;
}

@keyframes seamlessRightToLeft {
    0% {
        transform: translateX(-50%); /* Start from half position */
    }
    100% {
        transform: translateX(0); /* Move to start position */
    }
}

/* Review Card Styling */
.review-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(255, 107, 53, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2rem;
    min-width: 400px;
    max-width: 400px;
    flex-shrink: 0;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
}

/* Student Profile Styling (unchanged) */
.student-profile {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.student-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

.student-info h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
}

.company {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    display: block;
}

.salary-growth {
    background: linear-gradient(135deg, var(--military-green), var(--neon-green));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    font-family: 'Orbitron', monospace;
}

.review-text {
    color: rgba(245, 245, 245, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    border-left: 3px solid var(--primary-orange);
    padding-left: 1rem;
}

.rating {
    color: var(--gold-accent);
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
}

/* Pause animation on hover */
.reviews-row:hover {
    animation-play-state: paused;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .review-card {
        min-width: 320px;
        max-width: 320px;
        padding: 1.5rem;
    }
    
    .row-left-to-right {
        animation: seamlessLeftToRight 30s linear infinite;
    }
    
    .row-right-to-left {
        animation: seamlessRightToLeft 30s linear infinite;
    }
}

@media (max-width: 480px) {
    .review-card {
        min-width: 280px;
        max-width: 280px;
        padding: 1.2rem;
    }
    
    .row-left-to-right {
        animation: seamlessLeftToRight 25s linear infinite;
    }
    
    .row-right-to-left {
        animation: seamlessRightToLeft 25s linear infinite;
    }
}

/* Performance optimization */
.reviews-row {
    will-change: transform;
}




/* FAQs */
.faqs {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.5), rgba(42, 74, 58, 0.1));
}

.faqs-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
}

.faq-item:hover {
    border-color: var(--primary-orange);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.faq-question {
    padding: 2rem 2.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold-accent);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
}

.faq-question::after {
    content: '+';
    font-size: 2.5rem;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-question:hover {
    color: var(--primary-orange);
}

.faq-answer {
    padding: 0 2.5rem 2rem;
    color: rgba(245, 245, 245, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--primary-orange), var(--danger-red));
    padding: 8rem 0;
    text-align: center;
    position: relative;
}

.final-cta h2 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 4rem;
    background: white;
    color: var(--primary-orange);
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 60px;
    transition: all 0.4s ease;
    font-family: 'Orbitron', monospace;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    background: var(--gold-accent);
}

/* Footer */
footer {
    background: var(--tactical-gray);
    padding: 5rem 0 2rem;
    border-top: 3px solid var(--primary-orange);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--gold-accent);
    font-family: 'Orbitron', monospace;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: rgba(245, 245, 245, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(245, 245, 245, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    text-decoration: none;
    transition: all 0.4s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--primary-orange);
    color: var(--dark-bg);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    color: rgba(245, 245, 245, 0.6);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .simple-navbar {
        padding: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .coming-soon-text {
        font-size: 2rem;
    }

    .loading-bar {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

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

    .hero-content {
        padding: 2rem 1rem;
    }

    .coming-soon-text {
        font-size: 1.5rem;
        letter-spacing: 0.1rem;
    }

    .loading-bar {
        width: 200px;
    }

    .price-section {
        flex-direction: column;
        gap: 0.5rem;
    }

    .current-price {
        font-size: 2.8rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .syllabus-grid,
    .course-showcase-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .course-meta {
        flex-direction: column;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .simple-navbar {
        padding: 0.8rem;
    }

    .strike-brand {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .coming-soon-text {
        font-size: 1.2rem;
        letter-spacing: 0.05rem;
    }

    .loading-bar {
        width: 150px;
        height: 3px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 2rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-cta,
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .mobile-nav-content {
        padding: 1.5rem;
    }

    .mobile-nav-link {
        font-size: 1.1rem;
    }
}

@media (max-width: 375px) {
    .container {
        padding: 0 1rem;
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }

    .coming-soon-text {
        font-size: 1rem;
    }

    .loading-bar {
        width: 120px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
a:focus,
button:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar-container,
    .floating-elements {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }
}
