* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #fff;
    overflow-x: hidden;
    background: #0a0a0a;
}

/* ========== AI ANIMATED BACKGROUND ========== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

#ai-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

#ai-advanced-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.ai-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: orbPulse 8s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.4), rgba(0, 100, 255, 0.1));
    top: -250px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.3), rgba(0, 255, 255, 0.05));
    bottom: -300px;
    left: -150px;
    animation-delay: 4s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 150, 0.3), rgba(0, 255, 255, 0.1));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

@keyframes orbPulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.1); }
}

.data-stream {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: rgba(0, 255, 255, 0.5);
    white-space: nowrap;
    animation: streamFall linear infinite;
    pointer-events: none;
}

@keyframes streamFall {
    0% { transform: translateY(-100px); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

.matrix-rain {
    position: absolute;
    font-family: monospace;
    font-size: 16px;
    font-weight: bold;
    color: #0f0;
    text-shadow: 0 0 5px #0f0;
    opacity: 0.15;
    pointer-events: none;
    animation: matrixFall linear infinite;
}

@keyframes matrixFall {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.ai-data-stream-advanced {
    position: fixed;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
    white-space: nowrap;
    pointer-events: none;
    z-index: -1;
    animation: dataStreamAdvanced linear infinite;
    opacity: 0.4;
}

@keyframes dataStreamAdvanced {
    0% { transform: translateX(100%); opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% { transform: translateX(-100%); opacity: 0; }
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    border-bottom: 2px solid rgba(0, 255, 255, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Logo Styles - Bigger */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo span {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, #fff, #00ffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo i {
    font-size: 2rem;
    color: #00ffff;
}

/* Navigation Links - Normal Size (not bigger) */
.nav-links {
    display: flex;
    gap: 1.8rem;
    list-style: none;
    margin: 0 auto;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #8a2be2);
    transition: width 0.3s;
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    color: #00ffff;
}

/* Navigation Controls - Right side with proper spacing */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

/* Theme Toggle Switch */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
}

.theme-switch {
    position: relative;
    display: inline-block;
    width: 65px;
    height: 32px;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a2e, #0a0a0a);
    transition: 0.4s;
    border-radius: 34px;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 3px;
    background: linear-gradient(135deg, #00ffff, #8a2be2);
    transition: 0.4s;
    border-radius: 50%;
}

.slider i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    z-index: 1;
    transition: 0.3s;
}

.slider .fa-sun {
    left: 8px;
    color: #ffd700;
    opacity: 1;
}

.slider .fa-moon {
    right: 8px;
    color: #00ffff;
    opacity: 0;
}

/* ========== COMPLETE LIGHT MODE STYLES ========== */
body.light-mode {
    background: #f5f5f5;
    color: #1a1a2e;
}

/* Light Mode Background */
body.light-mode .animated-bg {
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
}

body.light-mode #ai-canvas,
body.light-mode #ai-advanced-canvas {
    opacity: 0.2;
}

/* Light Mode Navigation - Black to White */
body.light-mode .navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 2px solid rgba(0, 100, 255, 0.2) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

body.light-mode .nav-links a {
    color: #1a1a2e !important;
}

body.light-mode .nav-links a:hover {
    color: #0066ff !important;
}

body.light-mode .nav-links a::before {
    background: linear-gradient(90deg, #0066ff, #0055cc) !important;
}

/* Light Mode Logo */
body.light-mode .logo i {
    color: #0066ff !important;
}

body.light-mode .logo span {
    background: linear-gradient(135deg, #1a1a2e, #0066ff) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
}

/* Light Mode Mobile Toggle */
body.light-mode .nav-toggle {
    color: #1a1a2e !important;
}

/* Light Mode Dropdown Menu (Mobile) */
body.light-mode .nav-links.active {
    background: rgba(255, 255, 255, 0.98) !important;
    border-top: 1px solid rgba(0, 100, 255, 0.2);
}

/* Light Mode Cards */
body.light-mode .offer-card,
body.light-mode .step,
body.light-mode .testimonial-card,
body.light-mode .mentor-card,
body.light-mode .leader-card,
body.light-mode .trust-card,
body.light-mode .contact-grid {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(0, 100, 255, 0.2) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

body.light-mode .offer-card h3,
body.light-mode .step h3,
body.light-mode .mentor-card h3,
body.light-mode .leader-card h3 {
    color: #1a1a2e !important;
}

body.light-mode .offer-card p,
body.light-mode .step p,
body.light-mode .mentor-card p {
    color: #4a4a6a !important;
}

/* Light Mode Stats */
body.light-mode .stat-number {
    color: #0066ff !important;
    text-shadow: none;
}

body.light-mode .stat-label {
    color: #4a4a6a !important;
}

/* Light Mode Section Titles */
body.light-mode .section-title {
    background: linear-gradient(135deg, #1a1a2e, #0066ff) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
}

body.light-mode .section-subtitle {
    color: #4a4a6a !important;
}

/* Light Mode Masterclass */
body.light-mode .masterclass {
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.05), rgba(0, 150, 255, 0.05)) !important;
    border: 1px solid rgba(0, 100, 255, 0.2) !important;
}

body.light-mode .masterclass h2 {
    color: #1a1a2e !important;
}

body.light-mode .masterclass-stats {
    background: rgba(0, 0, 0, 0.03) !important;
}

body.light-mode .stat-value {
    color: #0066ff !important;
}

body.light-mode .masterclass-features li {
    color: #4a4a6a !important;
}

/* Light Mode Buttons */
body.light-mode .learn-more-btn {
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.1), rgba(0, 150, 255, 0.1)) !important;
    border-color: rgba(0, 100, 255, 0.3) !important;
    color: #0066ff !important;
}

body.light-mode .learn-more-btn:hover {
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.2), rgba(0, 150, 255, 0.2)) !important;
    border-color: rgba(0, 100, 255, 0.6) !important;
}

body.light-mode .join-btn,
body.light-mode .submit-btn,
body.light-mode .cta-button {
    background: linear-gradient(135deg, #0066ff, #0055cc) !important;
}

/* Light Mode Form */
body.light-mode .contact-form input,
body.light-mode .contact-form textarea {
    background: rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(0, 100, 255, 0.3) !important;
    color: #1a1a2e !important;
}

body.light-mode .contact-form input:focus,
body.light-mode .contact-form textarea:focus {
    border-color: #0066ff !important;
    box-shadow: 0 0 10px rgba(0, 100, 255, 0.3) !important;
}

body.light-mode .form-header h3 {
    color: #1a1a2e !important;
}

/* Light Mode Contact Info */
body.light-mode .contact-info h3 {
    color: #0066ff !important;
}

body.light-mode .info-item {
    background: rgba(0, 0, 0, 0.03) !important;
}

body.light-mode .info-item:hover {
    background: rgba(0, 100, 255, 0.1) !important;
}

body.light-mode .info-item span {
    color: #1a1a2e !important;
}

/* Light Mode Footer */
body.light-mode footer {
    background: rgba(0, 0, 0, 0.85) !important;
}

body.light-mode .footer-about p,
body.light-mode .footer-links a,
body.light-mode .footer-products a,
body.light-mode .footer-contact p {
    color: #ddd !important;
}

body.light-mode .footer-links a:hover,
body.light-mode .footer-products a:hover {
    color: #0066ff !important;
}

body.light-mode .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.1) !important;
}

body.light-mode .footer-bottom p {
    color: #ddd !important;
}

/* Light Mode Theme Toggle - Make it visible */
body.light-mode .theme-switch .slider {
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5) !important;
    border-color: rgba(0, 100, 255, 0.3) !important;
}

body.light-mode .theme-switch .slider:before {
    background: linear-gradient(135deg, #ff9800, #ff5722) !important;
}

/* Light Mode Footer Team Logo */
body.light-mode .footer-team-logo {
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.1), rgba(0, 150, 255, 0.1)) !important;
    border-color: rgba(0, 100, 255, 0.3) !important;
    color: #0066ff !important;
}

body.light-mode .footer-team-logo:hover {
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.2), rgba(0, 150, 255, 0.2)) !important;
    border-color: rgba(0, 100, 255, 0.6) !important;
}

/* Light Mode University and Partner Logos */
body.light-mode .uni-logo,
body.light-mode .partner-logo {
    filter: brightness(0.8) !important;
}

body.light-mode .uni-logo-card,
body.light-mode .partner-item {
    background: transparent !important;
}

/* Light Mode Mentor Stats */
body.light-mode .mentor-stats span,
body.light-mode .leader-stats span {
    background: rgba(0, 100, 255, 0.1) !important;
    color: #0066ff !important;
    border-color: rgba(0, 100, 255, 0.2) !important;
}

/* Light Mode Quotes */
body.light-mode .leader-quote,
body.light-mode .testimonial-card p {
    background: rgba(0, 0, 0, 0.03) !important;
    color: #4a4a6a !important;
}

/* Light Mode Social Icons */
body.light-mode .mentor-social a,
body.light-mode .leader-social a {
    background: rgba(0, 100, 255, 0.1) !important;
    color: #0066ff !important;
}

body.light-mode .mentor-social a:hover,
body.light-mode .leader-social a:hover {
    background: rgba(0, 100, 255, 0.2) !important;
    color: #1a1a2e !important;
}

/* Smooth Transition for All Elements */
body,
.navbar,
.nav-links a,
.offer-card,
.masterclass,
.leader-card,
.mentor-card,
.contact-grid,
.learn-more-btn,
.cta-button,
.stat-number,
.section-title,
.contact-form input,
.contact-form textarea,
.footer-team-logo,
.mentor-social a,
.leader-social a {
    transition: all 0.3s ease !important;
}

/* Nav Toggle (Mobile) */
.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1.2rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 1rem;
        text-align: center;
        gap: 1rem;
        margin: 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-controls {
        gap: 1rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .logo span {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
    }
    
    .logo span {
        font-size: 1.1rem;
    }
    
    .theme-switch {
        width: 55px;
        height: 28px;
    }
    
    .slider:before {
        height: 20px;
        width: 20px;
    }
    
    input:checked + .slider:before {
        transform: translateX(27px);
    }
}
/* ========== THEME TOGGLE BUTTON ========== */
.theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.theme-toggle i {
    font-size: 1.3rem;
    position: absolute;
    transition: all 0.3s ease;
}

.theme-toggle .fa-sun {
    color: #ffd700;
    transform: translateY(0);
    opacity: 1;
}

.theme-toggle .fa-moon {
    color: #00ffff;
    transform: translateY(30px);
    opacity: 0;
}

body.light-mode .theme-toggle .fa-sun {
    transform: translateY(-30px);
    opacity: 0;
}

body.light-mode .theme-toggle .fa-moon {
    transform: translateY(0);
    opacity: 1;
}

.theme-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* ========== LIGHT MODE STYLES ========== */
body.light-mode {
    background: #f5f5f5;
    color: #1a1a2e;
}

body.light-mode .animated-bg {
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
}

body.light-mode #ai-canvas,
body.light-mode #ai-advanced-canvas {
    opacity: 0.3;
}

body.light-mode .navbar {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 2px solid rgba(0, 100, 255, 0.2);
}

body.light-mode .nav-links a {
    color: #1a1a2e;
}

body.light-mode .nav-links a:hover {
    color: #0066ff;
}

body.light-mode .offer-card,
body.light-mode .step,
body.light-mode .testimonial-card,
body.light-mode .mentor-card,
body.light-mode .trust-card,
body.light-mode .contact-grid {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 100, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

body.light-mode .offer-card h3,
body.light-mode .step h3,
body.light-mode .mentor-card h3 {
    color: #1a1a2e;
}

body.light-mode .stat-number {
    color: #0066ff;
}

body.light-mode .masterclass {
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.05), rgba(0, 200, 255, 0.05));
    border: 1px solid rgba(0, 100, 255, 0.2);
}

body.light-mode .leader-card {
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.05), rgba(0, 200, 255, 0.05));
}

body.light-mode .learn-more-btn {
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.1), rgba(0, 150, 255, 0.1));
    border-color: rgba(0, 100, 255, 0.3);
    color: #0066ff;
}

body.light-mode .join-btn,
body.light-mode .submit-btn,
body.light-mode .cta-button {
    background: linear-gradient(135deg, #0066ff, #0055cc);
}

body.light-mode .section-title {
    background: linear-gradient(135deg, #1a1a2e, #0066ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

body.light-mode .ai-hologram,
body.light-mode .data-orbs,
body.light-mode .ai-eye,
body.light-mode .energy-waves {
    opacity: 0.2;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem 4rem;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.glow-text {
    background: linear-gradient(135deg, #fff 0%, #00ffff 50%, #8a2be2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.highlight {
    color: #00ffff;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.sub-text {
    font-size: 1rem;
    opacity: 0.7;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00ffff, #8a2be2);
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    margin-top: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.hero-image {
    flex: 1;
    position: relative;
    animation: slideInFromRight 0.8s ease-out;
}

@keyframes slideInFromRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.hero-img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* ========== WHAT WE OFFER ========== */
.offer {
    padding: 4rem 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, #00ffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.offer-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.offer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.offer-icon {
    margin-bottom: 1rem;
}

.offer-icon i {
    font-size: 2.5rem;
    color: #00ffff;
}

.offer-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.offer-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.learn-more-btn {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(138, 43, 226, 0.1));
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #00ffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    width: fit-content;
    margin-top: auto;
}

.learn-more-btn:hover {
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(138, 43, 226, 0.2));
    border-color: rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
}

a.learn-more-btn {
    text-decoration: none;
}

/* ========== MASTERCLASS SECTION FIXES ========== */
.masterclass {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(138, 43, 226, 0.05));
    border-radius: 30px;
    margin: 2rem;
    padding: 2rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.masterclass::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.05), transparent);
    animation: rotateBg 20s linear infinite;
    z-index: 0;
}

@keyframes rotateBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.masterclass-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.masterclass-content {
    flex: 1;
}

.masterclass-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.masterclass-badge i {
    margin-right: 0.5rem;
}

.masterclass h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.masterclass h2 .highlight {
    color: #00ffff;
}

.price-tag {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #00ffff;
}

.masterclass-stats {
    display: flex;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00ffff;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.3rem;
}

.masterclass-features ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.masterclass-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.masterclass-features li i {
    color: #00ffff;
    font-size: 1rem;
}

.join-btn {
    margin-top: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00ffff, #8a2be2);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.join-btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.join-btn:hover i {
    transform: translateX(5px);
}

.masterclass-image {
    flex: 1;
    position: relative;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
/* ========== MEDIUM SIZE STUDY BOX ========== */
.masterclass-image {
    flex: 0.8;
    position: relative;
}

.study-box-medium {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 255, 255, 0.1));
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Code Window */
.code-window {
    background: #0a0a0a;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.code-header {
    background: rgba(0, 0, 0, 0.8);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.code-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.code-dot.red { background: #ff5f56; }
.code-dot.yellow { background: #ffbd2e; }
.code-dot.green { background: #27c93f; }

.code-title {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 0.5rem;
    font-family: monospace;
}

.code-content {
    padding: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: #0f0;
    text-shadow: 0 0 2px #0f0;
    line-height: 1.4;
}

.code-line {
    display: block;
    margin: 2px 0;
    white-space: nowrap;
    overflow: hidden;
    animation: typingCode 2s steps(30) infinite;
}

@keyframes typingCode {
    from { width: 0; opacity: 0; }
    to { width: 100%; opacity: 1; }
}

/* Topics Grid */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.topic-item {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.topic-item:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: translateX(5px);
    border-color: rgba(0, 255, 255, 0.5);
}

.topic-item i {
    font-size: 1.1rem;
    color: #00ffff;
    width: 25px;
}

.topic-item span {
    font-size: 0.8rem;
    color: #fff;
    font-weight: 500;
}

/* Slide In Animation */
.slide-in-right {
    animation: slideInRightMedium 0.8s ease-out;
}

@keyframes slideInRightMedium {
    from {
        transform: translateX(80px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .study-box-medium {
        max-width: 350px;
    }
    
    .code-content {
        font-size: 0.6rem;
    }
    
    .topic-item i {
        font-size: 0.9rem;
    }
    
    .topic-item span {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .masterclass-image {
        flex: 1;
    }
    
    .study-box-medium {
        max-width: 100%;
    }
    
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .topic-item {
        padding: 0.5rem;
    }
}
/* Study Scene */
.study-scene {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 255, 255, 0.1));
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
    min-height: 400px;
}

/* Laptop */
.laptop {
    position: relative;
    width: 280px;
    margin: 0 auto;
    animation: laptopFloat 3s ease-in-out infinite;
}

@keyframes laptopFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.laptop-screen {
    background: #0a0a0a;
    border-radius: 10px 10px 0 0;
    padding: 1rem;
    border: 2px solid #00ffff;
    border-bottom: none;
    position: relative;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 5px;
    background: #00ffff;
    border-radius: 5px;
}

.code-lines {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: #0f0;
    text-shadow: 0 0 3px #0f0;
}

.code-line {
    display: block;
    margin: 2px 0;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 2s steps(30) infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

.laptop-base {
    width: 100%;
    height: 15px;
    background: linear-gradient(135deg, #00ffff, #8a2be2);
    border-radius: 0 0 10px 10px;
}

/* Floating Books */
.floating-books {
    position: absolute;
    top: 20%;
    left: -50px;
}

.book {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ffff;
    border-radius: 10px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    animation: bookFloat 4s ease-in-out infinite;
}

.book i {
    font-size: 1.2rem;
    color: #00ffff;
}

.book span {
    font-size: 0.7rem;
    color: #fff;
}

.book-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.book-2 {
    top: 60px;
    left: 40px;
    animation-delay: 1s;
}

.book-3 {
    top: 120px;
    left: 20px;
    animation-delay: 2s;
}

@keyframes bookFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* Study Notes */
.study-notes {
    position: absolute;
    bottom: 20%;
    right: -30px;
}

.note {
    background: rgba(0, 0, 0, 0.8);
    border-left: 3px solid #00ffff;
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: noteSlide 3s ease-in-out infinite;
}

.note i {
    color: #00ffff;
    font-size: 1rem;
}

.note p {
    margin: 0;
    font-size: 0.8rem;
    color: #fff;
}

.note:first-child { animation-delay: 0s; }
.note:last-child { animation-delay: 1.5s; }

@keyframes noteSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
}

/* Studying Student */
.studying-student {
    position: absolute;
    bottom: 10%;
    left: 30%;
    text-align: center;
    animation: studentBounce 2s ease-in-out infinite;
}

.studying-student i {
    font-size: 3rem;
    color: #00ffff;
    filter: drop-shadow(0 0 10px #00ffff);
}

.student-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes studentBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.learning-dots {
    display: flex;
    gap: 0.3rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.learning-dots span {
    width: 6px;
    height: 6px;
    background: #00ffff;
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.learning-dots span:nth-child(2) { animation-delay: 0.5s; }
.learning-dots span:nth-child(3) { animation-delay: 1s; }

@keyframes dotPulse {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Floating Elements */
.float-element {
    position: absolute;
    font-size: 1.5rem;
    color: #00ffff;
    animation: floatElement 6s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.element-2 {
    bottom: 15%;
    left: 5%;
    animation-delay: 2s;
}

.element-3 {
    top: 40%;
    right: -15px;
    animation-delay: 4s;
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

/* Responsive */
@media (max-width: 968px) {
    .masterclass-container {
        flex-direction: column;
    }
    
    .masterclass-image {
        width: 100%;
    }
    
    .study-scene {
        min-height: 450px;
    }
    
    .floating-books {
        left: -10px;
    }
    
    .study-notes {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .masterclass {
        margin: 1rem;
        padding: 1rem;
    }
    
    .masterclass h2 {
        font-size: 1.5rem;
    }
    
    .masterclass-stats {
        gap: 1rem;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
    
    .laptop {
        width: 220px;
    }
    
    .code-lines {
        font-size: 7px;
    }
    
    .floating-books,
    .study-notes {
        display: none;
    }
}

/* ========== HOW WE WORK ========== */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ffff, #8a2be2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* ========== TESTIMONIALS ========== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
}

.testimonial-card i {
    font-size: 2rem;
    color: #00ffff;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial-card p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: #00ffff;
}

/* ========== MENTORS ========== */
.mentor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.mentor-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.mentor-card:hover {
    transform: translateY(-5px);
}

.mentor-image {
    width: 130px;
    height: 130px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.mentor-card:hover .mentor-image {
    border-color: #00ffff;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.mentor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mentor-title {
    color: #00ffff;
    margin: 0.5rem 0;
    font-weight: 600;
}

.mentor-stats {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.mentor-stats span {
    background: rgba(0, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #00ffff;
}

.mentor-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.mentor-social a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.mentor-social a:hover {
    color: #00ffff;
}
/* Mentor Social Links */
.mentor-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.mentor-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    color: #00ffff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mentor-social a:hover {
    background: rgba(0, 255, 255, 0.3);
    transform: translateY(-3px);
    color: #fff;
}

/* Light Mode */
body.light-mode .mentor-social a {
    background: rgba(0, 100, 255, 0.1);
    color: #0066ff;
}

body.light-mode .mentor-social a:hover {
    background: rgba(0, 100, 255, 0.2);
    color: #1a1a2e;
}
/* ========== 2 MENTORS GRID - CENTERED WITH GAP ========== */
.mentor-grid.two-mentors {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 900px;
    margin: 2rem auto 0;
}

.mentor-grid.two-mentors .mentor-card {
    flex: 1;
    max-width: 380px;
    min-width: 280px;
}

/* Alternative: Using Grid */
.mentor-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 2rem auto 0;
}

/* Responsive */
@media (max-width: 768px) {
    .mentor-grid.two-mentors {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .mentor-grid.two-mentors .mentor-card {
        max-width: 100%;
        width: 100%;
    }
}

/* ========== TRUST SECTION ========== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.trust-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.trust-card i {
    font-size: 3rem;
    color: #00ffff;
    margin-bottom: 1rem;
}
/* ========== TRUSTED UNIVERSITIES SECTION ========== */
.trusted-universities {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.03), rgba(138, 43, 226, 0.03));
}

.universities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.uni-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    cursor: pointer;
}

.uni-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.1);
    background: rgba(0, 255, 255, 0.1);
}

/* ========== PLACEMENT PARTNERS SECTION ========== */
.placement-partners {
    padding: 4rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.partner-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.partner-card i {
    font-size: 2rem;
    color: #00ffff;
    transition: all 0.3s ease;
}

.partner-card span {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.15);
    background: rgba(0, 255, 255, 0.1);
}

.partner-card:hover i {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Light Mode Styles */
body.light-mode .uni-card,
body.light-mode .partner-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 100, 255, 0.2);
    color: #1a1a2e;
}

body.light-mode .uni-card:hover,
body.light-mode .partner-card:hover {
    background: rgba(0, 100, 255, 0.1);
    border-color: rgba(0, 100, 255, 0.4);
}

body.light-mode .partner-card span {
    color: #1a1a2e;
}

body.light-mode .trusted-universities {
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.03), rgba(0, 150, 255, 0.03));
}

/* Responsive */
@media (max-width: 768px) {
    .universities-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }
    
    .uni-card {
        font-size: 0.7rem;
        padding: 0.8rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .partner-card {
        padding: 0.8rem;
    }
    
    .partner-card i {
        font-size: 1.5rem;
    }
    
    .partner-card span {
        font-size: 0.8rem;
    }
}
/* ========== CONTACT SECTION ========== */
.contact {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.form-header i {
    font-size: 1.5rem;
    color: #00ffff;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    animation: floatImage 3s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.contact-info {
    padding: 1rem;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #00ffff;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateX(5px);
}

.info-item i {
    color: #00ffff;
    font-size: 1.2rem;
}

.social-connect {
    margin-top: 1.5rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #00ffff, #8a2be2);
    transform: translateY(-3px);
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.whatsapp-btn,
.submit-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
}

.submit-btn {
    background: linear-gradient(135deg, #00ffff, #8a2be2);
    color: #fff;
}

.whatsapp-btn:hover,
.submit-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* ========== FOOTER ========== */
footer {
    background: rgba(0, 0, 0, 0.5);
    margin-top: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem;
}

.footer-about p,
.footer-links ul,
.footer-products ul,
.footer-contact p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links ul,
.footer-products ul {
    list-style: none;
}

.footer-links a,
.footer-products a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-products a:hover {
    color: #00ffff;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========== MODAL STYLES ========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: linear-gradient(135deg, rgba(10, 10, 30, 0.98), rgba(20, 20, 50, 0.98));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: #00ffff;
    font-size: 1.5rem;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-close:hover {
    color: #00ffff;
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.modal-body h3 {
    color: #00ffff;
    margin-top: 1rem;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.modal-close-btn,
.modal-action-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.modal-close-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.modal-action-btn {
    background: linear-gradient(135deg, #00ffff, #8a2be2);
    color: #fff;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mentor-grid,
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .masterclass-container {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        flex-direction: column;
        padding: 1rem;
        text-align: center;
        gap: 1rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-controls {
        gap: 0.5rem;
    }
    
    .logo-img {
        height: 42px;
    }
    
    .nav-links a {
        font-size: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .offer-grid,
    .mentor-grid,
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .masterclass {
        margin: 1rem;
        padding: 1rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .leader-image,
    .mentor-image {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
/* ========== SECTION SPACING FIXES ========== */

/* General Section Spacing */
section {
    margin: 2rem 0;
    padding: 2rem 0;
}

/* Specific Section Spacing */
#offer, .offer {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

#masterclass, .masterclass {
    margin: 2rem;
    padding: 2rem;
}

#workflow, .workflow {
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.testimonials {
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

#mentors, .mentors {
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

#team, .leadership {
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.trust {
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

#contact, .contact {
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

footer {
    margin-top: 3rem;
    padding-top: 2rem;
}

/* Container Spacing */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Section Title Spacing */
.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    margin-bottom: 3rem;
}

/* Card Grid Spacing */
.offer-grid,
.mentor-grid,
.leadership-grid,
.trust-grid,
.testimonial-grid {
    gap: 2rem;
    margin-top: 1rem;
}

/* Individual Card Spacing */
.offer-card,
.mentor-card,
.leader-card,
.trust-card,
.testimonial-card {
    margin-bottom: 0;
}

/* Steps/Workflow Spacing */
.steps {
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    padding: 2rem;
}

/* Stats Spacing */
.hero-stats {
    gap: 4rem;
    margin-top: 3rem;
}

.masterclass-stats {
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Extra Gap Between Sections */
.workflow + .testimonials {
    margin-top: 4rem;
}

.testimonials + .mentors {
    margin-top: 4rem;
}

.mentors + .leadership {
    margin-top: 4rem;
}

.leadership + .trust {
    margin-top: 4rem;
}

.trust + .contact {
    margin-top: 4rem;
}

/* Responsive Spacing */
@media (max-width: 768px) {
    section {
        margin: 1rem 0;
        padding: 1.5rem 0;
    }
    
    .container {
        padding: 1rem;
    }
    
    .hero-stats {
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .offer-grid,
    .mentor-grid,
    .leadership-grid,
    .trust-grid,
    .testimonial-grid {
        gap: 1.5rem;
    }
    
    .steps {
        gap: 1.5rem;
    }
    
    .workflow + .testimonials,
    .testimonials + .mentors,
    .mentors + .leadership,
    .leadership + .trust,
    .trust + .contact {
        margin-top: 2rem;
    }
}
/* ========== THEME TOGGLE SWITCH ========== */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-switch-wrapper {
    display: flex;
    align-items: center;
}

.theme-switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 34px;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a2e, #0a0a0a);
    transition: 0.4s;
    border-radius: 34px;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 3px;
    background: linear-gradient(135deg, #00ffff, #8a2be2);
    transition: 0.4s;
    border-radius: 50%;
}

.slider i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    z-index: 1;
    transition: 0.3s;
}

.slider .fa-sun {
    left: 10px;
    color: #ffd700;
    opacity: 1;
}

.slider .fa-moon {
    right: 10px;
    color: #00ffff;
    opacity: 0;
}

/* Light mode state */
input:checked + .slider {
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
}

input:checked + .slider:before {
    transform: translateX(36px);
    background: linear-gradient(135deg, #ff9800, #ff5722);
}

input:checked + .slider .fa-sun {
    opacity: 0;
}

input:checked + .slider .fa-moon {
    opacity: 1;
}

/* Hover effect */
.slider:hover {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

/* ========== LIGHT MODE STYLES ========== */
body.light-mode {
    background: #f5f5f5;
    color: #1a1a2e;
}

body.light-mode .navbar {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 2px solid rgba(0, 100, 255, 0.2);
}

body.light-mode .nav-links a {
    color: #1a1a2e;
}

body.light-mode .nav-links a:hover {
    color: #0066ff;
}

body.light-mode .logo span {
    color: #1a1a2e;
}

/* Light mode cards */
body.light-mode .offer-card,
body.light-mode .step,
body.light-mode .testimonial-card,
body.light-mode .mentor-card,
body.light-mode .leader-card,
body.light-mode .trust-card,
body.light-mode .contact-grid {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 100, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

body.light-mode .offer-card h3,
body.light-mode .step h3,
body.light-mode .mentor-card h3,
body.light-mode .leader-card h3 {
    color: #1a1a2e;
}

body.light-mode .offer-card p,
body.light-mode .step p,
body.light-mode .mentor-card p {
    color: #4a4a6a;
}

/* Light mode stats */
body.light-mode .stat-number {
    color: #0066ff;
}

body.light-mode .stat-label {
    color: #4a4a6a;
}

/* Light mode masterclass */
body.light-mode .masterclass {
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.05), rgba(0, 200, 255, 0.05));
    border: 1px solid rgba(0, 100, 255, 0.2);
}

body.light-mode .masterclass-stats {
    background: rgba(0, 0, 0, 0.05);
}

body.light-mode .stat-value {
    color: #0066ff;
}

/* Light mode buttons */
body.light-mode .learn-more-btn {
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.1), rgba(0, 150, 255, 0.1));
    border-color: rgba(0, 100, 255, 0.3);
    color: #0066ff;
}

body.light-mode .learn-more-btn:hover {
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.2), rgba(0, 150, 255, 0.2));
    border-color: rgba(0, 100, 255, 0.6);
}

body.light-mode .join-btn,
body.light-mode .submit-btn,
body.light-mode .cta-button {
    background: linear-gradient(135deg, #0066ff, #0055cc);
}

/* Light mode form */
body.light-mode .contact-form input,
body.light-mode .contact-form textarea {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 100, 255, 0.3);
    color: #1a1a2e;
}

body.light-mode .contact-form input:focus,
body.light-mode .contact-form textarea:focus {
    border-color: #0066ff;
    box-shadow: 0 0 10px rgba(0, 100, 255, 0.3);
}

/* Light mode section titles */
body.light-mode .section-title {
    background: linear-gradient(135deg, #1a1a2e, #0066ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

body.light-mode .section-subtitle {
    color: #4a4a6a;
}

/* Light mode footer */
body.light-mode footer {
    background: rgba(0, 0, 0, 0.8);
}

body.light-mode .footer-links a,
body.light-mode .footer-products a {
    color: #ddd;
}

body.light-mode .footer-links a:hover,
body.light-mode .footer-products a:hover {
    color: #0066ff;
}

/* Light mode background animations - reduced opacity */
body.light-mode .ai-orb,
body.light-mode .data-stream,
body.light-mode .matrix-rain {
    opacity: 0.1;
}

/* Smooth transition for all elements */
body,
.navbar,
.offer-card,
.masterclass,
.leader-card,
.mentor-card,
.contact-grid,
.learn-more-btn,
.cta-button,
.stat-number,
.section-title,
.contact-form input,
.contact-form textarea {
    transition: all 0.3s ease;
}
/* ========== LOGO SIZE - INCREASED ========== */

/* For Image Logo */
.logo-img {
    height: 80px !important;  /* Increased from 52px to 80px */
    width: auto !important;
    max-width: 250px !important;
    object-fit: contain;
}

/* For Text Logo */
.logo span {
    font-size: 2.2rem !important;  /* Increased from 1.65rem to 2.2rem */
    font-weight: bold;
}

.logo i {
    font-size: 2.5rem !important;  /* Increased from 2rem to 2.5rem */
}

/* Logo Container */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 300px;  /* Increased from 225px to 300px */
}

/* Mobile Devices */
@media (max-width: 768px) {
    .logo-img {
        height: 60px !important;  /* Increased from 42px to 60px */
    }
    
    .logo span {
        font-size: 1.6rem !important;
    }
    
    .logo {
        max-width: 250px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .logo-img {
        height: 50px !important;
    }
    
    .logo span {
        font-size: 1.3rem !important;
    }
}
/* ========== TRUSTED UNIVERSITIES - BIGGER LOGOS ========== */
.trusted-universities {
    padding: 2rem 0 1rem 0;  /* Reduced bottom padding */
}

.universities-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    align-items: center;
    justify-items: center;
}

.uni-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.3s ease;
}

.uni-logo {
    max-width: 220px;
    width: 100%;
    height: auto;
    max-height: 110px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.uni-logo-item:hover .uni-logo {
    transform: scale(1.08);
}

/* ========== PLACEMENT PARTNERS - NO NAMES, BIGGER LOGOS ========== */
.placement-partners {
    padding: 1rem 0 4rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    align-items: center;
    justify-items: center;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.3s ease;
}

.partner-logo {
    max-width: 220px;
    width: 100%;
    height: auto;
    max-height: 110px;
    object-fit: contain;
    transition: all 0.3s ease;
    background: transparent;
}

.partner-item:hover .partner-logo {
    transform: scale(1.08);
}

/* Light Mode - Same logos, no filter change */
body.light-mode .uni-logo,
body.light-mode .partner-logo {
    filter: none;
    background: transparent;
}

/* Responsive */
@media (max-width: 1024px) {
    .universities-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .uni-logo {
        max-width: 180px;
        max-height: 90px;
    }
    
    .partner-logo {
        max-width: 180px;
        max-height: 90px;
    }
}

@media (max-width: 768px) {
    .trusted-universities {
        padding: 1.5rem 0 0.5rem 0;
    }
    
    .placement-partners {
        padding: 0.5rem 0 2rem 0;
    }
    
    .universities-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .uni-logo {
        max-width: 150px;
        max-height: 75px;
    }
    
    .partner-logo {
        max-width: 150px;
        max-height: 75px;
    }
}

@media (max-width: 480px) {
    .trusted-universities {
        padding: 1rem 0 0.5rem 0;
    }
    
    .placement-partners {
        padding: 0.5rem 0 1.5rem 0;
    }
    
    .universities-logos-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .uni-logo {
        max-width: 200px;
        max-height: 100px;
    }
    
    .partner-logo {
        max-width: 200px;
        max-height: 100px;
    }
}
/* ========== FOOTER BOTTOM WITH LOGO ========== */
.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    margin: 0;
}

.footer-team-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(138, 43, 226, 0.1));
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    color: #00ffff;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.footer-team-logo i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-team-logo .fa-heart {
    color: #ff3366;
}

.footer-team-logo:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(138, 43, 226, 0.2));
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

.footer-team-logo:hover i {
    transform: scale(1.1);
}

/* Light Mode */
body.light-mode .footer-team-logo {
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.1), rgba(0, 150, 255, 0.1));
    border-color: rgba(0, 100, 255, 0.3);
    color: #0066ff;
}

body.light-mode .footer-team-logo:hover {
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.2), rgba(0, 150, 255, 0.2));
    border-color: rgba(0, 100, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-team-logo {
        margin-top: 0.5rem;
    }
}