/* Import modern fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-color: #00f3ff;
    --secondary-color: #ff00ff;
    --accent-color: #00ff88;
    --bg-dark: #0a0a1a;
    --bg-card: rgba(20, 20, 40, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #b8b8d1;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #00f3ff 0%, #0066ff 100%);
    --gradient-3: linear-gradient(135deg, #ff00ff 0%, #ff0080 100%);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Animated background */
.stars, .twinkling {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.stars {
    background: #000 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAEElEQVQIW2NkYGD4D8YMDAwAJgADAB4gB0QAAAAASUVORK5CYII=') repeat top center;
    z-index: -2;
}

.twinkling {
    background: transparent url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAEElEQVQIW2NkYGD4z8DAwAAHAgYBLwEQAAAAAElFTkSuQmCC') repeat top center;
    z-index: -1;
    animation: move-twink-back 200s linear infinite;
}

@keyframes move-twink-back {
    from {background-position: 0 0;}
    to {background-position: -10000px 5000px;}
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 243, 255, 0.3);
    z-index: 1000;
}

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

.logo-video {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px;
    max-height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
    display: block;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
    letter-spacing: 3px;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    list-style: none;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 243, 255, 0.3);
    padding: 0;
    margin: 0;
    gap: 0;
}

.nav-links.active {
    display: flex;
}

.nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
}

.nav-links a {
    display: block;
    width: 100%;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 1.25rem 5%;
    text-align: center;
}


.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 80%;
}

.apply-btn {
    background: var(--gradient-2);
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
    color: white !important;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.4);
}

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

.hero-content {
    max-width: 800px;
    z-index: 2;
    text-align: center;
}

.glitch {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    color: var(--text-primary);
    letter-spacing: 0.5rem;
    animation: glitch 1s ease-in-out infinite alternate;
    text-shadow: 
        0 0 10px rgba(0, 243, 255, 0.8),
        0 0 20px rgba(0, 243, 255, 0.6),
        0 0 30px rgba(0, 243, 255, 0.4);
}

@keyframes glitch {
    0%, 100% {
        text-shadow: 
            2px 2px 0 var(--primary-color),
            -2px -2px 0 var(--secondary-color),
            0 0 20px rgba(0, 243, 255, 0.8);
    }
    50% {
        text-shadow: 
            -2px 2px 0 var(--secondary-color),
            2px -2px 0 var(--primary-color),
            0 0 30px rgba(255, 0, 255, 0.8);
    }
}

.tagline {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 1rem 0 2rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-description p {
    margin-bottom: 2.5rem;
}

.hero-description .btn {
    margin-top: 1rem;
    display: inline-block;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: visible;
    white-space: normal;
    line-height: 1.4;
    display: inline-block;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-2);
    color: white;
    box-shadow: 0 5px 20px rgba(0, 243, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

/* Animated circles */
.hero-visual {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-3);
    bottom: 20%;
    left: 10%;
    animation-delay: 5s;
}

.circle-3 {
    width: 200px;
    height: 200px;
    background: var(--gradient-1);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Features Section */
.features {
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.5));
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Content Pages */
.content-page {
    min-height: 100vh;
    padding: 8rem 5% 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-2);
    margin: 0 auto;
    border-radius: 2px;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
}

/* Manifesto Page */
.manifesto-content {
    max-width: 1000px;
    margin: 0 auto;
}

.manifesto-section {
    margin-bottom: 4rem;
}

.manifesto-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.belief-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    transition: all 0.3s ease;
}

.belief-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.3);
}

.belief-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 243, 255, 0.3);
    display: block;
    margin-bottom: 1rem;
}

.belief-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.belief-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.mission-box {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
}

.mission-text {
    font-size: 1.3rem;
    color: var(--text-primary);
    line-height: 2;
    text-align: center;
    font-style: italic;
}

.artifex-principles {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.artifex-principles li {
    background: var(--bg-card);
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.artifex-principles li:hover {
    transform: translateX(10px);
    background: rgba(0, 243, 255, 0.1);
    color: var(--text-primary);
}

/* Course Catalog Page */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.course-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.course-card:hover::before {
    transform: scaleX(1);
}

.course-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(0, 243, 255, 0.3);
}

.course-level {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-2);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.course-price {
    position: absolute;
    top: -15px;
    right: 20px;
    padding: 0.8rem 2rem;
    background: var(--gradient-3);
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(255, 0, 255, 0.5);
    z-index: 10;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.course-card:hover .course-price {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.7);
}

.course-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.course-description {
    color: var(--text-secondary);
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.course-highlights {
    list-style: none;
    margin-bottom: 1.5rem;
}

.course-highlights li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.course-highlights li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.course-info {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    color: var(--text-secondary);
    font-weight: 600;
}

.course-card .btn {
    display: block;
    width: 100%;
    margin-top: 2rem;
    text-align: center;
}

/* About Page */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.founder-section {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.avatar-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.4);
}

.avatar-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: white;
}

.founder-headshot {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.4);
    transition: all 0.3s ease;
}

.founder-headshot:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(0, 243, 255, 0.6);
}

.founder-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.founder-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.story-section,
.vision-section,
.values-section {
    margin-bottom: 4rem;
}

.story-section h2,
.vision-section h2,
.values-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 1.5rem;
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem 0;
}

/* Removed vertical timeline line - keeping only year dots */

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-year {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.6);
    line-height: 1.2;
}

.timeline-year::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border: 3px solid var(--bg-dark);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px var(--primary-color);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px var(--primary-color), 0 0 40px var(--primary-color);
        transform: scale(1.1);
    }
}

.timeline-content {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    display: flex;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-2);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.3);
}

.timeline-content:hover::before {
    transform: scaleY(1);
}

.timeline-logo {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(0, 243, 255, 0.2);
    transition: all 0.3s ease;
}

.timeline-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.timeline-content:hover .timeline-logo {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 8px 30px rgba(0, 243, 255, 0.4);
}

.timeline-text h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.timeline-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.timeline-link:hover {
    color: var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

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

.vision-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.vision-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.3);
}

.vision-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vision-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.vision-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.values-list {
    max-width: 800px;
    margin: 0 auto;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 243, 255, 0.2);
}

.value-marker {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.value-item p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin: 0;
}

/* Apply Page */
.apply-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.apply-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.apply-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card ol,
.info-card ul {
    margin-left: 1.5rem;
    color: var(--text-secondary);
}

.info-card li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.application-form {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.application-form h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(10, 10, 26, 0.6);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    cursor: pointer;
    font-weight: 400;
}

.btn-large {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .apply-container {
        grid-template-columns: 1fr;
    }
    
    .founder-section {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .glitch {
        font-size: 2.5rem;
        letter-spacing: 0.2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }

    .course-price {
        font-size: 1.5rem;
        padding: 0.6rem 1.5rem;
        top: -12px;
        right: 15px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .belief-grid,
    .vision-grid {
        grid-template-columns: 1fr;
    }

    /* Removed vertical timeline line for tablet */

    .timeline-year {
        font-size: 1.2rem;
        gap: 0.6rem;
        margin-top: 1rem;
    }

    .timeline-year::before {
        width: 10px;
        height: 10px;
    }

    .timeline-content {
        flex-direction: column;
        text-align: center;
    }

    .timeline-logo {
        width: 80px;
        height: 80px;
    }

    .btn {
        padding: 0.95rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 5% 2rem;
    }
    
    .glitch {
        font-size: 2rem;
    }
    
    .application-form {
        padding: 1.5rem;
    }

    .course-price {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        top: -10px;
        right: 10px;
    }

    /* Removed vertical timeline line for mobile */

    .timeline-year {
        font-size: 1rem;
        gap: 0.5rem;
        margin-top: 0.8rem;
    }

    .timeline-year::before {
        width: 8px;
        height: 8px;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-logo {
        width: 60px;
        height: 60px;
        padding: 0.5rem;
    }

    .timeline-text h3 {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
        margin-bottom: 0;
    }
}

/* Footer */
.site-footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    padding: 2rem 5%;
    text-align: center;
    margin-top: 4rem;
}

.site-footer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.site-footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Syllabus Pages */
.syllabus-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 5%;
    padding-top: 100px;
}

.syllabus-hero {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-bottom: 2px solid rgba(0, 243, 255, 0.3);
}

.syllabus-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.syllabus-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.syllabus-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 1rem;
}
.syllabus-payment-plan {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 1rem;
}

.syllabus-content {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.next-start-date {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1), rgba(0, 255, 136, 0.1));
    border-left: 4px solid var(--primary-color);
    padding: 1.2rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    text-align: center;
}

.next-start-date p {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 0;
}

.next-start-date strong {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.syllabus-overview,
.syllabus-schedule,
.syllabus-outcomes {
    margin-bottom: 3rem;
}

.syllabus-overview h2,
.syllabus-schedule h2,
.syllabus-outcomes h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 243, 255, 0.2);
}

.syllabus-overview p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.week-card {
    background: rgba(10, 10, 26, 0.6);
    border: 1px solid rgba(0, 243, 255, 0.15);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.week-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.week-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.week-card ul {
    list-style: none;
    padding-left: 0;
}

.week-card ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.week-card ul li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.week-card ul li strong {
    color: var(--text-primary);
}

.week-card p {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 243, 255, 0.1);
    color: var(--text-secondary);
    font-style: italic;
}

.syllabus-outcomes ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.syllabus-outcomes ul li {
    padding: 1rem 1.5rem;
    background: rgba(0, 243, 255, 0.05);
    border-left: 3px solid var(--primary-color);
    border-radius: 5px;
    color: var(--text-secondary);
}

.syllabus-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 243, 255, 0.2);
}

.syllabus-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Responsive design for syllabus pages */
@media (max-width: 768px) {
    .syllabus-hero h1 {
        font-size: 2rem;
    }
    
    .syllabus-subtitle {
        font-size: 1rem;
    }
    
    .syllabus-price {
        font-size: 1.5rem;
    }
    
    .syllabus-content {
        padding: 2rem 1.5rem;
    }
    
    .week-card {
        padding: 1.5rem;
    }
    
    .syllabus-cta {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    
    .syllabus-cta .btn {
        width: 100%;
        display: block;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .syllabus-hero h1 {
        font-size: 1.5rem;
    }
    
    .syllabus-content {
        padding: 1.5rem 1rem;
    }
}

/* Example Capstone Page Styles */
.capstone-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.student-profile {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.student-photo {
    flex-shrink: 0;
    position: relative;
}

.student-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    object-fit: cover;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
    filter: blur(8px);
}

.privacy-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 0.8rem 1.2rem;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
    pointer-events: none;
}

.privacy-overlay span {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.3rem;
}

.privacy-overlay p {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.student-info h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.student-age {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.student-quote {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-color);
}

.project-showcase {
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    padding: 2.5rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.project-header h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    font-size: 2rem;
}

.project-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.project-description,
.project-features,
.project-tech,
.project-screenshots,
.project-journey,
.project-impact {
    margin-bottom: 2.5rem;
}

.project-showcase h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.project-description p,
.project-impact p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.project-features ul {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.project-features li {
    padding: 1rem 1.5rem;
    background: rgba(0, 243, 255, 0.05);
    border-left: 3px solid var(--primary-color);
    border-radius: 5px;
    color: var(--text-secondary);
}

.project-features strong {
    color: var(--primary-color);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-tag {
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--accent-color);
    font-weight: 500;
}

.ml-techniques {
    margin-top: 1.5rem;
}

.ml-techniques h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.ml-techniques p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.screenshot-placeholder {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1), rgba(0, 255, 136, 0.1));
    border: 2px dashed var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

.placeholder-content {
    text-align: center;
}

.placeholder-content p:first-child {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.placeholder-content p:last-child {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.screenshot-actual {
    aspect-ratio: 16/10;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.screenshot-actual:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.3);
}

.screenshot-actual img {
    display: block;
}

.screenshot-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--primary-color);
    text-align: center;
    padding: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.journey-timeline {
    display: grid;
    gap: 1.5rem;
}

.timeline-item {
    padding: 1.5rem;
    background: rgba(0, 243, 255, 0.05);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
}

.timeline-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.technical-details {
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(0, 243, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.technical-details h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.technical-details ul {
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.technical-details li {
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
}

.technical-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1), rgba(0, 255, 136, 0.1));
    border-radius: 15px;
    border: 1px solid var(--primary-color);
}

.cta-section h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive styles for capstone page */
@media (max-width: 768px) {
    .capstone-container {
        padding: 2rem 1rem;
    }
    
    .student-profile {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .student-photo img {
        width: 150px;
        height: 150px;
    }
    
    .student-info h2 {
        font-size: 1.5rem;
    }
    
    .student-quote {
        border-left: none;
        border-top: 3px solid var(--primary-color);
        padding-left: 0;
        padding-top: 1rem;
    }
    
    .project-showcase {
        padding: 1.5rem;
    }
    
    .project-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .project-header h2 {
        font-size: 1.5rem;
    }
    
    .screenshot-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
        display: block;
        margin: 0;
    }
}

/* Urgency Section Styles */
.urgency-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, 
        rgba(0, 243, 255, 0.05) 0%, 
        rgba(0, 255, 136, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.urgency-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-color), 
        var(--accent-color), 
        transparent);
}

.urgency-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.urgency-statement {
    margin-bottom: 3rem;
}

.urgency-lead {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.4;
    margin: 1rem 0;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.urgency-stakes {
    margin: 3rem 0;
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    border-right: 4px solid var(--primary-color);
    background: rgba(0, 0, 0, 0.3);
}

.stakes-text {
    font-size: 1.6rem;
    color: var(--text-secondary);
    margin: 1.2rem 0;
    line-height: 1.6;
}

.stakes-text strong {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.warning-text {
    color: #ff4444;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
}

.urgency-window {
    margin: 3rem 0;
}

.window-highlight {
    background: linear-gradient(135deg, 
        rgba(0, 243, 255, 0.15), 
        rgba(0, 255, 136, 0.15));
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
}

.window-highlight::before {
    content: '⚡';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    background: var(--bg-color);
    padding: 0 1rem;
}

.window-text {
    font-size: 1.8rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.age-range {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 2rem;
}

.urgency-solution {
    margin-top: 3rem;
}

.solution-text {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 300;
}

.brand-highlight {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 2.2rem;
    font-family: 'Orbitron', sans-serif;
}

.btn-urgent {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-color);
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 30px rgba(0, 243, 255, 0.4);
    animation: pulse 2s infinite;
}

.btn-urgent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(0, 243, 255, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 30px rgba(0, 243, 255, 0.4);
    }
    50% {
        box-shadow: 0 5px 40px rgba(0, 243, 255, 0.7);
    }
}

/* Responsive styles for urgency section */
@media (max-width: 768px) {
    .urgency-lead {
        font-size: 1.8rem;
    }
    
    .stakes-text {
        font-size: 1.3rem;
    }
    
    .stakes-text strong {
        font-size: 1.4rem;
    }
    
    .window-text {
        font-size: 1.4rem;
    }
    
    .age-range {
        font-size: 1.6rem;
    }
    
    .solution-text {
        font-size: 1.5rem;
    }
    
    .brand-highlight {
        font-size: 1.7rem;
    }
    
    .urgency-stakes {
        padding: 1.5rem;
    }
    
    .window-highlight {
        padding: 1.5rem;
    }
}

