/* /* =========================================================
   COMMON SERVICE HERO
   SAME DESIGN FOR ALL SERVICE PAGES
=========================================================


.service-hero {

    position: relative;

    min-height: 92vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding-top: 150px;

    padding-bottom: 45px;

}


=========================================================
   BACKGROUND IMAGE
=========================================================

.service-hero .hero-bg {

    position: absolute;

    inset: 0;

    background-image:
        url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600&q=80");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    z-index: 0;

}


=========================================================
   BLUE OVERLAY
=========================================================

.service-hero .hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            120deg,
            rgba(3, 25, 54, 0.97) 0%,
            rgba(6, 37, 84, 0.91) 48%,
            rgba(11, 58, 130, 0.80) 100%
        );

    z-index: 1;

}


=========================================================
   DIAGONAL PATTERN
=========================================================

.service-hero .hero-pattern {

    position: absolute;

    inset: 0;

    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(111, 177, 255, 0.035) 0px,
            rgba(111, 177, 255, 0.035) 1px,
            transparent 1px,
            transparent 40px
        );

    z-index: 2;

    pointer-events: none;

}


=========================================================
   HERO CONTENT
=========================================================

.service-hero .hero-content {

    position: relative;

    z-index: 3;

    max-width: 800px;

}


=========================================================
   BADGE
=========================================================

.service-hero .hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 20px;

    margin-bottom: 28px;

    border-radius: 30px;

    background:
        rgba(47, 128, 237, 0.15);

    border:
        1px solid rgba(111, 177, 255, 0.45);

    color: #93C5FD;

    font-family: 'Cinzel', serif;

    font-size: 0.72rem;

    font-weight: 500;

    letter-spacing: 0.15em;

    white-space: nowrap;

    backdrop-filter: blur(8px);

}


.service-hero .hero-badge i {

    font-size: 15px;

}


=========================================================
   HERO HEADING
=========================================================

.service-hero h1 {

    margin: 0 0 25px 0;

    color: #ffffff;

    font-family: 'Playfair Display', serif;

    font-size:
        clamp(2.5rem, 5vw, 4rem);

    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -0.02em;

}


.service-hero h1 span {

    display: inline;

    color: #60A5FA;

}


=========================================================
   DESCRIPTION
=========================================================

.service-hero .hero-desc {

    max-width: 650px;

    margin: 0 0 35px 0;

    color:
        rgba(255, 255, 255, 0.84);

    font-family: 'Poppins', sans-serif;

    font-size: 1.05rem;

    line-height: 1.8;

}


=========================================================
   BUTTON WRAPPER
=========================================================

.service-hero .flex-gap {

    display: flex;

    align-items: center;

    gap: 18px;

    flex-wrap: wrap;

}


=========================================================
   PRIMARY BUTTON
=========================================================

.service-hero .btn-primary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 62px;

    padding: 0 38px;

    background:
        linear-gradient(
            135deg,
            #2F80ED,
            #1557B0
        );

    color: #ffffff;

    border: 1px solid rgba(96, 165, 250, 0.25);

    border-radius: 5px;

    text-decoration: none;

    font-family: 'Cinzel', serif;

    font-size: 0.78rem;

    font-weight: 600;

    letter-spacing: 0.10em;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;

}


.service-hero .btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(37, 99, 235, 0.30);

}


=========================================================
   OUTLINE BUTTON
=========================================================

.service-hero .btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 62px;

    padding: 0 38px;

    background:
        rgba(10, 40, 85, 0.30);

    color: #60A5FA;

    border:
        2px solid #2F80ED;

    border-radius: 5px;

    text-decoration: none;

    font-family: 'Cinzel', serif;

    font-size: 0.78rem;

    font-weight: 600;

    letter-spacing: 0.10em;

    backdrop-filter: blur(5px);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;

}


.service-hero .btn-outline:hover {

    background: #2563EB;

    color: #ffffff;

    transform: translateY(-3px);

}


=========================================================
   HERO STATS
=========================================================

.service-hero .hero-stats {

    display: flex;

    align-items: flex-start;

    gap: 60px;

    flex-wrap: wrap;

    margin-top: 68px;

    padding-top: 32px;

    border-top:
        1px solid rgba(111, 177, 255, 0.25);

}


.service-hero .hero-stat {

    min-width: 120px;

}


.service-hero .hero-stat-num {

    color: #60A5FA;

    font-family: 'Playfair Display', serif;

    font-size: 2.35rem;

    font-weight: 700;

    line-height: 1;

}


.service-hero .hero-stat-label {

    margin-top: 7px;

    color:
        rgba(255, 255, 255, 0.68);

    font-family: 'Poppins', sans-serif;

    font-size: 0.78rem;

    line-height: 1.4;

    letter-spacing: 0.04em;

}


=========================================================
   TABLET
=========================================================

@media (max-width: 900px) {

    .service-hero {

        min-height: auto;

        padding-top: 130px;

        padding-bottom: 65px;

    }


    .service-hero .hero-content {

        max-width: 100%;

    }


    .service-hero .hero-stats {

        gap: 35px;

        margin-top: 55px;

    }

}


=========================================================
   MOBILE
=========================================================

@media (max-width: 600px) {

    .service-hero {

        padding-top: 110px;

        padding-bottom: 50px;

    }


    .service-hero .hero-badge {

        max-width: 100%;

        white-space: normal;

        line-height: 1.5;

        font-size: 0.62rem;

        padding: 7px 15px;

    }


    .service-hero h1 {

        font-size: 2.25rem;

        line-height: 1.15;

    }


    .service-hero .hero-desc {

        font-size: 0.94rem;

        line-height: 1.75;

    }


    .service-hero .flex-gap {

        flex-direction: column;

        align-items: stretch;

        width: 100%;

    }


    .service-hero .btn-primary,
    .service-hero .btn-outline {

        width: 100%;

        min-height: 56px;

        padding: 0 20px;

    }


    .service-hero .hero-stats {

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 28px 20px;

        margin-top: 45px;

        padding-top: 25px;

    }


    .service-hero .hero-stat {

        min-width: 0;

    }


    .service-hero .hero-stat-num {

        font-size: 1.9rem;

    }


    .service-hero .hero-stat-label {

        font-size: 0.72rem;

    }

}
=========================================================
   SERVICE INTRO BAND
   Common for ALL Service Pages
   =========================================================

.service-intro-band {

    width: 100%;

    background:
        linear-gradient(
            90deg,
            #062654 0%,
            #0F3F87 50%,
            #174C9C 100%
        );

    padding: 27px 0;

    position: relative;

    z-index: 5;

    overflow: hidden;
}


=========================================================
   INNER CONTAINER
   =========================================================

.service-intro-inner {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: nowrap;

    min-height: 34px;

}


=========================================================
   EACH SERVICE ITEM
   =========================================================

.service-intro-item {

    display: flex;

    align-items: center;

    gap: 11px;

    color: rgba(255,255,255,0.92);

    font-family:
        'Poppins',
        sans-serif;

    font-size: 0.88rem;

    font-weight: 500;

    line-height: 1.2;

    padding: 0 25px;

    min-height: 30px;

    border-right:
        1px solid rgba(111,177,255,0.30);

    white-space: nowrap;

}


Remove border from last item

.service-intro-item:last-child {

    border-right: none;

}


=========================================================
   BLUE DOT
   =========================================================

.service-intro-dot {

    width: 9px;

    height: 9px;

    min-width: 9px;

    border-radius: 50%;

    background: #6FB1FF;

    display: inline-block;

    box-shadow:
        0 0 8px rgba(111,177,255,0.35);

}


=========================================================
   HOVER
   =========================================================

.service-intro-item {

    transition:
        color 0.25s ease,
        transform 0.25s ease;

}


.service-intro-item:hover {

    color: #ffffff;

    transform: translateY(-1px);

}


.service-intro-item:hover .service-intro-dot {

    box-shadow:
        0 0 12px rgba(111,177,255,0.65);

}


=========================================================
   LARGE TABLET
   =========================================================

@media (max-width: 1100px) {

    .service-intro-item {

        padding: 0 17px;

        font-size: 0.82rem;

    }

}


=========================================================
   TABLET
   =========================================================

@media (max-width: 900px) {

    .service-intro-band {

        padding: 22px 0;

    }


    .service-intro-inner {

        flex-wrap: wrap;

        row-gap: 18px;

    }


    .service-intro-item {

        padding: 0 18px;

    }


    .service-intro-item:nth-child(3) {

        border-right: none;

    }

}


=========================================================
   MOBILE
   =========================================================

@media (max-width: 600px) {

    .service-intro-band {

        padding: 20px 0;

    }


    .service-intro-inner {

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 0;

        width: 100%;

    }


    .service-intro-item {

        width: 100%;

        min-height: 42px;

        padding: 8px 12px;

        font-size: 0.78rem;

        white-space: normal;

        border-right:
            1px solid rgba(111,177,255,0.25);

    }


    .service-intro-item:nth-child(2n) {

        border-right: none;

    }


    .service-intro-dot {

        width: 7px;

        height: 7px;

        min-width: 7px;

    }

}


=========================================================
   SMALL MOBILE
   =========================================================

@media (max-width: 400px) {

    .service-intro-item {

        padding: 8px 8px;

        gap: 7px;

        font-size: 0.72rem;

    }

} */ */

/* =========================================================
   SERVICE HERO - COMMON FOR ALL SERVICE PAGES
========================================================= */

* {
    box-sizing: border-box;
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.service-hero .container,
.service-intro-band .container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}


/* =========================================================
   HERO
========================================================= */

.service-hero {

    position: relative;

    width: 100%;

    min-height: 92vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding-top: 150px;

    padding-bottom: 55px;

    background: #062a5c;

}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.service-hero .hero-bg {

    position: absolute;

    inset: 0;

    z-index: 0;

  /*   background-image:
        url("../assets/service-hero-bg.webp");
 */
 
   background-image:
        url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600&q=80");
 
    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

}


/* =========================================================
   BLUE OVERLAY
========================================================= */

.service-hero .hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            110deg,
            rgba(3, 31, 70, 0.97) 0%,
            rgba(5, 48, 105, 0.92) 45%,
            rgba(10, 65, 135, 0.82) 100%
        );

}


/* =========================================================
   PATTERN
========================================================= */

.service-hero .hero-pattern {

    position: absolute;

    inset: 0;

    z-index: 2;

    opacity: 0.15;

    background-image:
        linear-gradient(
            30deg,
            rgba(255,255,255,0.08) 12%,
            transparent 12.5%,
            transparent 87%,
            rgba(255,255,255,0.08) 87.5%
        ),
        linear-gradient(
            150deg,
            rgba(255,255,255,0.06) 12%,
            transparent 12.5%,
            transparent 87%,
            rgba(255,255,255,0.06) 87.5%
        );

    background-size: 70px 70px;

}


/* =========================================================
   HERO CONTENT
========================================================= */

.service-hero .hero-content {

    position: relative;

    z-index: 5;

    width: 100%;

    max-width: 820px;

    margin-left: 0;

    margin-right: auto;

    color: #ffffff;

}


/* =========================================================
   BADGE
========================================================= */

.service-hero .hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 10px 18px;

    margin-bottom: 22px;

    border: 1px solid rgba(255,255,255,0.25);

    border-radius: 50px;

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    font-weight: 500;

    letter-spacing: 0.4px;

}


.service-hero .hero-badge i {

    color: #65a9ff;

    font-size: 17px;

}


/* =========================================================
   HERO TITLE
========================================================= */

.service-hero .hero-content h1 {

    margin: 0 0 22px 0;

    padding: 0;

    max-width: 800px;

    color: #ffffff;

    font-family: "Playfair Display", serif;

    font-size: clamp(42px, 5vw, 68px);

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -1px;

}


.service-hero .hero-content h1 span {

    display: inline;

    color: #4f9cff;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.service-hero .hero-desc {

    max-width: 780px;

    margin: 0 0 32px 0;

    padding: 0;

    color: rgba(255,255,255,0.90);

    font-family: "Poppins", sans-serif;

    font-size: 17px;

    font-weight: 400;

    line-height: 1.8;

}


/* =========================================================
   BUTTON AREA
========================================================= */

.service-hero .flex-gap {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 22px;

    margin-bottom: 45px;

}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.service-hero .btn-primary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-width: 280px;

    min-height: 62px;

    padding: 16px 28px;

    border-radius: 6px;

    border: 1px solid rgba(255,255,255,0.12);

    background:
        linear-gradient(
            135deg,
            #3184e8,
            #1763c5
        );

    color: #ffffff;

    text-decoration: none;

    font-family: "Cinzel", serif;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 1px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;

}


.service-hero .btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.25);

}


/* =========================================================
   OUTLINE BUTTON
========================================================= */

.service-hero .btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-width: 300px;

    min-height: 62px;

    padding: 16px 28px;

    border-radius: 6px;

    border: 1px solid rgba(255,255,255,0.25);

    background: #2866e6;

    color: #ffffff;

    text-decoration: none;

    font-family: "Cinzel", serif;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 1px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;

}


.service-hero .btn-outline:hover {

    transform: translateY(-3px);

    background: #3475ef;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.25);

}


/* =========================================================
   HERO STATS
========================================================= */

.service-hero .hero-stats {

    width: 100%;

    max-width: 820px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 0;

    padding-top: 34px;

    border-top:
        1px solid rgba(255,255,255,0.20);

}


.service-hero .hero-stat {

    padding-right: 28px;

    border-right:
        1px solid rgba(255,255,255,0.15);

}


.service-hero .hero-stat:not(:first-child) {

    padding-left: 28px;

}


.service-hero .hero-stat:last-child {

    border-right: none;

}


.service-hero .hero-stat-num {

    margin-bottom: 4px;

    color: #62a4ff;

    font-family: "Playfair Display", serif;

    font-size: 42px;

    font-weight: 700;

    line-height: 1;

}


.service-hero .hero-stat-label {

    color: rgba(255,255,255,0.82);

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.4;

}


/* =========================================================
   INTRO BAND
========================================================= */

.service-intro-band {

    width: 100%;

    background: #ffffff;

    border-bottom:
        1px solid #e5eaf1;

    box-shadow:
        0 4px 15px rgba(0,0,0,0.04);

}


.service-intro-band .container {

    padding-top: 0;

    padding-bottom: 0;

}


.service-intro-inner {

    width: 100%;

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.service-intro-item {

    display: flex;

    align-items: center;

    gap: 10px;

    white-space: nowrap;

    color: #17365d;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 500;

}


.service-intro-dot {

    width: 7px;

    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #2878df;

    box-shadow:
        0 0 0 4px rgba(40,120,223,0.10);

}


/* =========================================================
   FADE UP
========================================================= */

.fade-up {

    animation:
        serviceFadeUp 0.9s ease both;

}


@keyframes serviceFadeUp {

    from {

        opacity: 0;

        transform:
            translateY(30px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .service-hero {

        min-height: auto;

        padding-top: 130px;

        padding-bottom: 55px;

    }


    .service-hero .hero-content {

        max-width: 100%;

    }


    .service-hero .hero-stats {

        max-width: 100%;

    }


    .service-intro-inner {

        flex-wrap: wrap;

        justify-content: center;

        padding-top: 22px;

        padding-bottom: 22px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .service-hero {

        padding-top: 115px;

        padding-bottom: 45px;

    }


    .service-hero .container,
    .service-intro-band .container {

        padding-left: 18px;

        padding-right: 18px;

    }


    .service-hero .hero-badge {

        font-size: 11px;

        padding: 8px 13px;

    }


    .service-hero .hero-content h1 {

        font-size: 39px;

        line-height: 1.12;

    }


    .service-hero .hero-desc {

        font-size: 14px;

        line-height: 1.7;

    }


    .service-hero .flex-gap {

        flex-direction: column;

        align-items: stretch;

        gap: 12px;

        margin-bottom: 35px;

    }


    .service-hero .btn-primary,
    .service-hero .btn-outline {

        width: 100%;

        min-width: 0;

    }


    .service-hero .hero-stats {

        grid-template-columns:
            repeat(2, 1fr);

        row-gap: 28px;

    }


    .service-hero .hero-stat {

        padding-right: 15px;

    }


    .service-hero .hero-stat:not(:first-child) {

        padding-left: 15px;

    }


    .service-hero .hero-stat:nth-child(2) {

        border-right: none;

    }


    .service-hero .hero-stat-num {

        font-size: 32px;

    }


    .service-hero .hero-stat-label {

        font-size: 12px;

    }


    .service-intro-inner {

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 15px;

        min-height: auto;

        padding-top: 20px;

        padding-bottom: 20px;

    }


    .service-intro-item {

        font-size: 12px;

        white-space: normal;

    }

}


@media (max-width: 420px) {

    .service-intro-inner {

        grid-template-columns: 1fr;

    }

}