/* style.css - Complete stylesheet */
:root {
    --bg: #0d0208;
    --bg-secondary: #0a0a0a;
    --primary: #f66161;
    --secondary: #ff0202;
    --accent: #3b0000;
    --text: #06ff3c;
    --text-dim: #ffffff;
    --border: #fffb11;
    --hover: #1f0d0d;
    --danger: #475bf6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, var(--bg) 0%, var(--accent) 100%);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 2, 8, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid var(--border);
    box-shadow: 0 0 30px var(--primary);
    transition: all 0.3s ease;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--text), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    text-shadow: 0 0 20px var(--text);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px var(--text); }
    to { text-shadow: 0 0 40px var(--text), 0 0 60px var(--primary); }
}

.nav-link {
    padding: 12px 24px;
    margin: 0 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.neon-btn {
    border: 2px solid var(--border);
    color: var(--text);
    font-family: inherit;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    box-shadow: 0 0 20px var(--border);
    transition: all 0.3s ease;
}

.neon-btn:hover {
    background: var(--border);
    color: var(--bg);
    box-shadow: 0 0 40px var(--border);
    transform: translateY(-3px);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--text), var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s infinite;
    text-shadow: 0 0 50px var(--text);
    line-height: 1.2;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: var(--text-dim);
    text-shadow: 0 0 10px var(--text);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.hero-banner {
    position: absolute;
    right: 6%;
    top: 55%;
    transform: translateY(-50%);
    z-index: 1;
}

.banner-img {
    max-width: 750px;
    height: auto;
    border: 2px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 0 50px var(--primary);
}

/* Sections */
.section {
    padding: 80px 0;
}

.bg-secondary {
    background: rgba(10, 10, 10, 0.8);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
    text-shadow: 0 0 30px var(--primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--border);
    box-shadow: 0 0 20px var(--border);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.pgp-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(6, 255, 60, 0.1);
    border-left: 4px solid var(--text);
    border-radius: 8px;
}

.pgp-key {
    font-family: monospace;
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 5px;
    display: block;
    word-break: break-all;
    font-size: 0.95rem;
    border: 1px solid var(--text);
}

.content-video video {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    border: 2px solid var(--border);
    box-shadow: 0 0 30px var(--primary);
    margin-bottom: 1.5rem;
}

.pdf-download {
    width: 100%;
    text-align: center;
    padding: 12px 24px;
}

/* Cards */
.vision-mission-grid, .objectives-grid, .industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: rgba(59, 0, 0, 0.4);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 251, 17, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.objective-card, .industry-card {
    background: rgba(6, 255, 60, 0.15);
    border: 2px solid var(--text);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.objective-card:hover, .industry-card:hover {
    background: rgba(6, 255, 60, 0.25);
    transform: translateY(-10px);
}

.objective-icon, .industry-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.industry-card h3 {
    color: var(--danger);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.industry-link {
    color: var(--danger);
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
    padding: 8px 20px;
    border: 1px solid var(--danger);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.industry-link:hover {
    background: var(--danger);
    color: var(--bg);
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid var(--border);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 251, 17, 0.1);
}

.faq-item h4 {
    padding: 1.8rem 2.5rem;
    cursor: pointer !important;
    background: linear-gradient(135deg, rgba(255, 251, 17, 0.1), rgba(255, 251, 17, 0.05));
    color: var(--border) !important;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    margin: 0;
    user-select: none;
}

.faq-item h4:hover {
    background: linear-gradient(135deg, rgba(255, 251, 17, 0.25), rgba(255, 251, 17, 0.15));
    box-shadow: 0 5px 20px rgba(255, 251, 17, 0.3);
    transform: translateX(10px);
}

.faq-arrow {
    float: right;
    transition: transform 0.4s ease;
    font-size: 0.9rem;
    margin-left: 1rem;
}

.faq-item.active h4 .faq-arrow {
    transform: rotate(180deg);
}

.faq-item p {
    padding: 0 2.5rem 2rem;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(135deg, rgba(6, 255, 60, 0.1), rgba(6, 255, 60, 0.05));
    border-left: 4px solid var(--text);
    color: var(--text-dim);
    line-height: 1.7;
}

.faq-item.active p {
    max-height: 400px;
    padding: 2rem 2.5rem 2.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--accent), var(--bg));
    color: var(--text-dim);
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer h3, .footer h4 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.footer a {
    color: var(--text-dim);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--text);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 1rem 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}