html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: radial-gradient(circle at top, #102044 0%, #080B12 45%);
    color: #F5F7FA;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    background: rgba(8, 11, 18, 0.75);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
    font-weight: 700;
    letter-spacing: -0.03em;
}

nav a {
    color: #A7B0C0;
    text-decoration: none;
    margin: 0 14px;
    transition: color 0.2s ease;
}

nav a:hover {
    color: #22D3EE;
}

.nav-btn {
    padding: 10px 16px;
    border-radius: 999px;
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #3B82F6, #22D3EE);
    box-shadow: 0 0 24px rgba(34, 211, 238, 0.25);
}

.hero {
    text-align: center;
    padding: 120px 20px 80px;
    max-width: 900px;
    margin: auto;
}

.hero h1 {
    font-size: 2.8rem;
    letter-spacing: -0.04em;
}

.hero p {
    color: #A7B0C0;
    margin: 20px 0;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3B82F6, #22D3EE);
    padding: 12px 22px;
    border-radius: 999px;
    color: white;
    text-decoration: none;
    margin-right: 10px;
}

.btn-secondary {
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255, 0.15);
    color: #A7B0C0;
    text-decoration: none;
}

.card {
    background: rgba(255,255,255, 0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.25s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(34,211,238,0.4);
    box-shadow: 0 10px 30px rgba(34,211,238,0.1);
}

.glow {
    box-shadow: 0 0 25px rgba(59,130,246,0.25);
}

section {
    padding: 80px 8%;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.section-subtitle {
    max-width: 700px;
    margin: -20px auto 40px;
    text-align: center;
    color: #A7B0C0;
    line-height: 1.6;
}

.text-link {
    display: inline-block;
    margin-top: 14px;
    color: #22D3EE;
    text-decoration: none;
    font-weight: 600;
}

.text-link:hover {
    text-decoration: underline;
}



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

.contact-form {
    max-width: 640px;
    margin: auto;
    padding: 28px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(16, 22, 36, 0.9);
    color: white;
    outline: none;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(34, 211, 238, 0.55);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600px;
}

.trust-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.trust-row span {
    padding: 9px 14px;
    border-radius: 999px;
    color: #A7B0C0;
    background: rgba(255,255,255, 0.04);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.9rem;
}







.footer {
    text-align: center;
    padding: 40px;
    color: #A7B0C0;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}



/*Start Of Mobile CSS */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 16px;
        padding: 16px 6%;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    nav a {
        margin: 0;
    }

    .nav-btn {
        display: none;
    }

    .hero {
        padding: 90px 20px 60px;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }

    section {
        padding: 60px 6%;
    }
}
/*End of Mobile CSS */





/*Start of animation CSS */
.hero,
.card,
.contact-form {
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary,
.nav-btn {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover,
.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(34, 211, 238, 0.35);
}

.btn-secondary {
    transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
    border-color: rgba(34, 211, 238, 0.45);
    color: #22D3EE;
}
/*End of animation CSS */
