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

body {
    font-family: 'Inter', sans-serif;
    background: #0b0c10;
    color: white;
    overflow-x: hidden;
}

/* ================= HEADER ================= */

header {
    position: fixed;
    width: 100%;
    padding: 25px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(15px);
    z-index: 1000;
}

.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-main {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 3px;
    color: #00f0ff;
}

.logo-sub {
    font-size: 0.7rem;
    opacity: 0.6;
    letter-spacing: 2px;
    font-weight: bold;
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #00f0ff;
}

/* ================= HERO ================= */

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, #101427 0%, #0b0c10 70%);
    overflow: hidden;
}

/* Animated floating neon glow */
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #6a00ff55, transparent 70%);
    animation: float 12s infinite alternate ease-in-out;
}

.hero::after {
    background: radial-gradient(circle, #00f0ff55, transparent 70%);
    right: -200px;
    bottom: -200px;
    animation-delay: 4s;
}

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

/* Subtle brick grid background */
.hero-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 60px 30px;
    animation: moveGrid 15s linear infinite;
    opacity: 0.2;
}

@keyframes moveGrid {
    0% { background-position: 0 0; }
    100% { background-position: 60px 30px; }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 8px;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    background: linear-gradient(90deg, #00f0ff, #6a00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    margin-top: 20px;
    font-size: 1.3rem;
    opacity: 0.85;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons a {
    margin: 10px;
}

.primary-btn {
    padding: 15px 40px;
    border-radius: 40px;
    background: linear-gradient(90deg, #00f0ff, #6a00ff);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    margin-right: 15px;
}

.secondary-btn {
    padding: 15px 40px;
    border-radius: 40px;
    border: 2px solid #00f0ff;
    color: #00f0ff;
    text-decoration: none;
}

/* ================= SECTION BASE ================= */

.section {
    padding: 50px 10%;
    text-align: center;
}

.section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #00f0ff, #6a00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================= ABOUT ================= */

.about-container {
    max-width: 900px;
    margin: auto;
    line-height: 1.8;
    opacity: 0.85;
}

.about-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.highlight {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 20px;
    width: 250px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.highlight:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.08);
}

/* ================= CONTACT ================= */

.contact-box {
    max-width: 700px;
    margin: auto;
    background: rgba(255,255,255,0.05);
    padding: 50px;
    border-radius: 25px;
    backdrop-filter: blur(15px);
}

.contact-box p {
    margin-bottom: 15px;
    opacity: 0.85;
}

.contact-email {
    font-size: 1.2rem;
    color: #00f0ff;
    margin-top: 20px;
}

/* ================= FOOTER ================= */

footer {
    padding: 40px;
    text-align: center;
    background: rgba(0,0,0,0.6);
    margin-top: 80px;   
}

footer div span {
    display: block;
}

footer p, Address {
    font-size: 1.1rem;
    opacity: .85;
}

footer .privacy-policy {
    color: #00f0ff;
    text-decoration: none;
    display: block;
    margin: 30px 0;
}

footer .copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    /* nav { display: none; } */
}
