/* Base & Reset */
:root {
    --primary-bg: #0A1128; /* Deep Navy */
    --secondary-bg: #141E3A;
    --accent-glow: #B026FF; /* Purple Neon */
    --accent-cyan: #00E5FF; /* Cyan Accents */
    --gold: #FACC15;
    --text-main: #FFFFFF;
    --text-muted: #9CA3AF;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-gradient {
    background: linear-gradient(90deg, var(--gold), var(--accent-cyan));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hollow-text {
    font-size: 3rem;
    color: transparent;
    -webkit-text-stroke: 1px var(--accent-cyan);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 4rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-glow), var(--accent-cyan));
    color: #fff;
    box-shadow: 0 4px 15px rgba(176, 38, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.6);
}

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

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 17, 40, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.logo-text {
    color: var(--gold);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list a {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-list a:hover, .nav-list a.active {
    color: var(--accent-cyan);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

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

/* Decorative Background */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(176, 38, 255, 0.2) 0%, rgba(10, 17, 40, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.tagline {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.dynamic-heading {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.typewriter-text {
    display: inline-block;
    min-width: 300px;
}

.hero-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--primary-bg), var(--secondary-bg));
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-cyan);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Services */
.services {
    padding: 5rem 0;
    background-color: var(--secondary-bg);
}

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

.service-card {
    display: block;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-glow);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Stats */
.stats {
    padding: 4rem 0;
    background: var(--primary-bg);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.stat-item h3 {
    font-size: 3rem;
    display: inline-block;
    color: var(--accent-cyan);
}

.stat-item span {
    font-size: 2rem;
    color: var(--accent-cyan);
    font-weight: 700;
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0 5rem;
    background: var(--primary-bg);
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info, .contact-form {
    flex: 1;
}

.contact-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--accent-glow);
    font-weight: 700;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-details li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.contact-details i {
    color: var(--accent-cyan);
    font-size: 1.2rem;
}

.contact-social-links {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.contact-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.contact-social-links a:hover {
    background: var(--accent-glow);
    border-color: var(--accent-glow);
    transform: translateY(-3px);
}

/* Site Footer */
.site-footer {
    background-color: #334155; /* Slate Background */
    padding: 4rem 0 2rem;
    color: #cbd5e1;
    font-family: 'Poppins', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 2rem;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-brand .logo-box {
    background-color: #00E5FF;
    color: #0A1128;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 1.3rem;
    border-radius: 4px;
}

.footer-brand .logo-text {
    color: #00E5FF;
    font-weight: 700;
    font-size: 1.3rem;
    font-family: 'Montserrat', sans-serif;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #94a3b8;
}

.site-footer h4 {
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.site-footer ul li {
    margin-bottom: 15px;
}

.site-footer ul li a, .site-footer ul li {
    color: #94a3b8;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.site-footer ul li a:hover {
    color: #00E5FF;
}

.site-footer ul li i {
    width: 20px;
    margin-right: 10px;
    font-size: 1rem;
}

.site-footer .footer-social {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.site-footer .footer-social a {
    color: #94a3b8;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.site-footer .footer-social a:hover {
    color: #00E5FF;
}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: #111424;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: #171B30;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--primary-bg);
    color: #fff;
}

.contact-form .btn-primary {
    background: linear-gradient(90deg, #A855F7, #06B6D4);
    box-shadow: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    margin-top: 10px;
}

.contact-form .btn-primary:hover {
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4);
    transform: translateY(-2px);
}

.site-footer .footer-bottom {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: none;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #94a3b8;
    text-align: center;
}

.site-footer .scroll-top {
    position: absolute;
    right: 20px;
    color: #00E5FF;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container, .about-content, .contact-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-description {
        margin: 0 auto 30px;
    }

    .contact-details li {
        justify-content: center;
    }

    .contact-social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Hide menu initially */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-bg);
        padding: 20px 0;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
    }

    .mobile-toggle {
        display: block;
    }

    .dynamic-heading {
        font-size: 2.5rem;
    }
    
    .hollow-text {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand .footer-logo, .site-footer ul li, .site-footer .footer-bottom {
        justify-content: center;
    }

    .site-footer .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}
