/* =========================================
   GLOBAL
========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    color: #102f55;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
}

.container {
    width: min(1200px, 92%);
    margin: auto;
}


/* =========================================
   BREADCRUMB
========================================= */

.breadcrumb-section {
    padding: 22px 0;
    background: #ffffff;
    border-bottom: 1px solid #edf2f7;
}

.breadcrumb-section .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #68798d;
}

.breadcrumb-section a {
    color: #0876d1;
}

.breadcrumb-section span {
    color: #7b8794;
}


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

.service-hero {
    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #ffffff 46%,
            #f5faff 70%,
            #eaf5fd 100%
        );

    overflow: hidden;
}

.hero-grid {
    min-height: 560px;

    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
}

.hero-content {
    padding: 70px 40px 70px 0;
    position: relative;
    z-index: 2;
}

.service-number {
    display: inline-block;

    margin-bottom: 18px;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;

    color: #0876d1;
}

.hero-content h1 {
    font-size: clamp(42px, 4vw, 64px);
    line-height: 1.08;

    font-weight: 800;

    color: #092f5b;

    margin-bottom: 20px;
}

.hero-content h1 span {
    display: block;
}

.hero-content h2 {
    font-size: 20px;
    line-height: 1.4;

    color: #0876d1;

    margin-bottom: 25px;

    font-weight: 700;
}

.hero-content p {
    max-width: 620px;

    font-size: 16px;
    line-height: 1.75;

    color: #4c5f73;

    margin-bottom: 12px;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;

    margin-top: 25px;

    padding: 16px 26px;

    border-radius: 5px;

    background: #086ac4;
    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    transition: 0.3s ease;
}

.primary-btn span {
    font-size: 22px;
    line-height: 1;
}

.primary-btn:hover {
    background: #064f98;
    transform: translateY(-2px);
}


/* HERO IMAGE */

.hero-image {
    height: 560px;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            rgba(255,255,255,0.4) 12%,
            rgba(255,255,255,0) 35%
        );
}


/* =========================================
   COMMON SECTION HEADING
========================================= */

.section-heading {
    text-align: center;
    margin-bottom: 55px;
}

.section-heading > span {
    display: block;

    margin-bottom: 10px;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.6px;

    color: #0876d1;
}

.section-heading h2 {
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.2;

    color: #0b376b;

    font-weight: 800;
}


/* =========================================
   BENEFITS
========================================= */

.benefits-section {
    padding: 90px 0;
    background: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefit-card {
    padding: 15px 35px;

    text-align: center;

    border-right: 1px solid #dbe5ef;
}

.benefit-card:last-child {
    border-right: none;
}

.benefit-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 45px;
    height: 45px;

    fill: none;
    stroke: #0755a5;
    stroke-width: 1.6;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-card h3 {
    font-size: 17px;
    color: #0a3263;

    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #617286;
}


/* =========================================
   SERVICE SCOPE
========================================= */

.scope-section {
    padding: 90px 0;

    background: #f1f8fe;
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.scope-card {
    padding: 30px 24px;

    min-height: 220px;

    background: #ffffff;

    border: 1px solid #e1edf7;

    border-radius: 12px;

    text-align: center;

    transition: 0.3s ease;

    box-shadow: 0 8px 25px rgba(18, 71, 115, 0.05);
}

.scope-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 40px rgba(18, 71, 115, 0.12);
}

.scope-icon {
    width: 54px;
    height: 54px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #edf6ff;

    color: #086ac4;

    font-size: 15px;
    font-weight: 800;
}

.scope-card h3 {
    font-size: 16px;
    line-height: 1.4;

    color: #0a3263;

    margin-bottom: 12px;
}

.scope-card p {
    font-size: 13px;
    line-height: 1.6;

    color: #66788c;
}


/* =========================================
   PROCESS
========================================= */

.process-section {
    padding: 100px 0;

    background: #ffffff;
}

.process-section .section-heading {
    margin-bottom: 80px;
}

.process-grid {
    position: relative;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    gap: 30px;
}

.process-line {
    position: absolute;

    width: 950px;
    max-width: 78%;

    height: 2px;

    left: 50%;
    transform: translateX(-50%);

    margin-top: 28px;

    background: #a9d1f3;

    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;

    text-align: center;
}

.process-number {
    width: 58px;
    height: 58px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #0755a5;
    color: #ffffff;

    font-size: 14px;
    font-weight: 800;

    border: 6px solid #ffffff;

    box-shadow: 0 0 0 1px #c6def2;
}

.process-icon {
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 10px;

    font-size: 32px;
}

.process-step h3 {
    font-size: 16px;
    line-height: 1.4;

    color: #0a3263;

    margin-bottom: 10px;
}

.process-step p {
    max-width: 180px;

    margin: auto;

    font-size: 13px;
    line-height: 1.65;

    color: #68798d;
}


/* =========================================
   CTA
========================================= */

.cta-section {
    padding: 50px 0 90px;
}

.cta-box {
    min-height: 320px;

    display: grid;
    grid-template-columns: 58% 42%;

    overflow: hidden;

    border-radius: 14px;

    background:
        linear-gradient(
            110deg,
            #06498f,
            #0c63b9
        );

    box-shadow:
        0 20px 45px rgba(7, 67, 125, 0.18);
}

.cta-content {
    padding: 55px;
    color: #ffffff;
}

.cta-content > span {
    display: block;

    margin-bottom: 12px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.8px;

    color: #8bd0ff;
}

.cta-content h2 {
    max-width: 650px;

    font-size: 34px;
    line-height: 1.2;

    margin-bottom: 16px;

    color: #ffffff;
}

.cta-content p {
    max-width: 600px;

    margin-bottom: 25px;

    font-size: 15px;
    line-height: 1.7;

    color: #d9ecff;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    padding: 15px 24px;

    background: #ffffff;
    color: #0755a5;

    border-radius: 5px;

    font-weight: 700;
    font-size: 14px;

    transition: 0.3s ease;
}

.cta-button span {
    font-size: 20px;
}

.cta-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0,0,0,0.15);
}

.cta-image {
    min-height: 320px;

    overflow: hidden;
}

.cta-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


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

@media (max-width: 1000px) {

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 60px 0;
    }

    .hero-image {
        height: 450px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .benefit-card {
        border-right: none;
    }

    .scope-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .process-line {
        display: none;
    }

    .cta-box {
        grid-template-columns: 1fr;
    }

    .cta-image {
        height: 300px;
    }
}


@media (max-width: 650px) {

    .breadcrumb-section .container {
        flex-wrap: wrap;
        font-size: 11px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content h2 {
        font-size: 18px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-image {
        height: 330px;
    }

    .benefits-section,
    .scope-section,
    .process-section {
        padding: 65px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .scope-grid {
        grid-template-columns: 1fr;
    }

    .scope-card {
        min-height: auto;
    }

    .cta-content {
        padding: 35px 25px;
    }

    .cta-content h2 {
        font-size: 27px;
    }

    .cta-content p {
        font-size: 14px;
    }

    /* .cta-image {
        height: 250px;
    } */
}

/* =========================================
   REVEAL ANIMATION
========================================= */

.reveal {
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}