/* 1. NEON SPACE THEME VARIABLES */
:root {
    --primary-neon: #00f2ff;   /* Electric Cyan from Logo */
    --dark-bg: #030a16;       /* Deep Space Navy */
    --section-dark: #0a192f;  /* Slightly lighter dark for contrast */
    --text-main: #e6f1ff;     /* High-contrast light blue text */
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
}

/* 2. RESET & BASE STYLES */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body { 
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; 
    line-height: 1.6; 
    color: var(--text-main);
    background-color: var(--dark-bg);
}

.container { 
    max-width: 1300px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* 3. HERO HEADER */
.hero {
    position: relative;
    background: linear-gradient(rgba(3, 10, 22, 0.75), rgba(3, 10, 22, 0)), 
                url('images/background-cyber.JPG'); 
    background-size: cover;
    background-position: center;
    padding: 40px 0 220px 0;
    text-align: center;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    align-self: flex-start;
    margin-bottom: 60px;
}

.main-logo {
    max-width: 320px; 
    height: auto;
    filter: drop-shadow(0 0 8px var(--primary-neon));
}

.hero h1 { 
    font-size: clamp(2rem, 8vw, 3.5rem); 
    margin-bottom: 20px; 
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
    word-wrap: break-word;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 40px;
}

/* 4. NEON BUTTONS */
.hero-btns {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary { 
    background: var(--primary-neon); 
    color: var(--dark-bg); 
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.6);
    transform: translateY(-2px);
}

/* 5. SECTION STYLING */
section { padding: 55px 0; }
.grey-bg { background: var(--section-dark); }
.dark-bg { background: #010409; }

h2 { 
    font-size: 2.5rem; 
    margin-bottom: 30px; 
    color: var(--primary-neon); 
}

/* 6. GRID SYSTEMS */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image Placeholders */
.image-placeholder, .image-placeholder2, .image-placeholder3 {
    width: 100%;
    min-height: 400px;
    border-radius: 12px;
    border: 1px solid rgba(0, 242, 255, 0.3);
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
}

.intro-photo { 
    background-image: linear-gradient(rgba(3, 10, 22, 0.3), rgba(3, 10, 22, 0.3)), url('images/roadphoto.png'); 
}

.intro-photo3 { 
    background-image: linear-gradient(rgba(3, 10, 22, 0.3), rgba(3, 10, 22, 0.3)), url('images/office.png'); 
}
.intro-photo2{ 
    background-image: linear-gradient(rgba(3, 10, 22, 0.3), rgba(3, 10, 22, 0.3)), url('images/manpc.png'); 
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background: var(--glass);
    padding: 30px;
    border: 1px solid rgba(0, 242, 255, 0.1);
    border-radius: 8px;
    transition: border 0.3s;
}

.feature-item:hover { border-color: var(--primary-neon); }

/* 7. STATS BARS */
.stats-bar, .stats-bar2, .stats-bar3 {
    display: grid;
    background: var(--glass);
    padding: 40px;
    border-radius: 60px;
    border: 1px solid rgba(0, 242, 255, 0.2);
    text-align: center;
    gap: 30px
}

.stats-bar { grid-template-columns: repeat(4, 1fr); }
.stats-bar2 { grid-template-columns: repeat(2, 1fr); }
.stats-bar3 { 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
}

.stat-item strong {
    display: block;
    color: var(--primary-neon);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* 8. FAQ ACCORDION */
.faq-item { margin-bottom: 15px; }

.faq-question {
    width: 100%;
    padding: 20px 30px;
    text-align: left;
    background: var(--section-dark);
    color: var(--white);
    border: 1px solid rgba(0, 242, 255, 0.2);
    font-weight: bold;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    margin: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
    border: 1px solid rgba(0, 242, 255, 0.1);
    border-top: none;
}

.faq-item.active .faq-question {
    border-radius: 25px 25px 0 0;
    border-color: var(--primary-neon);
}

/* 9. GLOBAL MODULE BUTTONS (Works for Desktop & Mobile) */
.module-section {
    text-align: center;
    max-width: 450px;
    margin: 0 auto;
}

.module-title {
    color: var(--primary-neon);
    font-weight: bold;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.module-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.module-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: transparent;
    color: var(--primary-neon);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1.5px;
    border: 2px solid var(--primary-neon);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.1);
}

.module-btn:hover {
    background-color: var(--primary-neon);
    color: var(--dark-bg);
    box-shadow: 0 0 20px var(--primary-neon);
    transform: translateY(-3px);
}
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px; /* Pill shape */
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
    margin-top: 20px;
}

.instagram {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.instagram i {
    font-size: 1.2rem;
    color: var(--primary-neon); /* Keeps the neon theme */
}

.instagram:hover {
    border-color: var(--primary-neon);
    background: rgba(0, 242, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
    transform: translateY(-3px);
}

/* 10. RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .container {
        width: 100% !important;
        padding: 0 20px !important;
        overflow: hidden;
    }

    .grid, 
    .stats-bar, 
    .stats-bar2, 
    .stats-bar3,
    .feature-grid { 
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
    }

    h1, h2 {
        font-size: 1.8rem !important;
        line-height: 1.2;
    }

    .stats-bar, .stats-bar2, .stats-bar3 {
        border-radius: 20px !important;
        padding: 20px !important;
    }

    .image-placeholder, .image-placeholder2 {
        min-height: 200px !important;
        height: 250px !important;
    }

    .hero {
        padding: 40px 0 100px 0 !important;
    }

    .main-logo {
        max-width: 180px !important;
    }
}