/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* BODY */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #0a1f44, #0f3c78);
    color: white;
}

/* GLOBAL TEXT */
h2 {
    margin-bottom: 10px;
}

p {
    line-height: 1.5;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 80px;
}

/* LOGO TEXT */
.logo-text h1 {
    font-size: 26px;
    color: white;
}

.logo-text h1 span {
    background: linear-gradient(90deg, #00c6ff, #66ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text p {
    font-size: 11px;
    letter-spacing: 2px;
    color: #cce6ff;
}

/* NAV */
nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: #66ccff;
}

/* HERO */
.hero {
    position: relative;
    min-height: 70vh; /* reduced height */
    padding: 30px 20px 10px;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* moves content up */
    text-align: center;
    overflow: hidden;
}

/* GLOW BACKGROUND */
.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00c6ff33, transparent);
    filter: blur(100px);
}

/* HERO CONTENT */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-top: 60px; /* controls vertical position */
}

/* BRAND */
.brand {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

/* ROCKET */
.rocket {
    width: 80px;
    margin-right: 12px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px #00c6ff);
}

/* FLOAT ANIMATION */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* BRAND TEXT */
.brand h1 {
    font-size: 34px;
}

.brand span {
    background: linear-gradient(90deg, #00c6ff, #66ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SUBTITLE */
.sub {
    font-size: 11px;
    letter-spacing: 2px;
    color: #cce6ff;
}

/* HERO TITLE */
.hero h2 {
    margin-top: 10px;
    font-size: 22px;
}

/* SERVICES LIST */
.services-list p {
    font-size: 16px;
    margin: 4px 0;
}

/* TRUST */
.trust {
    margin-top: 8px;
    font-size: 13px;
    color: #cce6ff;
}

/* BUTTON */
.btn {
    display: inline-flex;            /* 🔥 key fix */
    justify-content: center;
    align-items: center;

    width: 100%;                     /* same width */
    max-width: 260px;

    padding: 12px;
    font-size: 14px;
    font-weight: bold;

    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: white;
    text-decoration: none;

    border: none;
    border-radius: 6px;

    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 10px #00c6ff;
}

.btn:hover {
    box-shadow: 0 0 20px #00c6ff;
    transform: scale(1.05);
}

/* CONTACT */
.contact {
    margin-top: 20px;
    font-size: 13px;
    color: #cce6ff;
}

/* FIX GAP AFTER HERO */
.hero + p {
    margin: 10px 0 !important;
}

/* SECTION BASE */
.services,
.why,
.pricing,
.cta {
    text-align: center;
    padding: 30px 20px; /* tighter spacing */
   
}

/* CARDS */
.card {
    display: inline-block;
    width: 250px;
    margin: 10px;
    padding: 18px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px #00c6ff44;
}

.card h3 {
    color: #66ccff;
}

/* WHY */
.why-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.why-box {
    width: 250px;
    margin: 10px;
    padding: 18px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    transition: 0.3s;
}

.why-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px #00c6ff44;
}

/* PRICING */
.price-box {
    display: inline-block;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
}

.price {
    font-size: 24px;
    color: #00c6ff;
    margin: 6px 0;
}

.price-note {
    font-size: 13px;
    color: #cce6ff;
    margin: 6px 0;
}

.cta-content {
    max-width: 600px;
    margin: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cta h2 {
    margin-bottom: 10px;
}

.cta p {
    margin-bottom: 10px;
}

/* Button variations */
.btn.primary {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
}

.btn.secondary {
    background: transparent;
    border: 1px solid #00c6ff;
}

.btn.secondary:hover {
    background: #00c6ff;
    color: #000;
}
.intro-text {
    text-align: center;
    margin: 15px 0;
    color: #cce6ff;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 15px;
background: #081a38; /* solid dark blue */
}

.demo-hero {
    text-align: center;
    padding: 40px 20px;
}

.demo-list {
    text-align: center;
    padding: 30px 20px;
}

.demo-card {
    display: inline-block;
    padding: 25px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    width: 300px;
}

.contact-page {
    text-align: center;
    padding: 50px 20px;
    flex: 1; /* THIS pushes footer down */
}
.contact-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-card {
    width: 300px;
    padding: 25px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
    text-align: center;
}

.contact-card h3 {
    margin-bottom: 10px;
}

.form-sub {
    font-size: 13px;
    color: #cce6ff;
    margin-bottom: 10px;
}

.contact-card input,
.contact-card textarea {
    width: 100%;
    padding: 10px;
    margin: 6px 0;
    border-radius: 6px;
    border: none;
}

.contact-card textarea {
    height: 100px;
}

.contact-card .btn {
    width: 100%;
    margin-top: 10px;
}

.contact-box {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.contact-info {
    padding: 25px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
    width: 300px;
}

/* TRUST LINE */
.trust {
    margin-top: 10px;
    color: #cce6ff;
    font-size: 14px;
}

/* RESPONSE LINE */
.response {
    margin-top: 10px;
    font-size: 13px;
    color: #66ccff;
}


/* SERVICES PAGE */
.services-page {
    text-align: center;
    padding: 50px 20px;
}

.services-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 20px;
}

/* SERVICE CARDS */
.service-card {
    display: flex;
    flex-direction: column;

    width: 260px;
    min-height: 240px;

    padding: 22px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);

    transition: 0.3s;
}
.service-card .btn {
    margin-top: auto;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 15px #00c6ff44;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.service-card p {
    font-size: 14px;
    color: #cce6ff;
}

/* PRICE */
.price {
    margin-top: 10px;
    color: #00c6ff;
    font-weight: bold;
}

.btn {
    font-weight: bold;
}

.services,
.why,
.pricing,
.cta {
    max-width: 1100px;
    margin: auto;
}

.alert {
    max-width: 400px;
    margin: 15px auto;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
}

.alert.success {
    background: rgba(0, 200, 0, 0.2);
    color: #00ff88;
}

.alert.error {
    background: rgba(255, 0, 0, 0.2);
    color: #ff6b6b;
}

.alert {
    transition: opacity 0.5s ease;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

    /* 🔥 REMOVE GRADIENT (fix shadow issue) */
    body {
        background: #0a1f44;
    }

    /* HEADER */
    .header {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
    }

    nav {
        margin-top: 8px;
    }

    nav a {
        margin: 0 8px;
    }

    /* HERO FIX */
    .hero {
        min-height: auto;
        display: block;
        padding: 20px 15px;
    }

    /* TEXT SPACING FIX */
    .intro-text {
        margin: 0;
        padding: 5px 0;
    }

    /* SECTIONS */
    .services,
    .why,
    .pricing {
        padding: 25px 15px;
    }

    /* CARDS FULL WIDTH */
    .card,
    .why-box,
    .price-box {
        width: 90%;
        margin: 10px auto;
    }
}