:root {
    --bg: #060816;
    --bg-soft: #0b1020;
    --card: rgba(14, 18, 35, 0.88);
    --text: #f5f7ff;
    --muted: #a6b0cf;
    --primary: #5b8cff;
    --primary-2: #8b5cf6;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 12px 35px rgba(0, 0, 0, 0.32);
    --shadow-hover: 0 22px 60px rgba(91, 140, 255, 0.16);
    --purple-blue-shadow: 0 0 30px rgba(91, 140, 255, 0.18), 0 0 60px rgba(139, 92, 246, 0.12);

    --light-surface: rgba(255, 255, 255, 0.92);
    --light-border: rgba(10, 18, 40, 0.08);
    --light-text: #0f1730;
    --light-muted: #6b769c;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background:
        radial-gradient(circle at top left, rgba(91, 140, 255, 0.10), transparent 28%),
        radial-gradient(circle at top right, rgba(139, 92, 246, 0.10), transparent 28%),
        linear-gradient(180deg, #060816 0%, #090d1c 100%);
    color: var(--text);
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

a,
button,
input,
textarea {
    transition: all 0.25s ease;
}

section,
footer {
    scroll-margin-top: 100px;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-2));
    z-index: 3000;
    box-shadow: 0 0 14px rgba(91, 140, 255, 0.55);
}

.navbar {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 2000;
    background: var(--light-surface);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--light-border);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    height: 46px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a i {
    font-size: 14px;
    color: var(--light-muted);
}

.nav-links a:hover,
.nav-links a.active-link {
    color: var(--primary);
    transform: translateY(-1px);
}

.nav-links a:hover i,
.nav-links a.active-link i {
    color: var(--primary);
}

.nav-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #ffffff !important;
    padding: 10px 18px;
    border-radius: 12px;
    box-shadow: 0 0 18px rgba(91, 140, 255, 0.18), 0 0 28px rgba(139, 92, 246, 0.12);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 22px rgba(91, 140, 255, 0.24), 0 0 34px rgba(139, 92, 246, 0.15);
}

.hero,
.services-hero {
    position: relative;
    padding: 120px 20px 95px;
    text-align: center;
    overflow: hidden;
}

.hero-content,
.services-hero-content {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge,
.section-tag,
.services-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(91, 140, 255, 0.12);
    border: 1px solid rgba(91, 140, 255, 0.18);
    color: #cfe0ff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
    box-shadow: var(--purple-blue-shadow);
}

.hero h1,
.services-hero h1 {
    font-size: 64px;
    line-height: 1.08;
    letter-spacing: -1.2px;
    margin-bottom: 18px;
    color: var(--text);
}

.hero p,
.services-hero p {
    max-width: 780px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.75;
    color: var(--muted);
}

.hero-buttons {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn,
.services-cta-btn,
.service-btn {
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
}

.primary-btn,
.services-cta-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #ffffff;
    padding: 14px 24px;
    box-shadow: 0 0 22px rgba(91, 140, 255, 0.22), 0 0 38px rgba(139, 92, 246, 0.16);
}

.primary-btn:hover,
.services-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(91, 140, 255, 0.3), 0 0 46px rgba(139, 92, 246, 0.2);
}

.secondary-btn {
    padding: 14px 24px;
    color: var(--text);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.secondary-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(91, 140, 255, 0.35);
    color: var(--primary);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.55;
    z-index: 1;
}

.hero-glow-one {
    width: 300px;
    height: 300px;
    background: rgba(91, 140, 255, 0.25);
    top: 40px;
    left: 8%;
}

.hero-glow-two {
    width: 320px;
    height: 320px;
    background: rgba(139, 92, 246, 0.22);
    top: 20px;
    right: 8%;
}

.trusted-strip {
    padding: 10px 20px 0;
    text-align: center;
    color: #c6d0ee;
    font-size: 15px;
}

.services-overview,
.services-section,
.why-section,
.contact-section,
.services-group-section {
    padding: 90px 20px;
}

.section-heading {
    max-width: 800px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-heading h2,
.group-heading h2,
.services-cta-content h2 {
    font-size: 40px;
    margin-bottom: 12px;
    color: var(--text);
}

.section-heading p,
.group-heading p,
.services-cta-content p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 16px;
}

.contact-subtext {
    margin-top: 10px;
    color: #d7dfff;
    font-size: 14px;
    font-weight: 600;
}

.services-container {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 320px));
    justify-content: center;
    gap: 28px;
}

.why-container {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.all-services-container {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
}

.service-card-link {
    text-decoration: none;
    display: block;
    width: 320px;
    flex: 0 0 320px;
    color: inherit;
    cursor: pointer;
}

.service-card-link .service-card {
    height: 100%;
    cursor: pointer;
}

.service-card,
.why-card {
    width: 100%;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 30px 24px;
    box-shadow: var(--shadow), var(--purple-blue-shadow);
    backdrop-filter: blur(12px);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.service-card::before,
.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(91, 140, 255, 0.08), rgba(139, 92, 246, 0.07), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-card-link:hover .service-card::before,
.why-card:hover::before {
    opacity: 1;
}

.service-card-link:hover .service-card,
.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover), 0 0 36px rgba(91, 140, 255, 0.18), 0 0 54px rgba(139, 92, 246, 0.12);
}

.service-icon,
.why-icon {
    font-size: 34px;
    color: #8ab3ff;
    margin-bottom: 16px;
}

.service-card h3,
.why-card h3 {
    font-size: 22px;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card p,
.why-card p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
}

.service-btn {
    display: inline-block;
    margin-top: auto;
    padding-top: 18px;
    color: #cfe0ff;
    font-size: 14px;
}

.service-card-link:hover .service-btn {
    color: var(--primary);
    transform: translateX(4px);
}

.why-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(91, 140, 255, 0.03));
}

.contact-info-bar {
    width: 100%;
    max-width: 950px;
    margin: 0 auto 28px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 16px;
}

.contact-info-item {
    min-width: 220px;
    flex: 1 1 240px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 18px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow), var(--purple-blue-shadow);
    color: var(--text);
    text-align: center;
    line-height: 1.5;
}

.contact-info-item i {
    color: #8ab3ff;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-info-item a,
.contact-info-item span {
    color: #cfe0ff;
    text-decoration: none;
    font-weight: 600;
    word-break: break-word;
}

.contact-info-item a:hover {
    color: var(--primary);
}

.contact-form {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    background: var(--card);
    padding: 34px;
    border-radius: 22px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow), var(--purple-blue-shadow);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row input {
    width: 50%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 16px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 14px;
    font-size: 15px;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #8f9bbd;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(91, 140, 255, 0.55);
    box-shadow: 0 0 0 4px rgba(91, 140, 255, 0.10);
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form button {
    padding: 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 0 18px rgba(91, 140, 255, 0.22), 0 0 32px rgba(139, 92, 246, 0.14);
    cursor: pointer;
}

.contact-form button:hover {
    transform: translateY(-2px);
}

.contact-form button:disabled {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}

.form-note a {
    color: #cfe0ff;
    text-decoration: none;
    font-weight: 600;
}

.form-note a:hover {
    color: var(--primary);
}

.form-status {
    min-height: 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #d7dfff;
    margin-top: 4px;
    line-height: 1.5;
}

.form-status.success {
    color: #7ff0a0;
}

.form-status.error {
    color: #ff8e8e;
}

.services-group {
    max-width: 1150px;
    margin: 0 auto 70px;
}

.services-group:last-child {
    margin-bottom: 0;
}

.group-heading {
    text-align: center;
    margin-bottom: 36px;
}

.services-cta {
    padding: 10px 20px 90px;
}

.services-cta-content {
    max-width: 1150px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(91, 140, 255, 0.18), rgba(139, 92, 246, 0.16));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 56px 30px;
    text-align: center;
    box-shadow: var(--shadow), 0 0 34px rgba(91, 140, 255, 0.18), 0 0 52px rgba(139, 92, 246, 0.12);
    backdrop-filter: blur(14px);
}

.services-cta-btn {
    display: inline-block;
    margin-top: 12px;
}

.footer {
    background: var(--light-surface);
    backdrop-filter: blur(16px);
    padding: 38px 20px;
    margin-top: 40px;
    border-top: 1px solid var(--light-border);
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.06);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.footer-icon {
    height: 46px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin: 14px 0;
}

.footer-links a {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.footer-follow {
    color: var(--light-muted);
    font-size: 14px;
    margin-top: 14px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 18px 0 10px;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 48, 0.05);
    border: 1px solid rgba(15, 23, 48, 0.08);
    color: var(--light-text);
    font-size: 18px;
    text-decoration: none;
}

.footer-socials a:hover {
    transform: translateY(-3px);
}

.footer-socials a:first-child:hover {
    background: #0077b5;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 119, 181, 0.35);
}

.footer-socials a:last-child:hover {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(221, 42, 123, 0.35);
}

.footer-tagline {
    color: var(--light-text);
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.footer-text {
    color: var(--light-muted);
    font-size: 14px;
    margin-top: 8px;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .services-container {
        grid-template-columns: repeat(2, minmax(0, 320px));
        justify-content: center;
    }

    .why-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1,
    .services-hero h1 {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        justify-content: center;
        gap: 14px;
    }

    .hero,
    .services-hero {
        padding: 95px 20px 70px;
    }

    .hero h1,
    .services-hero h1 {
        font-size: 40px;
    }

    .hero p,
    .services-hero p {
        font-size: 16px;
    }

    .section-heading h2,
    .group-heading h2,
    .services-cta-content h2 {
        font-size: 31px;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row input {
        width: 100%;
    }

    .logo-icon,
    .footer-icon {
        height: 40px;
    }

    .services-container {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .why-container {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .all-services-container {
        max-width: 360px;
    }

    .service-card-link {
        width: 100%;
        flex: 1 1 100%;
    }

    .contact-info-bar {
        max-width: 420px;
        gap: 14px;
    }

    .contact-info-item {
        width: 100%;
        min-width: 100%;
        flex: 1 1 100%;
        justify-content: center;
        padding: 14px 16px;
    }
}

@media (max-width: 600px) {
    .hero h1,
    .services-hero h1 {
        font-size: 34px;
    }

    .contact-form {
        padding: 24px;
    }

    .section-heading p,
    .group-heading p,
    .services-cta-content p {
        font-size: 15px;
    }

    .services-container,
    .all-services-container {
        max-width: 100%;
    }

    .nav-links a span {
        font-size: 14px;
    }

    .contact-info-item a,
    .contact-info-item span {
        font-size: 14px;
    }
}