/* ==========================================================
   RESET
========================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: #071a36;
    background: #ffffff;
}

img {
    max-width: 100%;
}

a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font-family: inherit;
}


/* ==========================================================
   CONTAINER
========================================================== */

.ch-container {
    width: min(1280px, 90%);
    margin: 0 auto;
}


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

.ch-header {
    position: relative;
    z-index: 100;

    height: 88px;

    background: #071c38;
}

.ch-header-inner {
    height: 100%;

    display: flex;
    align-items: center;
}

.ch-logo {
    margin-right: auto;

    display: flex;
    align-items: center;
}

.ch-logo img {
    width: 240px;
    height: auto;

    display: block;

    object-fit: contain;
}

.ch-nav {
    display: flex;
    align-items: center;

    gap: 30px;
}

.ch-nav a {
    color: #ffffff;

    text-decoration: none;

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

    transition: color .2s ease;
}

.ch-nav a:hover {
    color: #58a3ff;
}

.ch-header-btn {
    min-height: 48px;

    margin-left: 28px;
    padding: 0 22px;

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

    gap: 10px;

    color: #ffffff;
    background: #1769e0;

    border-radius: 7px;

    text-decoration: none;

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

    transition:
        background .2s ease,
        transform .2s ease;
}

.ch-header-btn:hover {
    background: #0d5bc8;

    transform: translateY(-1px);
}

.ch-menu-btn {
    display: none;
}


/* ==========================================================
   SHARED
========================================================== */

.ch-small-label,
.ch-section-label {
    color: #1769e0;

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

    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.ch-small-label {
    display: flex;
    align-items: center;

    gap: 12px;
}

.ch-small-label span {
    width: 35px;
    height: 2px;

    display: block;

    background: #1769e0;
}

.ch-section-heading {
    margin-bottom: 38px;
}

.ch-section-heading h2,
.ch-about h2,
.ch-areas h2,
.ch-location h2,
.ch-faq h2 {
    margin: 10px 0 0;

    font-size: 42px;
    line-height: 1.08;

    letter-spacing: -1.8px;
}

.ch-section-heading h2 strong,
.ch-about h2 strong,
.ch-areas h2 strong,
.ch-location h2 strong,
.ch-faq h2 strong {
    color: #1769e0;
}


/* ==========================================================
   FULL BACKGROUND HERO
========================================================== */

.ch-hero {
    position: relative;

    width: 100%;
    min-height: 650px;

    overflow: hidden;

    background-image:

        /* DARK LEFT SIDE */
        linear-gradient(
            90deg,
            rgba(5, 24, 48, 0.98) 0%,
            rgba(5, 24, 48, 0.96) 24%,
            rgba(5, 24, 48, 0.82) 42%,
            rgba(5, 24, 48, 0.48) 58%,
            rgba(5, 24, 48, 0.15) 76%,
            rgba(5, 24, 48, 0.05) 100%
        ),

        /* SLIGHT OVERALL DARK OVERLAY */
        linear-gradient(
            180deg,
            rgba(2, 18, 37, 0.28) 0%,
            rgba(2, 18, 37, 0.08) 55%,
            rgba(2, 18, 37, 0.30) 100%
        ),

        url("./images/chandigarh-hero.jpg");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;
}


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

.ch-hero-inner {
    position: relative;

    z-index: 2;

    min-height: 650px;

    display: flex;
    align-items: center;
}


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

.ch-hero-content {
    width: 53%;
    max-width: 690px;

    padding: 70px 0;
}


/* SMALL LABEL */

.ch-small-label {
    display: flex;
    align-items: center;

    gap: 13px;

    color: #3b91ff;

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

    letter-spacing: 2.6px;

    text-transform: uppercase;
}

.ch-small-label span {
    width: 36px;
    height: 2px;

    flex-shrink: 0;

    background: #2d83ee;
}


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

.ch-hero {
    position: relative;

    width: 100%;
    min-height: 650px;

    overflow: hidden;

    background: #071c38;
}


/* ==========================================================
   FULL BACKGROUND IMAGE
========================================================== */

.ch-hero-bg {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 0;

    overflow: hidden;
}


.ch-hero-bg img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    /*
    Controls which part of image stays visible.
    Increase percentage to show more right side/truck.
    */
    object-position: center center;
}


/* ==========================================================
   DARK OVERLAY
========================================================== */

.ch-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:

        /* LEFT DARK GRADIENT */
        linear-gradient(
            90deg,
            rgba(5, 23, 46, 0.98) 0%,
            rgba(5, 23, 46, 0.96) 18%,
            rgba(5, 23, 46, 0.87) 33%,
            rgba(5, 23, 46, 0.67) 47%,
            rgba(5, 23, 46, 0.35) 61%,
            rgba(5, 23, 46, 0.10) 77%,
            rgba(5, 23, 46, 0.02) 100%
        ),

        /* GENERAL CINEMATIC DARKENING */
        linear-gradient(
            180deg,
            rgba(4, 18, 36, 0.18) 0%,
            rgba(4, 18, 36, 0.02) 48%,
            rgba(4, 18, 36, 0.28) 100%
        );
}


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

.ch-hero-inner {
    position: relative;

    z-index: 2;

    min-height: 650px;

    display: flex;
    align-items: center;
}


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

.ch-hero-content {
    width: 52%;
    max-width: 680px;

    padding: 75px 0 70px;
}


/* ==========================================================
   SMALL LABEL
========================================================== */

.ch-small-label {
    display: flex;
    align-items: center;

    gap: 13px;

    color: #3690ff;

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

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.ch-small-label span {
    width: 36px;
    height: 2px;

    flex-shrink: 0;

    display: block;

    background: #2d83ee;
}


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

.ch-hero h1 {
    max-width: 680px;

    margin: 23px 0 24px;

    color: #ffffff;

    font-size: clamp(52px, 4.6vw, 72px);

    line-height: 0.99;

    letter-spacing: -3.4px;

    text-shadow:
        0 4px 20px rgba(0, 0, 0, 0.20);
}


.ch-hero h1 strong {
    display: block;

    color: #2d83ee;
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.ch-hero-description {
    max-width: 550px;

    margin: 0 0 32px;

    color: #d6e1ed;

    font-size: 16px;

    line-height: 1.7;

    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.25);
}


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

.ch-hero-features {
    max-width: 650px;

    margin-bottom: 34px;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 25px;
}


.ch-hero-feature {
    min-width: 0;

    display: flex;
    align-items: flex-start;

    gap: 10px;
}


.ch-hero-feature > i {
    margin-top: 2px;

    flex-shrink: 0;

    color: #3291ff;

    font-size: 21px;
}


.ch-hero-feature > div {
    min-width: 0;
}


.ch-hero-feature strong {
    display: block;

    margin-bottom: 4px;

    color: #ffffff;

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

    line-height: 1.3;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.25);
}


.ch-hero-feature span {
    display: block;

    color: #b8c8d9;

    font-size: 16px;

    line-height: 1.5;
}


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

.ch-primary-btn {
    width: fit-content;
    min-height: 54px;

    padding: 0 25px;

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

    gap: 13px;

    color: #ffffff;

    background: #176fe5;

    border-radius: 7px;

    text-decoration: none;

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

    box-shadow:
        0 10px 28px rgba(23, 105, 224, 0.25);

    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}


.ch-primary-btn:hover {
    background: #0f62cf;

    transform: translateY(-2px);

    box-shadow:
        0 13px 30px rgba(23, 105, 224, 0.32);
}


/* ==========================================================
   DESKTOP LARGE
========================================================== */

@media (min-width: 1450px) {

    .ch-hero {
        min-height: 690px;
    }

    .ch-hero-inner {
        min-height: 690px;
    }

    .ch-hero-content {
        max-width: 710px;
    }

}


/* ==========================================================
   TABLET / SMALL LAPTOP
========================================================== */

@media (max-width: 1050px) {

    .ch-hero {
        min-height: 630px;
    }

    .ch-hero-inner {
        min-height: 630px;
    }

    .ch-hero-bg img {
        object-position: 60% center;
    }

    .ch-hero-overlay {
        background:

            linear-gradient(
                90deg,
                rgba(5, 23, 46, 0.98) 0%,
                rgba(5, 23, 46, 0.94) 28%,
                rgba(5, 23, 46, 0.76) 48%,
                rgba(5, 23, 46, 0.34) 70%,
                rgba(5, 23, 46, 0.10) 100%
            ),

            linear-gradient(
                180deg,
                rgba(4, 18, 36, 0.16),
                rgba(4, 18, 36, 0.28)
            );
    }

    .ch-hero-content {
        width: 58%;
    }

    .ch-hero h1 {
        font-size: 54px;
    }

    .ch-hero-features {
        grid-template-columns: 1fr;

        max-width: 350px;

        gap: 16px;
    }

}


/* ==========================================================
   MOBILE HERO - IMPROVED
========================================================== */

@media (max-width: 750px) {

    .ch-hero {
        min-height: 620px;
        height: auto;
    }


    /* FULL BACKGROUND IMAGE */

    .ch-hero-bg {
        position: absolute;
        inset: 0;

        width: 100%;
        height: 100%;
    }

    .ch-hero-bg img {
        width: 100%;
        height: 100%;

        object-fit: cover;

        /* Keep Chandigarh sign + truck visible */
        object-position: 70% center;

        transform: scale(1.02);
    }


    /* BETTER MOBILE OVERLAY */

    .ch-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5, 23, 46, 0.94) 0%,
                rgba(5, 23, 46, 0.84) 52%,
                rgba(5, 23, 46, 0.50) 100%
            ),

            linear-gradient(
                180deg,
                rgba(5, 23, 46, 0.15) 0%,
                rgba(5, 23, 46, 0.35) 60%,
                rgba(5, 23, 46, 0.78) 100%
            );
    }


    /* HERO INNER */

    .ch-hero-inner {
        min-height: 620px;

        display: flex;
        align-items: center;
    }


    /* CONTENT */

    .ch-hero-content {
        width: 100%;
        max-width: 100%;

        padding: 105px 0 45px;
    }


    /* SMALL LABEL */

    .ch-small-label {
        gap: 10px;

        font-size: 9px;

        letter-spacing: 1.6px;
    }

    .ch-small-label span {
        width: 26px;
    }


    /* HEADING */

    .ch-hero h1 {
        max-width: 390px;

        margin: 16px 0 20px;

        font-size: 38px;

        line-height: 1.02;

        letter-spacing: -1.7px;
    }


    /* DESCRIPTION */

    .ch-hero-description {
        max-width: 390px;

        margin-bottom: 25px;

        font-size: 14px;

        line-height: 1.6;
    }


    /* FEATURES */

    .ch-hero-features {
        max-width: 340px;

        margin-bottom: 27px;

        display: flex;
        flex-direction: column;

        gap: 14px;
    }


    .ch-hero-feature {
        gap: 11px;
    }


    .ch-hero-feature > i {
        width: 20px;

        font-size: 19px;
    }


    .ch-hero-feature strong {
        margin-bottom: 2px;

        font-size: 12px;
    }


    .ch-hero-feature span {
        font-size: 10px;

        line-height: 1.4;
    }


    /* BUTTON */

    .ch-primary-btn {
        width: auto;
        min-width: 230px;
        min-height: 50px;

        padding: 0 22px;

        font-size: 12px;
    }

}


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

@media (max-width: 480px) {

    .ch-hero {
        min-height: 600px;
    }

    .ch-hero-inner {
        min-height: 600px;
    }


    .ch-hero-bg img {
        /*
        Move image slightly right so truck +
        Chandigarh landmark stay visible
        */
        object-position: 72% center;
    }


    .ch-hero-content {
        padding: 95px 0 38px;
    }


    .ch-hero h1 {
        max-width: 350px;

        font-size: 35px;
    }


    .ch-hero-description {
        max-width: 350px;

        font-size: 13px;
    }


    .ch-primary-btn {
        width: fit-content;

        min-width: 225px;
    }

}

/* ==========================================================
   ABOUT
========================================================== */

.ch-about {
    padding: 85px 0;
}

.ch-about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}

.ch-about-content > p {
    max-width: 550px;

    margin: 22px 0 0;

    color: #536980;

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

.ch-about-stats {
    margin-top: 35px;

    display: flex;

    gap: 50px;

    flex-wrap: wrap;
}

.ch-about-stats strong {
    display: block;

    color: #1769e0;

    font-size: 31px;
    line-height: 1.1;
}

.ch-about-stats span {
    margin-top: 5px;

    display: block;

    color: #60758b;

    font-size: 12px;
}


/* ABOUT CARD */

.ch-about-card {
    padding: 44px;

    background:
        linear-gradient(
            145deg,
            #071c38 0%,
            #0d2c52 100%
        );

    border-radius: 20px;

    box-shadow: 0 22px 50px rgba(7, 28, 56, .14);
}

.ch-about-icon {
    width: 64px;
    height: 64px;

    margin-bottom: 27px;

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

    color: #ffffff;
    background: #1769e0;

    border-radius: 14px;

    font-size: 26px;
}

.ch-about-card > span {
    color: #6eb0ff;

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

    letter-spacing: 2px;
}

.ch-about-card h3 {
    max-width: 500px;

    margin: 12px 0 18px;

    color: #ffffff;

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

    letter-spacing: -1px;
}

.ch-about-card > p {
    margin: 0 0 24px;

    color: #b5c7da;

    font-size: 14px;
    line-height: 1.75;
}

.ch-about-points {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.ch-about-points div {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #e2ebf5;

    font-size: 13px;
    font-weight: 600;
}

.ch-about-points i {
    color: #58a3ff;
}


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

.ch-services {
    padding: 90px 0 100px;

    background:
        linear-gradient(
            180deg,
            #f7faff 0%,
            #f2f7fd 100%
        );
}


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

.ch-services-heading {
    max-width: 720px;

    margin-bottom: 48px;
}


.ch-services-heading .ch-section-label {
    margin-bottom: 14px;

    color: #176fe5;

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

    letter-spacing: 2.7px;

    text-transform: uppercase;
}


.ch-services-heading h2 {
    margin: 0;

    color: #071a36;

    font-size: 45px;
    line-height: 1.08;

    letter-spacing: -2.2px;
}


.ch-services-heading h2 strong {
    color: #176fe5;
}


.ch-services-heading > p {
    max-width: 650px;

    margin: 20px 0 0;

    color: #587089;

    font-size: 16px;
    line-height: 1.7;
}


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

.ch-service-grid {
    display: grid;

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

    gap: 22px;
}


/* ==========================================================
   SERVICE CARD
========================================================== */

.ch-service-card {
    min-height: 385px;

    padding: 40px 26px 35px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid #d6e2ef;

    border-radius: 16px;

    box-shadow:
        0 14px 35px rgba(25, 66, 110, 0.05);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


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

    border-color: #80b7ff;

    box-shadow:
        0 22px 45px rgba(25, 66, 110, 0.10);
}


/* FEATURED CARD */

.ch-service-card-featured {
    border-color: #5b9cff;

    box-shadow:
        0 18px 38px rgba(23, 105, 224, 0.09);
}


/* ==========================================================
   SERVICE ICON
========================================================== */

.ch-service-icon {
    width: 82px;
    height: 82px;

    margin-bottom: 31px;

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

    color: #176fe5;

    background: #edf4ff;

    border-radius: 50%;

    font-size: 28px;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}


.ch-service-card:hover .ch-service-icon {
    color: #ffffff;

    background: #176fe5;

    transform: scale(1.05);
}


/* ==========================================================
   TITLE
========================================================== */

.ch-service-card h3 {
    min-height: 52px;

    margin: 0;

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

    color: #071a36;

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

    line-height: 1.35;
}


/* ==========================================================
   SMALL BLUE LINE
========================================================== */

.ch-service-line {
    width: 38px;
    height: 2px;

    margin: 18px auto 25px;

    display: block;

    background: #176fe5;

    border-radius: 10px;
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.ch-service-card p {
    margin: 0;

    color: #587089;

    font-size: 14px;

    line-height: 1.7;
}


/* ==========================================================
   LARGE TABLET
========================================================== */

@media (max-width: 1100px) {

    .ch-service-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 800px) {

    .ch-services {
        padding: 70px 0;
    }


    .ch-services-heading {
        margin-bottom: 38px;
    }


    .ch-services-heading h2 {
        font-size: 38px;
    }


    .ch-service-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 18px;
    }


    .ch-service-card {
        min-height: 340px;
    }

}


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

@media (max-width: 550px) {

    .ch-services {
        padding: 60px 0;
    }


    .ch-services-heading h2 {
        font-size: 34px;

        letter-spacing: -1.5px;
    }


    .ch-services-heading > p {
        margin-top: 15px;

        font-size: 14px;
    }


    .ch-service-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .ch-service-card {
        min-height: auto;

        padding: 30px 25px;

        align-items: flex-start;

        text-align: left;
    }


    .ch-service-icon {
        width: 65px;
        height: 65px;

        margin-bottom: 22px;

        font-size: 23px;
    }


    .ch-service-card h3 {
        min-height: auto;

        justify-content: flex-start;

        font-size: 18px;
    }


    .ch-service-line {
        margin: 14px 0 18px;
    }


    .ch-service-card p {
        font-size: 13px;
    }

}

/* ==========================================================
   WHY CHOOSE US
========================================================== */

.ch-why {
    padding: 72px 0;

    background: #071c38;
}

.ch-light-label {
    color: #58a3ff;
}

.ch-why > .ch-container > h2 {
    margin: 9px 0 38px;

    color: #ffffff;

    font-size: 42px;

    letter-spacing: -1.5px;
}

.ch-why > .ch-container > h2 strong {
    color: #2d83ee;
}

.ch-why-grid {
    display: grid;

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

    gap: 26px;
}

.ch-why-item {
    display: flex;
    align-items: flex-start;

    gap: 14px;
}

.ch-why-item > i {
    flex-shrink: 0;

    color: #2d83ee;

    font-size: 25px;
}

.ch-why-item h3 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 16px;
}

.ch-why-item p {
    margin: 0;

    color: #a8bbcf;

    font-size: 13px;
    line-height: 1.6;
}

/* ==========================================================
   WHY CHOOSE US - ANIMATION
========================================================== */

/* Initial hidden states */

.ch-why .ch-section-label,
.ch-why > .ch-container > h2,
.ch-why-item {
    opacity: 0;
    transform: translateY(24px);

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


/* Animate when section becomes visible */

.ch-why.ch-animate .ch-section-label {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.05s;
}


.ch-why.ch-animate > .ch-container > h2 {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.15s;
}


/* STAGGER EACH ITEM */

.ch-why.ch-animate .ch-why-item:nth-child(1) {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.25s;
}

.ch-why.ch-animate .ch-why-item:nth-child(2) {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.35s;
}

.ch-why.ch-animate .ch-why-item:nth-child(3) {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.45s;
}

.ch-why.ch-animate .ch-why-item:nth-child(4) {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.55s;
}

.ch-why.ch-animate .ch-why-item:nth-child(5) {
    opacity: 1;
    transform: translateY(0);

    transition-delay: 0.65s;
}


/* ==========================================================
   ITEM HOVER
========================================================== */

.ch-why-item {
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}


.ch-why-item:hover {
    transform: translateY(-5px);
}


/* ICON */

.ch-why-item > i {
    transition:
        transform 0.25s ease,
        filter 0.25s ease;
}


.ch-why-item:hover > i {
    transform: translateY(-3px) scale(1.08);

    filter:
        drop-shadow(0 6px 10px rgba(45, 131, 238, 0.25));
}


/* HEADING BLUE WORD */

.ch-why > .ch-container > h2 strong {
    transition: text-shadow 0.3s ease;
}

.ch-why:hover > .ch-container > h2 strong {
    text-shadow:
        0 0 25px rgba(45, 131, 238, 0.17);
}


/* ==========================================================
   ACCESSIBILITY
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .ch-why .ch-section-label,
    .ch-why > .ch-container > h2,
    .ch-why-item {
        opacity: 1;
        transform: none;
        transition: none;
    }

}

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

.ch-process {
    padding: 80px 0;
}

.ch-process-grid {
    display: grid;

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

    gap: 20px;
}

.ch-process-item {
    text-align: center;
}

.ch-process-icon {
    width: 72px;
    height: 72px;

    margin: 0 auto;

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

    color: #ffffff;
    background: #1769e0;

    border-radius: 50%;

    font-size: 25px;
}

.ch-process-item > span {
    margin: 14px 0 5px;

    display: block;

    color: #1769e0;

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

.ch-process-item h3 {
    margin: 0 0 8px;

    font-size: 17px;
}

.ch-process-item p {
    max-width: 210px;

    margin: 0 auto;

    color: #60758b;

    font-size: 13px;
    line-height: 1.55;
}


/* ==========================================================
   AREAS
========================================================== */

.ch-areas {
    padding: 85px 0;

    background: #f6f9fd;
}

.ch-areas-inner {
    display: grid;

    grid-template-columns: 38% 62%;

    align-items: center;

    gap: 55px;
}

.ch-areas-content p {
    max-width: 450px;

    color: #60758b;

    font-size: 16px;
    line-height: 1.7;
}

.ch-area-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 14px;
}

.ch-area-card {
    min-height: 78px;

    padding: 0 20px;

    display: flex;
    align-items: center;

    gap: 12px;

    background: #ffffff;

    border: 1px solid #d9e5f1;

    border-radius: 11px;

    color: #071a36;

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

.ch-area-card i {
    color: #1769e0;
}


/* ==========================================================
   ROUTES - DARK PREMIUM VERSION
========================================================== */

.ch-routes {
    position: relative;

    padding: 85px 0 95px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(23, 111, 229, 0.12),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #061a34 0%,
            #082445 52%,
            #061a34 100%
        );
}


/* SUBTLE BACKGROUND DECORATION */

.ch-routes::before {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    top: -180px;
    right: -100px;

    border: 1px solid rgba(70, 145, 255, 0.08);

    border-radius: 50%;

    pointer-events: none;
}


.ch-routes::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    bottom: -180px;
    left: 20%;

    border: 1px solid rgba(70, 145, 255, 0.05);

    border-radius: 50%;

    pointer-events: none;
}



/* ==========================================================
   TOP SECTION
========================================================== */

.ch-routes-top {
    position: relative;
    z-index: 2;

    margin-bottom: 48px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: end;

    gap: 60px;
}


.ch-routes-heading .ch-section-label {
    margin-bottom: 11px;

    color: #4296ff;

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

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.ch-routes-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: 44px;
    line-height: 1.06;

    letter-spacing: -2px;
}


.ch-routes-heading h2 strong {
    color: #2d83ee;
}


.ch-routes-heading-line {
    width: 64px;
    height: 2px;

    margin-top: 18px;

    display: block;

    background: #2d83ee;
}


.ch-routes-description {
    max-width: 440px;
}


.ch-routes-description p {
    margin: 0;

    color: #c2d0df;

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



/* ==========================================================
   ROUTE GRID
========================================================== */

.ch-route-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 36px;
}



/* ==========================================================
   ROUTE CARD
========================================================== */

.ch-route-card {
    position: relative;

    min-height: 135px;

    padding: 24px 22px;

    display: grid;

    grid-template-columns: auto 1fr auto;

    align-items: center;

    gap: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(20, 57, 96, 0.82),
            rgba(10, 40, 75, 0.90)
        );

    border: 1px solid rgba(87, 155, 242, 0.27);

    border-radius: 15px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.025),
        0 16px 35px rgba(0,0,0,0.12);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


.ch-route-card:hover {
    transform: translateY(-6px);

    border-color: rgba(70, 145, 255, 0.72);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.20),
        0 0 25px rgba(45, 131, 238, 0.08);
}



/* ==========================================================
   DOTTED CONNECTION LINE
========================================================== */

.ch-route-card:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 50%;
    right: -37px;

    width: 37px;

    border-top: 3px dotted rgba(54, 145, 255, 0.55);

    transform: translateY(-50%);

    pointer-events: none;
}



/* ==========================================================
   NUMBER
========================================================== */

.ch-route-number {
    width: 52px;
    height: 52px;

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

    flex-shrink: 0;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #2588ff,
            #1267dd
        );

    border-radius: 50%;

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

    box-shadow:
        0 8px 20px rgba(23, 111, 229, 0.24);
}



/* ==========================================================
   ROUTE CONTENT
========================================================== */

.ch-route-content {
    min-width: 0;
}


.ch-route-content small {
    display: block;

    margin-bottom: 7px;

    color: #4296ff;

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

    letter-spacing: 1.5px;
}


.ch-route-content h3 {
    margin: 0 0 4px;

    color: #ffffff;

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

    line-height: 1.4;
}


.ch-route-destination {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #ffffff;

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


.ch-route-destination i {
    color: #3594ff;

    font-size: 11px;
}



/* ==========================================================
   RIGHT DECORATIVE ICON
========================================================== */

.ch-route-icon {
    width: 48px;
    height: 60px;

    padding-left: 17px;

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

    color: rgba(76, 151, 247, 0.38);

    border-left:
        1px solid rgba(255,255,255,0.08);

    font-size: 27px;

    transition:
        color .25s ease,
        transform .25s ease;
}


.ch-route-card:hover .ch-route-icon {
    color: #4296ff;

    transform: scale(1.08);
}



/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {

    .ch-route-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 22px;
    }


    .ch-route-card:not(:last-child)::after {
        display: none;
    }

}



/* ==========================================================
   SMALL TABLET
========================================================== */

@media (max-width: 750px) {

    .ch-routes {
        padding: 65px 0;
    }


    .ch-routes-top {
        grid-template-columns: 1fr;

        gap: 22px;

        margin-bottom: 35px;
    }


    .ch-routes-heading h2 {
        font-size: 36px;
    }


    .ch-routes-description {
        max-width: 520px;
    }

}



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

@media (max-width: 550px) {

    .ch-routes {
        padding: 58px 0;
    }


    .ch-routes-heading h2 {
        font-size: 34px;

        letter-spacing: -1.4px;
    }


    .ch-routes-description p {
        font-size: 14px;
    }


    .ch-route-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .ch-route-card {
        min-height: 115px;

        padding: 20px;

        grid-template-columns: auto 1fr auto;

        gap: 15px;
    }


    .ch-route-number {
        width: 47px;
        height: 47px;

        font-size: 14px;
    }


    .ch-route-content h3,
    .ch-route-destination {
        font-size: 14px;
    }


    .ch-route-icon {
        width: 40px;

        font-size: 23px;
    }

}


/* ==========================================================
   LOCATION + FAQ
========================================================== */

.ch-location-faq {
    padding: 85px 0;

    background: #f6f9fd;
}

.ch-location-faq-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 45px;
}

.ch-location h2,
.ch-faq h2 {
    margin-bottom: 26px;
}


/* MAP */

.ch-map {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #d9e4ef;

    border-radius: 15px;
}

.ch-map iframe {
    width: 100%;
    height: 420px;

    display: block;

    border: 0;
}


/* FAQ */

.ch-faq-list {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.ch-faq-item {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #d9e4ef;

    border-radius: 10px;
}

.ch-faq-question {
    width: 100%;
    min-height: 68px;

    padding: 15px 20px;

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

    gap: 20px;

    color: #071a36;
    background: transparent;

    border: 0;

    cursor: pointer;

    text-align: left;

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

.ch-faq-question i {
    flex-shrink: 0;

    color: #1769e0;

    transition: transform .25s ease;
}

.ch-faq-answer {
    display: none;

    padding: 0 20px 20px;

    color: #60758b;

    font-size: 14px;
    line-height: 1.7;
}

.ch-faq-answer p {
    margin: 0;
}

.ch-faq-item.active .ch-faq-answer {
    display: block;
}

.ch-faq-item.active .ch-faq-question i {
    transform: rotate(45deg);
}


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

.ch-cta {
    padding: 55px 0;

    background: #1769e0;
}

.ch-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.ch-cta span {
    color: #d9eaff;

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

    letter-spacing: 2px;
}

.ch-cta h2 {
    margin: 7px 0;

    color: #ffffff;

    font-size: 35px;

    letter-spacing: -1px;
}

.ch-cta p {
    margin: 0;

    color: #d9e8fc;

    font-size: 14px;
}

.ch-cta-btn {
    min-height: 51px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;

    gap: 12px;

    flex-shrink: 0;

    color: #1769e0;
    background: #ffffff;

    border-radius: 7px;

    text-decoration: none;

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

    transition: transform .2s ease;
}

.ch-cta-btn:hover {
    transform: translateY(-2px);
}


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

.ch-footer {
    position: relative;
    padding-top: 70px;
    background: #071c38;
}


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

.ch-footer-grid {
    display: grid;

    grid-template-columns:
        1.2fr
        1fr
        1fr
        1fr
        1.1fr;

    align-items: start;

    gap: 55px;

    padding-bottom: 55px;
}


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

.ch-footer-brand {
    position: relative;

    /*
    IMPORTANT:
    We use top instead of transform because your
    ch-reveal animation already controls transform.
    */
    top: -55px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    margin: 0;
    padding: 0;
}


/* LOGO */

.ch-footer-brand img {
    width: 175px;
    height: auto;

    display: block;

    margin: 0 0 18px;
    padding: 0;

    object-fit: contain;
}


/* BRAND DESCRIPTION */

.ch-footer-brand p {
    max-width: 270px;

    margin: 0;

    color: #b7c7d8;

    font-size: 14px;
    line-height: 1.7;
}


/* ==========================================================
   OTHER FOOTER COLUMNS
========================================================== */

.ch-footer-column {
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* HEADINGS */

.ch-footer-column h3 {
    margin: 0 0 22px;

    color: #ffffff;

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

    line-height: 1.2;
}


/* LINKS */

.ch-footer-column > a {
    margin: 0 0 12px;

    color: #b7c7d8;

    text-decoration: none;

    font-size: 14px;
    line-height: 1.5;

    transition:
        color .2s ease,
        padding-left .2s ease;
}


.ch-footer-column > a:hover {
    color: #ffffff;
    padding-left: 3px;
}


/* ==========================================================
   CONTACT
========================================================== */

.ch-footer-contact {
    margin: 0 0 14px;

    display: flex;
    align-items: flex-start;

    gap: 11px;

    color: #b7c7d8;

    font-size: 14px;
    line-height: 1.5;
}


.ch-footer-contact i {
    width: 16px;

    margin-top: 3px;

    flex-shrink: 0;

    color: #2d83ee;

    text-align: center;
}


.ch-footer-contact a {
    color: inherit;
    text-decoration: none;
}


.ch-footer-contact a:hover {
    color: #ffffff;
}


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

.ch-footer-bottom {
    padding: 20px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}


.ch-footer-bottom p {
    margin: 0;

    color: #8fa4bb;

    font-size: 12px;
    line-height: 1.5;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {

    .ch-footer-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 45px 35px;
    }


    .ch-footer-brand {
        top: 0;
    }

}


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

@media (max-width: 750px) {

    .ch-footer {
        padding-top: 50px;
    }


    .ch-footer-grid {
        grid-template-columns: 1fr;

        gap: 34px;

        padding-bottom: 40px;
    }


    .ch-footer-brand {
        top: 0;
    }


    .ch-footer-brand img {
        width: 160px;
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {

    .ch-nav {
        gap: 18px;
    }

    .ch-header-btn {
        margin-left: 18px;

        padding: 0 17px;
    }


    .ch-hero-inner {
        grid-template-columns: 50% 50%;
    }

    .ch-hero-content {
        padding-right: 35px;
    }

    .ch-hero h1 {
        font-size: 50px;
    }

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


    .ch-service-grid,
    .ch-why-grid,
    .ch-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .ch-footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* ==========================================================
   SMALL TABLET
========================================================== */

@media (max-width: 900px) {

    .ch-header-btn {
        display: none;
    }

    .ch-menu-btn {
        display: block;

        margin-left: 22px;

        color: #ffffff;
        background: transparent;

        border: 0;

        cursor: pointer;

        font-size: 23px;
    }

    .ch-nav {
        position: absolute;

        top: 88px;
        left: 0;
        right: 0;

        display: none;
        flex-direction: column;
        align-items: flex-start;

        gap: 18px;

        padding: 25px 6%;

        background: #071c38;

        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .ch-nav.active {
        display: flex;
    }


    .ch-about-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .ch-areas-inner {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .ch-area-grid {
        grid-template-columns: repeat(3, 1fr);
    }


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


    .ch-location-faq-grid {
        grid-template-columns: 1fr;
    }

}


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

@media (max-width: 750px) {

    .ch-container {
        width: 88%;
    }


    /* HEADER */

    .ch-header {
        height: 76px;
    }

    .ch-logo img {
        width: 145px;
    }

    .ch-nav {
        top: 76px;
    }


    /* HERO */

    .ch-hero-inner {
        min-height: auto;

        display: flex;
        flex-direction: column;
    }

    .ch-hero-content {
        padding: 48px 0;
    }

    .ch-hero h1 {
        margin-top: 18px;

        font-size: 42px;

        letter-spacing: -1.8px;
    }

    .ch-hero-content > p {
        font-size: 15px;
    }

    .ch-hero-features {
        grid-template-columns: 1fr;

        gap: 17px;
    }

    .ch-hero-image {
        position: relative;

        width: 100%;
        min-height: 380px;
    }


    /* SHARED */

    .ch-section-heading h2,
    .ch-about h2,
    .ch-areas h2,
    .ch-location h2,
    .ch-faq h2 {
        font-size: 34px;
    }


    /* ABOUT */

    .ch-about {
        padding: 60px 0;
    }

    .ch-about-stats {
        gap: 25px;
    }

    .ch-about-card {
        padding: 30px 25px;
    }

    .ch-about-card h3 {
        font-size: 26px;
    }


    /* SERVICES */

    .ch-services {
        padding: 60px 0;
    }

    .ch-service-grid {
        grid-template-columns: 1fr;
    }


    /* WHY */

    .ch-why {
        padding: 60px 0;
    }

    .ch-why > .ch-container > h2 {
        font-size: 34px;
    }

    .ch-why-grid {
        grid-template-columns: 1fr;

        gap: 28px;
    }


    /* PROCESS */

    .ch-process {
        padding: 60px 0;
    }

    .ch-process-grid {
        grid-template-columns: 1fr;

        gap: 32px;
    }


    /* AREAS */

    .ch-areas {
        padding: 60px 0;
    }

    .ch-area-grid {
        grid-template-columns: 1fr;
    }


    /* ROUTES */

    .ch-routes {
        padding: 60px 0;
    }

    .ch-route-grid {
        grid-template-columns: 1fr;
    }


    /* LOCATION FAQ */

    .ch-location-faq {
        padding: 60px 0;
    }

    .ch-map iframe {
        height: 350px;
    }


    /* CTA */

    .ch-cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }

    .ch-cta h2 {
        font-size: 29px;
    }


    /* FOOTER */

    .ch-footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

}


/* ==========================================================
   VERY SMALL MOBILE
========================================================== */

@media (max-width: 430px) {

    .ch-small-label {
        font-size: 10px;

        letter-spacing: 1.5px;
    }

    .ch-small-label span {
        width: 25px;
    }

    .ch-hero h1 {
        font-size: 37px;
    }

    .ch-hero-image {
        min-height: 320px;
    }

    .ch-primary-btn {
        width: 100%;
    }

    .ch-about-stats {
        display: grid;

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

    .ch-map iframe {
        height: 300px;
    }

}

.ch-hero-image {
    min-height: 590px;
    overflow: hidden;
}

.ch-hero-image img {
    width: 100%;
    height: 590px;
    display: block;
    object-fit: cover;
}

/* ==========================================================
   GLOBAL SECTION SCROLL ANIMATIONS
========================================================== */

/* Default hidden state */
.ch-reveal {
    opacity: 0;
    transform: translateY(28px);

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


/* Reveal state */
.ch-reveal.ch-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Optional animation directions */

.ch-reveal-left {
    opacity: 0;
    transform: translateX(-35px);

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

.ch-reveal-left.ch-visible {
    opacity: 1;
    transform: translateX(0);
}


.ch-reveal-right {
    opacity: 0;
    transform: translateX(35px);

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

.ch-reveal-right.ch-visible {
    opacity: 1;
    transform: translateX(0);
}


.ch-reveal-scale {
    opacity: 0;
    transform: scale(0.94);

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

.ch-reveal-scale.ch-visible {
    opacity: 1;
    transform: scale(1);
}


/* ==========================================================
   STAGGER DELAYS
========================================================== */

.ch-delay-1 {
    transition-delay: 0.08s;
}

.ch-delay-2 {
    transition-delay: 0.16s;
}

.ch-delay-3 {
    transition-delay: 0.24s;
}

.ch-delay-4 {
    transition-delay: 0.32s;
}

.ch-delay-5 {
    transition-delay: 0.40s;
}


/* ==========================================================
   HOVER FOR CARDS / ITEMS
========================================================== */

.ch-service-card,
.ch-why-item,
.ch-process-item,
.ch-area-card,
.ch-route-card,
.ch-about-card,
.ch-faq-item {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.ch-service-card:hover,
.ch-process-item:hover,
.ch-area-card:hover,
.ch-route-card:hover {
    transform: translateY(-5px);
}


/* ICON HOVER */

.ch-service-icon,
.ch-process-icon,
.ch-about-icon,
.ch-why-item > i,
.ch-area-card i,
.ch-route-card > span {
    transition:
        transform 0.25s ease,
        filter 0.25s ease;
}


.ch-service-card:hover .ch-service-icon,
.ch-process-item:hover .ch-process-icon,
.ch-about-card:hover .ch-about-icon,
.ch-why-item:hover > i {
    transform: translateY(-3px) scale(1.06);
}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .ch-reveal,
    .ch-reveal-left,
    .ch-reveal-right,
    .ch-reveal-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }

}