@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Orbitron:wght@400;700&display=swap');

:root {
    --bg-dark: #0A0E14;
    --bg-card: rgba(255, 255, 255, 0.03);
    --primary: #FF9D00;
    --primary-glow: rgba(255, 157, 0, 0.4);
    --accent: #FFD700;
    --text-main: #FFFFFF;
    --text-dim: #A0A0A0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-dark);
    background-image: linear-gradient(to bottom, rgba(10, 14, 20, 0.8), rgba(10, 14, 20, 0.95)), url('site-bg.png');
    background-attachment: fixed;
    background-size: cover;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .heading-font {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--primary);
    color: #000;
    padding: 0.8rem 0;
    text-align: center;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 100;
}

.announcement-bar .pulse-icon {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse-dark 1.5s infinite;
}

@keyframes pulse-dark {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

/* Background Grids & Blobs */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 157, 0, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 157, 0, 0.05) 0%, transparent 40%);
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: 
        linear-gradient(var(--glass-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
}

/* Navigation */
nav {
    position: sticky !important;
    top: 0;
    width: 100%;
    min-height: 80px;
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

nav.scrolled {
    background: rgba(10, 14, 20, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    width: 100%;
}

.logo {
    font-family: 'Orbitron', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
    letter-spacing: 2px !important;
    white-space: nowrap !important;
    display: block !important;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    width: 100%;
}

.nav-links {
    display: flex !important;
    gap: 2rem !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
}

.nav-links a {
    color: var(--text-dim) !important;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

/* Sections */
section {
    padding: 120px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
}

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

.hero .grid-3 {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(255, 157, 0, 0.2);
}

.revenue-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #000;
    padding: 1.5rem;
    border: 1px solid var(--primary);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 5;
}

.revenue-badge .amount {
    font-family: 'Orbitron';
    color: var(--primary);
    font-size: 1.5rem;
}

.revenue-badge .label {
    color: var(--text-dim);
    font-size: 0.8rem;
}

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

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 157, 0, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #FFF, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 span {
    display: block;
    color: var(--primary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px var(--primary-glow);
    border: none;
}

.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
}
/* Mentor Section */
.mentor-section {
    padding: 120px 0;
    position: relative;
}

.mentor-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.mentor-image-container {
    position: relative;
}

.mentor-image-container img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5), 0 0 20px var(--primary-glow);
    border: 1px solid var(--glass-border);
}

.mentor-image-container::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.mentor-bio h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.mentor-bio p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dim);
}

.mentor-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-align: center;
}

.stat-item span {
    display: block;
    font-family: 'Orbitron';
    color: var(--primary);
    font-size: 1.5rem;
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

/* Join Section */
.join-container {
    text-align: center;
}

.join-card {
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid var(--primary);
}

.join-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.join-form input, .join-form select, .join-form textarea {
    padding: 1rem;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
    color: #fff;
    border-radius: 4px;
    font-family: inherit;
    transition: var(--transition);
    width: 100%;
}

.join-form select option {
    background: #000;
    color: #fff;
}

.join-form input:focus, .join-form select:focus, .join-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 157, 0, 0.05);
}

/* Admin Specific */
.admin-body {
    background: #05070a;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.admin-table th, .admin-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.admin-table th {
    color: var(--primary);
    font-family: 'Orbitron';
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Footer Section */
footer {
    padding: 6rem 0 4rem;
    background: #020406;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.footer-brand {
    flex: 1.5;
}

.footer-contact {
    flex: 1;
    text-align: right;
}

.footer-brand .logo {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 0.9rem;
    max-width: 400px;
}

.footer-contact h3 {
    font-family: 'Orbitron';
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-end;
}

.contact-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.contact-links a:hover {
    color: var(--primary);
    transform: translateX(-5px);
}

.contact-links i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .contact-links {
        align-items: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }
}

.status-badge {
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-pending { background: rgba(255, 157, 0, 0.1); color: var(--primary); }
.status-shortlisted { background: rgba(0, 255, 100, 0.1); color: #00ff64; }
.status-rejected { background: rgba(255, 50, 50, 0.1); color: #ff3232; }

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--primary-glow);
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-main);
}

/* Cards & Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--primary);
    background: rgba(255, 157, 0, 0.02);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* Calculator Section */
.calculator-box {
    background: #000;
    border: 2px solid var(--primary);
    padding: 3rem;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 0 50px rgba(255, 157, 0, 0.1);
}

.slider-container {
    margin-bottom: 2rem;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

input[type="range"] {
    width: 100%;
    accent-color: var(--primary);
    cursor: pointer;
}

.result-box {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 157, 0, 0.05);
    border-radius: 8px;
    margin-top: 2rem;
}

.result-value {
    font-size: 3.5rem;
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
    display: block;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.5; }
}

.glow-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse 2s infinite;
}

/* Responsive */
.mobile-menu-toggle {
    display: none;
}

@media (max-width: 992px) {
    .hero .grid-3 {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero p {
        margin: 0 auto 2.5rem;
    }
    .cta-group {
        justify-content: center;
    }
    .mentor-card {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero { padding: 150px 0 100px; height: auto; }
    .cta-group { flex-direction: column; }
    
    /* Mobile Menu Logic */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 30px;
        height: 2px;
        background: var(--text-main);
        transition: var(--transition);
    }

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

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

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-family: 'Orbitron';
    }

    .stat-item { padding: 1rem; }
    .glass-card { padding: 1.5rem; }
}

/* Roadmap Section */
.roadmap-timeline {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
    padding: 2rem 0;
}

.roadmap-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--glass-border);
    transform: translateX(-50%);
}

.roadmap-step {
    display: flex;
    width: 100%;
    margin-bottom: 4rem;
    position: relative;
    align-items: center;
}

.roadmap-step.left {
    justify-content: flex-start;
}

.roadmap-step.right {
    justify-content: flex-end;
}

.roadmap-content {
    width: 44%;
    position: relative;
}

.roadmap-number {
    position: absolute;
    top: 50%;
    background: var(--primary);
    color: #000;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    transform: translate(-50%, -50%);
    z-index: 5;
    box-shadow: 0 0 15px var(--primary-glow);
    left: 50%;
}

.roadmap-step.left .roadmap-content {
    text-align: right;
}

.roadmap-step.right .roadmap-content {
    text-align: left;
}

@media (max-width: 768px) {
    .roadmap-line {
        left: 30px;
    }
    .roadmap-step {
        justify-content: flex-start !important;
        padding-left: 70px;
    }
    .roadmap-content {
        width: 100% !important;
        margin: 0 !important;
        text-align: left !important;
    }
    .roadmap-step .roadmap-number {
        left: 30px;
    }
}

/* Asset Plan Section */
.plan-card {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.plan-days {
    font-family: 'Orbitron';
    color: var(--primary);
    font-size: 0.8rem;
    letter-spacing: 2px;
    background: rgba(255, 157, 0, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    width: fit-content;
}

.plan-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.plan-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-dim);
}

.plan-list li i {
    color: var(--primary);
    font-size: 0.9rem;
}

.plan-card.highlights {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 157, 0, 0.05) 0%, transparent 100%);
    box-shadow: 0 0 30px rgba(255, 157, 0, 0.1);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background: var(--bg-dark);
    margin: auto;
    padding: 0;
    border: 1px solid var(--primary);
    width: 90%;
    max-width: 800px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 50px var(--primary-glow);
    transform: scale(0.8);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    color: var(--text-dim);
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary);
}

.modal-banner {
    width: 100%;
    line-height: 0;
}

.modal-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.modal-actions {
    padding: 2rem;
    text-align: center;
    background: rgba(255, 157, 0, 0.05);
}

.btn-block {
    display: block;
    width: 100%;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
    }
}
