.logo {
    display: flex;
    align-items: center;
    /* gap: 10px; */
}

.logo img {
    height: 64px;
    width: auto;
}

.logo span {
    font-weight: 600;
    font-size: 18px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: #05070d;
    color: white;
    overflow-x: hidden; /* 🔥 FIXES RIGHT SCROLL ISSUE */
}

/* CONTAINER */
.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* NAVBAR */
.navbar {
    position: fixed;
    width: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

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

.logo {
    font-weight: 700;
    font-size: 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* 🔥 PREVENTS OVERFLOW */
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
}

.cta {
    background: linear-gradient(90deg, #007bff, #00d4ff);
    border: none;
    padding: 8px 16px;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at 20% 30%, rgba(0,123,255,0.2), transparent),
                radial-gradient(circle at 80% 70%, rgba(0,212,255,0.2), transparent),
                #05070d;
}

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

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.subtitle {
    color: #aaa;
    margin-bottom: 10px;
}

.desc {
    color: #bbb;
    margin-bottom: 20px;
}

/* SECTION */
.section {
    padding: 80px 0;
    text-align: center;
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* CARD */
.card {
    background: #0b1220;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0,123,255,0.2);
}

.card h3 {
    color: #00d4ff;
    margin-bottom: 15px;
}

.card ul {
    text-align: left;
    padding-left: 20px;
}

/* TRUST TEXT */
.trust {
    margin-top: 30px;
    color: #00ffcc;
}

/* CENTER BUTTON */
.center {
    margin-top: 20px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: black;
}

/* MOBILE */
@media(max-width: 768px) {

    .hero h1 {
        font-size: 26px;
    }

    .nav-links {
        gap: 10px;
    }
}

/* ACTIVE NAV LINK */
.nav-links a.active {
    color: #00d4ff;
    font-weight: 600;
}

/* ABOUT HERO */
.about-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0,123,255,0.2), transparent),
                #05070d;
}

.about-hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

/* SPLIT LAYOUT */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
    max-width: 900px;
    margin: auto;
}

/* DARK SECTION */
.dark {
    background: #070c18;
}

/* GRID 3 */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* WHY LIST */
.why-list {
    margin-top: 20px;
    text-align: left;
    line-height: 2;
}

/* MOBILE */
@media(max-width: 768px) {
    .split {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 28px;
    }
}

/* CONTACT GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* LEFT SIDE */
.contact-info h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.info-box {
    margin: 20px 0;
    line-height: 1.8;
}

/* SOCIAL LINKS */
.socials {
    margin-top: 20px;
}

.socials a {
    margin-right: 15px;
    color: #00d4ff;
    text-decoration: none;
    font-weight: 500;
}

/* FORM CARD */
.contact-form {
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,212,255,0.1);
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 6px;
    background: #0b1220;
    color: white;
}

/* INPUT FOCUS */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: 1px solid #00d4ff;
}

/* MOBILE */
@media(max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}