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


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Inter,
        Arial,
        sans-serif;

    background: #f7fbff;

    color: #0f172a;

    overflow-x: hidden;

}


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

.header {

    height: 82px;

    padding: 0 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    position: relative;

    z-index: 100;

    background: rgba(255,255,255,.85);

    backdrop-filter: blur(20px);

    border-bottom: 1px solid #e5eef8;

}


.logo {

    font-size: 22px;

    font-weight: 800;

    letter-spacing: -.5px;

    color:#105ce8 ;

}


.logo span {

    color: #03125a;

}


.navigation {

    display: flex;

    gap: 38px;

}


.navigation a {

    text-decoration: none;

    color: #64748b;

    font-size: 14px;

    font-weight: 500;

    transition: .25s;

}


.navigation a:hover {

    color: #2563eb;

}


.header-button {

    text-decoration: none;

    padding: 12px 20px;

    border-radius: 12px;

    background: #2563eb;

    color: white;

    font-size: 14px;

    font-weight: 600;

    transition: .3s;

}


.header-button:hover {

    transform: translateY(-2px);

    background: #1d4ed8;

}


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

.hero {

    min-height: 760px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    padding: 80px 8%;

    background:
        linear-gradient(
            135deg,
            #f9fcff 0%,
            #eef7ff 55%,
            #e4f1ff 100%
        );

}


.hero-background-grid {

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            rgba(37,99,235,.045) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(37,99,235,.045) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    mask-image:
        linear-gradient(
            to right,
            black,
            transparent
        );

}


.hero-glow {

    position: absolute;

    width: 700px;

    height: 700px;

    right: -180px;

    top: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(37,99,235,.16),
            transparent 65%
        );

    filter: blur(20px);

}


.hero-content {

    position: relative;

    z-index: 10;

    max-width: 720px;

}


.hero-label,
.section-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #2563eb;

    margin-bottom: 22px;

}


.status-dot {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #2563eb;

    box-shadow:
        0 0 15px rgba(37,99,235,.8);

}


.hero h1 {

    font-size: clamp(48px, 5vw, 76px);

    line-height: 1.02;

    letter-spacing: -3px;

    font-weight: 800;

    color: #0f172a;

}


.hero h1 span {

    color: #2563eb;

}


.hero-description {

    margin-top: 28px;

    max-width: 620px;

    font-size: 18px;

    line-height: 1.7;

    color: #64748b;

}


.hero-button {

    margin-top: 35px;

    display: inline-flex;

    align-items: center;

    gap: 20px;

    padding: 16px 25px;

    border-radius: 14px;

    background: #2563eb;

    color: white;

    text-decoration: none;

    font-weight: 600;

    box-shadow:
        0 15px 35px rgba(37,99,235,.25);

    transition: .3s;

}


.hero-button:hover {

    transform: translateY(-3px);

    background: #1d4ed8;

}


.hero-button span {

    font-size: 20px;

}





/* =========================
   SERVICES
========================= */

.services {

    padding: 55px 7% 120px;

    background: #ffffff;

}


.section-heading {

    max-width: 800px;

    margin: 0 auto 65px;

    text-align: center;

}


.section-heading h2 {

    font-size: 48px;

    line-height: 1.1;

    letter-spacing: -1.5px;

    color: #0f172a;

}


.section-heading h2 span {

    color: #2563eb;

}


.section-heading p {

    margin-top: 20px;

    color: #64748b;

    font-size: 17px;

    line-height: 1.6;

}


.services-grid {

    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 28px;

}


.service-card {

    cursor: pointer;

    min-height: 590px;

    position: relative;

    overflow: hidden;

    border-radius: 32px;

    padding: 38px;

    border: 1px solid #dbeafe;

    background: #f8fbff;

    box-shadow:
        0 25px 70px rgba(15,23,42,.07);

    transition: .4s;

}


.service-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 35px 90px rgba(15,23,42,.12);

}


.card-background {

    position: absolute;

    inset: 0;

    opacity: .8;

}


.navigator-background {

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(37,99,235,.20),
            transparent 40%
        );

}


.reports-background {

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(14,165,233,.18),
            transparent 40%
        );

}


.card-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.card-number-right {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}


.card-number {

    font-size: 13px;

    color: #94a3b8;

    font-weight: 700;

    letter-spacing: 1px;

}


.card-icon {

    width: 52px;

    height: 52px;

    border-radius: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    color: #2563eb;

    font-size: 25px;

    box-shadow:
        0 10px 30px rgba(37,99,235,.12);

}


.card-content {

    position: relative;

    z-index: 2;

    margin-top: 75px;

    max-width: 570px;

}


.card-label {

    font-size: 11px;

    letter-spacing: 1.5px;

    color: #2563eb;

    font-weight: 700;

}


.card-content h3 {

    margin-top: 16px;

    font-size: 48px;

    line-height: 1;

    letter-spacing: -2px;

}


.card-content h3 span {

    color: #2563eb;

}


.card-content p {

    margin-top: 25px;

    color: #64748b;

    line-height: 1.7;

    font-size: 16px;

}

.reports-card .card-stats > div:nth-child(1) span,
.reports-card .card-stats > div:nth-child(2) span {
    display: block;
    margin-top: 5px;
}
.card-stats {

    display: flex;

    gap: 35px;

    margin-top: 32px;

    padding-top: 25px;

    border-top: 1px solid #dbeafe;

}


.card-stats div {

    display: flex;

    flex-direction: column;

    gap: 5px;

}


.card-stats strong {

    font-size: 20px;

    color: #0f172a;

}


.card-stats span {

    font-size: 11px;

    color: #94a3b8;

}

.service-card .navigator-button {
    margin-top: 95px !important;
}
.service-button {

    display: inline-flex;

    align-items: center;

    gap: 20px;

    margin-top: 35px;

    padding: 15px 22px;

    border-radius: 13px;

    background: #2563eb;

    color: white;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition: .3s;

}


.service-button:hover {

    background: #1d4ed8;

    transform: translateY(-2px);

}


.service-button span {

    font-size: 18px;

}


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

.footer {

    position: relative;

    padding: 48px 7% 22px;

    background: #0b1b30;

    color: #ffffff;

    border-top: 1px solid rgba(96, 165, 250, 0.12);

}


/* =========================
   MAIN
========================= */

.footer-main {

    display: grid;

    grid-template-columns:
        1.3fr
        1.4fr
        1.5fr
        1fr;

    gap: 45px;

    align-items: start;

}


/* =========================
   BRAND
========================= */

.footer-brand {

    padding-right: 30px;

}


.footer-logo {

    font-size: 21px;

    font-weight: 800;

    letter-spacing: 0.4px;

    margin-bottom: 14px;

}


.footer-logo span {

    color: #ffffff;

}


.footer-description {

    color: #8ea0b6;

    font-size: 12px;

    line-height: 1.7;

}


/* =========================
   BLOCKS
========================= */

.footer-block {

    min-width: 0;

}


.footer-heading {

    margin-bottom: 14px;

    color: #52677f;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.3px;

}


.footer-company-name {

    margin-bottom: 9px;

    color: #dce5ef;

    font-size: 12px;

    line-height: 1.55;

}


.footer-detail {

    color: #8294aa;

    font-size: 11px;

    line-height: 1.65;

}


/* =========================
   ADDRESS
========================= */

.footer-address {

    padding-left: 25px;

    border-left: 1px solid rgba(148, 163, 184, 0.09);

}


/* =========================
   CONTACTS
========================= */

.footer-link {

    display: block;

    width: fit-content;

    margin-bottom: 9px;

    color: #9cafc4;

    font-size: 11px;

    text-decoration: none;

    transition: color 0.2s ease;

}


.footer-link:hover {

    color: #60a5fa;

}


/* =========================
   BOTTOM
========================= */

.footer-bottom {

    margin-top: 42px;

    padding-top: 17px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-top: 1px solid rgba(148, 163, 184, 0.08);

    color: #506278;

    font-size: 10px;

}


/* =========================
   MOBILE
========================= */

@media (max-width: 1000px) {

    .footer-main {

        grid-template-columns: 1fr 1fr;

        row-gap: 35px;

    }

    .footer-address {

        padding-left: 0;

        border-left: none;

    }

}


@media (max-width: 600px) {

    .footer {

        padding: 38px 7% 20px;

    }

    .footer-main {

        grid-template-columns: 1fr;

        gap: 28px;

    }

    .footer-brand {

        padding-right: 0;

    }

    .footer-bottom {

        align-items: flex-start;

        flex-direction: column;

        gap: 8px;

    }

}


@media (max-width: 520px) {

    .footer-right {

        flex-direction: column;

        gap: 25px;

    }

}




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

@media (max-width: 1100px) {

    .navigation {
        display: none;
    }


    .hero-globe {

        opacity: .3;

        right: -160px;

    }


    .services-grid {

        grid-template-columns: 1fr;

    }


    .about {

        grid-template-columns: 1fr;

    }

}


@media (max-width: 700px) {

    .header {

        padding: 0 20px;

    }


    .header-button {

        display: none;

    }


    .hero {

        padding: 80px 25px;

    }


    .hero h1 {

        font-size: 46px;

    }


    .hero-globe {

        display: none;

    }


    .services {

        padding: 80px 20px;

    }


    .section-heading h2 {

        font-size: 38px;

    }


    .service-card {

        padding: 25px;

    }


    .card-content {

        margin-top: 55px;

    }


    .card-content h3 {

        font-size: 38px;

    }


    .card-stats {

        gap: 15px;

    }


    .about {

        padding: 80px 25px;

    }


    .about-content h2 {

        font-size: 40px;

    }


    .about-features {

        grid-template-columns: 1fr;

    }


    .process {

        grid-template-columns: 1fr;

    }


    .process-line {

        display: none;

    }


    .cta {

        padding: 80px 25px;

    }


    .cta h2 {

        font-size: 40px;

    }


    .cta-buttons {

        flex-direction: column;

    }


    .footer {

        flex-direction: column;

        gap: 15px;

        text-align: center;

    }

}