/* =========================================================
   CREATIVE PATH - OUR SERVICES
   FULLY RESPONSIVE CSS
========================================================= */


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

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

section {
    width: 100%;
    padding: 100px 20px;
}


/* =========================================================
   SERVICE BANNER
========================================================= */

.service-banner {
    position: relative;

    width: 100%;
    min-height: 55vh;

    margin-top: 80px;

    padding: 120px 20px;

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

    text-align: center;

    background:
        linear-gradient(
            135deg,
            rgba(10, 31, 68, 0.72),
            rgba(10, 31, 68, 0.92)
        ),
        url("../img/services.png")
        center center / cover no-repeat;

    overflow: hidden;
}


/* Overlay */

.service-banner .overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(10, 31, 68, 0.15),
            rgba(10, 31, 68, 0.35)
        );

    z-index: 1;
}


/* Banner content */

.service-banner .banner-content {
    position: relative;

    width: 100%;
    max-width: 1000px;

    margin: auto;

    z-index: 2;
}


.service-banner .banner-content h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(32px, 5vw, 58px);

    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -0.5px;
}


.service-banner .banner-content p {
    max-width: 800px;

    margin: 18px auto 0;

    color: #dbe4ff;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   SERVICES INTRO + CARDS
========================================================= */

.services-page {
    width: 100%;

    background: #f4f7ff;

    overflow: hidden;
}


/* Intro paragraphs */

.services-page > p {
    width: min(1100px, 92%);

    margin: 0 auto 18px;

    color: #555;

    font-size: 15px;

    line-height: 1.85;

    text-align: center;
}


.services-page > p a {
    color: #1e90ff;

    font-weight: 600;

    text-decoration: none;
}


.services-page > p a:hover {
    color: #0c2d63;

    text-decoration: underline;
}


/* Remove excessive BR spacing */

.services-page > br {
    display: none;
}


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

.services-container {
    width: min(1200px, 92%);

    margin: 55px auto 0;

    display: grid;

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

    gap: 30px;
}


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

.service-box {
    position: relative;

    width: 100%;

    min-height: 330px;

    padding: 38px 28px;

    background: #ffffff;

    border-radius: 20px;

    text-align: center;

    overflow: hidden;

    border: 1px solid #edf2f7;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08);

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


/* Gradient border */

.service-box::after {
    content: "";

    position: absolute;

    inset: 0;

    padding: 2px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #1e90ff,
            #00c6ff
        );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    opacity: 0;

    transition: opacity 0.4s ease;

    pointer-events: none;
}


.service-box:hover::after {
    opacity: 1;
}


.service-box:hover {
    transform: translateY(-10px);

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.14);

    border-color: transparent;
}


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

.service-box .icon {
    position: relative;

    z-index: 2;

    margin-bottom: 18px;
}


.service-box .icon i {
    display: inline-flex;

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

    width: 75px;
    height: 75px;

    font-size: 35px;

    color: #1e90ff;

    background:
        linear-gradient(
            135deg,
            rgba(30, 144, 255, 0.10),
            rgba(0, 198, 255, 0.08)
        );

    border-radius: 18px;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.service-box:hover .icon i {
    transform: scale(1.1) rotate(-3deg);

    background:
        linear-gradient(
            135deg,
            rgba(30, 144, 255, 0.16),
            rgba(0, 198, 255, 0.14)
        );
}


/* =========================================================
   SERVICE TEXT
========================================================= */

.service-box h3 {
    position: relative;

    z-index: 2;

    margin: 0 0 12px;

    color: #0c2d63;

    font-size: 21px;

    font-weight: 600;

    line-height: 1.35;
}


.service-box p {
    position: relative;

    z-index: 2;

    margin: 0 0 18px;

    color: #666;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   SERVICE LIST
========================================================= */

.service-box ul {
    position: relative;

    z-index: 2;

    margin: 0 0 20px;

    padding: 0;

    list-style: none;
}


.service-box ul li {
    margin: 7px 0;

    color: #777;

    font-size: 13px;

    line-height: 1.5;
}


.service-box ul li::before {
    content: "✓";

    margin-right: 7px;

    color: #1e90ff;

    font-weight: 700;
}


/* =========================================================
   SERVICE BUTTON
========================================================= */

.service-btn {
    position: relative;

    z-index: 2;

    display: inline-block;

    padding: 10px 22px;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #1e90ff,
            #00c6ff
        );

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 500;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.service-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(30, 144, 255, 0.25);
}


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

.cta {
    width: 100%;

    padding:
        85px
        20px;

    background:
        linear-gradient(
            135deg,
            #1e90ff,
            #00c6ff
        );

    color: #ffffff;

    text-align: center;

    overflow: hidden;
}


.cta-content {
    width: min(800px, 92%);

    margin: 0 auto;
}


.cta h2 {
    margin: 0;

    font-size: clamp(28px, 4vw, 42px);

    font-weight: 700;

    line-height: 1.25;
}


.cta p {
    margin: 13px 0 0;

    font-size: 16px;

    line-height: 1.7;

    opacity: 0.95;
}


.cta-btn {
    display: inline-flex;

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

    margin-top: 25px;

    min-width: 150px;

    padding: 13px 30px;

    background: #ffffff;

    color: #1e90ff;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

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

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.cta-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.18);
}


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

.why-services {
    width: 100%;

    background: #ffffff;

    text-align: center;
}


.why-services > h2 {
    margin: 0;

    color: #0c2d63;

    font-size: clamp(30px, 4vw, 42px);

    font-weight: 700;

    line-height: 1.2;
}


.why-services > h2::after {
    content: "";

    display: block;

    width: 60px;
    height: 4px;

    margin: 14px auto 0;

    border-radius: 10px;

    background: #1e90ff;
}


/* Why grid */

.why-services .why-container {
    width: min(1000px, 92%);

    margin: 50px auto 0;

    display: grid;

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

    gap: 28px;
}


/* Why box */

.why-services .why-box {
    width: 100%;

    padding: 32px 25px;

    background: #f4f7ff;

    border: 1px solid #e5ecf7;

    border-radius: 20px;

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


.why-services .why-box:hover {
    transform: translateY(-8px);

    border-color: rgba(30, 144, 255, 0.25);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.10);
}


.why-services .why-box i {
    display: block;

    margin-bottom: 15px;

    font-size: 32px;

    color: #1e90ff;
}


.why-services .why-box h3 {
    margin: 0 0 10px;

    color: #0c2d63;

    font-size: 19px;

    font-weight: 600;
}


.why-services .why-box p {
    margin: 0;

    color: #666;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   SERVICE HIGHLIGHT
========================================================= */

.service-highlight {
    width: 100%;

    padding: 90px 20px;

    background: #f8faff;

    overflow: hidden;
}


.highlight-container {
    width: min(1200px, 92%);

    margin: 0 auto;

    display: grid;

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

    align-items: center;

    gap: 65px;
}


/* Image */

.highlight-img {
    width: 100%;

    overflow: hidden;

    border-radius: 18px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.12);
}


.highlight-img img {
    display: block;

    width: 100%;
    height: 420px;

    object-fit: cover;

    border-radius: 18px;

    transition:
        transform 0.5s ease;
}


.highlight-img:hover img {
    transform: scale(1.035);
}


/* Text */

.highlight-text {
    width: 100%;
}


.highlight-text h2 {
    margin: 0 0 17px;

    color: #0c2d63;

    font-size: clamp(28px, 4vw, 40px);

    font-weight: 700;

    line-height: 1.25;
}


.highlight-text h2::after {
    content: "";

    display: block;

    width: 55px;
    height: 4px;

    margin-top: 12px;

    border-radius: 10px;

    background: #1e90ff;
}


.highlight-text p {
    margin: 0 0 20px;

    color: #555;

    font-size: 15px;

    line-height: 1.8;
}


.highlight-text ul {
    margin: 0;

    padding: 0;

    list-style: none;
}


.highlight-text ul li {
    margin: 10px 0;

    color: #444;

    font-size: 14px;

    font-weight: 500;
}


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

.process {
    width: 100%;

    background: #ffffff;

    text-align: center;
}


.process > h2 {
    margin: 0;

    color: #0c2d63;

    font-size: clamp(30px, 4vw, 42px);

    font-weight: 700;

    line-height: 1.2;
}


.process > h2::after {
    content: "";

    display: block;

    width: 60px;
    height: 4px;

    margin: 14px auto 0;

    border-radius: 10px;

    background: #1e90ff;
}


.process-container {
    width: min(1100px, 92%);

    margin: 50px auto 0;

    display: grid;

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

    gap: 25px;
}


.process-box {
    position: relative;

    width: 100%;

    padding: 32px 22px;

    background: #f4f7ff;

    border: 1px solid #e5ecf7;

    border-radius: 20px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.process-box:hover {
    transform: translateY(-8px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.10);
}


.process-box span {
    display: block;

    margin-bottom: 12px;

    color: #1e90ff;

    font-size: 32px;

    font-weight: 700;

    line-height: 1;
}


.process-box h3 {
    margin: 0 0 9px;

    color: #0c2d63;

    font-size: 19px;

    font-weight: 600;
}


.process-box p {
    margin: 0;

    color: #666;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   STATS
========================================================= */

.stats {
    width: 100%;

    padding: 80px 20px;

    background:
        linear-gradient(
            135deg,
            #0c2d63,
            #081c3a
        );

    color: #ffffff;

    text-align: center;
}


.stats-container {
    width: min(1000px, 92%);

    margin: 0 auto;

    display: grid;

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

    gap: 30px;
}


.stat {
    position: relative;

    padding: 10px 20px;
}


.stat:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 15%;
    right: 0;

    width: 1px;
    height: 70%;

    background: rgba(255, 255, 255, 0.18);
}


.stat h2 {
    margin: 0 0 8px;

    color: #00c6ff;

    font-size: clamp(34px, 4vw, 48px);

    font-weight: 700;

    line-height: 1.1;
}


.stat p {
    margin: 0;

    color: #dbe4ff;

    font-size: 14px;

    line-height: 1.5;
}


/* =========================================================
   SEO LINKS
========================================================= */

.seo-links {
    width: 100%;

    margin: 0;

    padding: 60px 20px;

    background: #f4f7ff;

    text-align: center;
}


.seo-links h2 {
    margin: 0 0 17px;

    color: #0c2d63;

    font-size: clamp(26px, 4vw, 38px);

    font-weight: 700;

    line-height: 1.25;
}


.seo-links p {
    max-width: 1000px;

    margin: 0 auto;

    color: #555;

    font-size: 16px;

    line-height: 2;
}


.seo-links a {
    display: inline-block;

    margin: 0 8px;

    color: #1e90ff;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    transition: color 0.25s ease;
}


.seo-links a:hover {
    color: #0c2d63;

    text-decoration: underline;
}


/* =========================================================
   ENQUIRY MODAL
========================================================= */

.enquiry-modal {
    position: fixed;

    inset: 0;

    display: flex;

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

    padding: 20px;

    background:
        rgba(15, 23, 42, 0.75);

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.35s ease;

    z-index: 99999;
}


.enquiry-modal.show {
    opacity: 1;

    visibility: visible;
}


/* =========================================================
   POPUP BOX
========================================================= */

.enquiry-popup {
    position: relative;

    width: min(980px, 100%);

    max-height: 90vh;

    display: grid;

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

    background: #ffffff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.25);

    animation:
        popupAnimation 0.35s ease;

    z-index: 99999;
}


@keyframes popupAnimation {

    from {
        transform:
            translateY(40px)
            scale(0.95);

        opacity: 0;
    }

    to {
        transform:
            translateY(0)
            scale(1);

        opacity: 1;
    }
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.close-popup {
    position: absolute;

    top: 14px;
    right: 18px;

    width: 40px;
    height: 40px;

    display: flex;

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

    border: none;

    border-radius: 50%;

    background: #ffffff;

    color: #2563eb;

    font-size: 27px;

    line-height: 1;

    cursor: pointer;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.15);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;

    z-index: 10;
}


.close-popup:hover {
    background: #2563eb;

    color: #ffffff;

    transform: rotate(90deg);
}


/* =========================================================
   POPUP LEFT
========================================================= */

.popup-left {
    min-width: 0;

    padding: 55px 40px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #1e40af
        );

    color: #ffffff;
}


.popup-left h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: clamp(26px, 4vw, 34px);

    font-weight: 700;

    line-height: 1.25;
}


.popup-left p {
    margin: 0 0 25px;

    color: rgba(255, 255, 255, 0.95);

    font-size: 14px;

    line-height: 1.9;
}


.popup-left ul {
    margin: 0;

    padding: 0;

    list-style: none;
}


.popup-left li {
    margin: 15px 0;

    display: flex;

    align-items: center;

    gap: 12px;

    color: #ffffff;

    font-size: 14px;

    line-height: 1.5;
}


.popup-left li i {
    flex-shrink: 0;

    color: #ffffff;

    font-size: 17px;
}


/* =========================================================
   POPUP RIGHT
========================================================= */

.popup-right {
    min-width: 0;

    padding: 45px;
}


.popup-right h3 {
    margin: 0 0 25px;

    color: #0f172a;

    font-size: clamp(24px, 3vw, 28px);

    font-weight: 700;

    line-height: 1.3;
}


/* =========================================================
   FORM
========================================================= */

.form-group {
    width: 100%;

    margin-bottom: 17px;
}


.form-group input,
.form-group textarea {
    display: block;

    width: 100%;

    padding: 14px 17px;

    border: 1px solid #dbe3ef;

    border-radius: 12px;

    outline: none;

    background: #fafcff;

    color: #1e293b;

    font-family: inherit;

    font-size: 14px;

    line-height: 1.5;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}


.form-group input:focus,
.form-group textarea:focus {
    border-color: #2563eb;

    box-shadow:
        0 0 0 4px rgba(37, 99, 235, 0.12);

    background: #ffffff;
}


.form-group textarea {
    min-height: 130px;

    resize: vertical;
}


/* =========================================================
   POPUP SUBMIT BUTTON
========================================================= */

.popup-submit-btn {
    width: 100%;

    padding: 15px 20px;

    border: none;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #1e40af
        );

    color: #ffffff;

    font-family: inherit;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.popup-submit-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(37, 99, 235, 0.35);
}


.popup-submit-btn i {
    margin-right: 8px;
}


/* =========================================================
   POPUP SCROLLBAR
========================================================= */

.enquiry-popup::-webkit-scrollbar {
    width: 7px;
}


.enquiry-popup::-webkit-scrollbar-track {
    background: #f1f5f9;
}


.enquiry-popup::-webkit-scrollbar-thumb {
    background: #2563eb;

    border-radius: 20px;
}


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

@media (max-width: 1100px) {

    section {
        padding: 85px 20px;
    }


    .services-container {
        width: 94%;

        gap: 24px;
    }


    .service-box {
        padding: 32px 22px;
    }


    .highlight-container {
        width: 94%;

        gap: 40px;
    }


    .process-container {
        width: 94%;

        gap: 20px;
    }
}


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

@media (max-width: 992px) {

    /* Banner */

    .service-banner {
        min-height: 52vh;

        margin-top: 75px;

        padding:
            100px
            20px
            80px;
    }


    .service-banner .banner-content h1 {
        font-size: 44px;
    }


    /* Services */

    .services-container {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 22px;
    }


    .service-box {
        min-height: 310px;
    }


    /* Why */

    .why-services .why-container {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 20px;
    }


    /* Highlight */

    .highlight-container {
        grid-template-columns: 1fr;

        gap: 40px;

        text-align: center;
    }


    .highlight-text h2::after {
        margin-left: auto;
        margin-right: auto;
    }


    .highlight-img {
        max-width: 700px;

        margin: 0 auto;
    }


    .highlight-img img {
        height: 350px;
    }


    /* Process */

    .process-container {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* Popup */

    .enquiry-popup {
        width: min(900px, 94%);

        grid-template-columns:
            1fr 1.15fr;
    }


    .popup-left {
        padding: 40px 30px;
    }


    .popup-right {
        padding: 35px;
    }
}


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

@media (max-width: 768px) {

    section {
        padding:
            65px
            16px;
    }


    /* =====================================================
       BANNER
    ===================================================== */

    .service-banner {
        min-height: 52vh;

        margin-top: 70px;

        padding:
            95px
            16px
            65px;

        background-position: center center;
    }


    .service-banner .banner-content {
        width: 100%;
    }


    .service-banner .banner-content h1 {
        font-size: clamp(28px, 8vw, 38px);

        line-height: 1.2;
    }


    .service-banner .banner-content p {
        font-size: 13px;

        line-height: 1.7;
    }


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

    .services-page {
        padding-top: 60px;
    }


    .services-page > p {
        width: 100%;

        font-size: 13px;

        line-height: 1.75;

        text-align: center;
    }


    .services-container {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 18px;

        margin-top: 35px;
    }


    .service-box {
        min-height: auto;

        padding:
            30px
            20px;

        border-radius: 16px;
    }


    .service-box .icon i {
        width: 65px;
        height: 65px;

        font-size: 30px;

        border-radius: 15px;
    }


    .service-box h3 {
        font-size: 19px;
    }


    .service-box p {
        font-size: 13px;

        line-height: 1.7;
    }


    .service-box ul li {
        font-size: 12px;
    }


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

    .cta {
        padding:
            65px
            16px;
    }


    .cta-content {
        width: 100%;
    }


    .cta h2 {
        font-size: 28px;
    }


    .cta p {
        font-size: 13px;
    }


    .cta-btn {
        width: auto;

        min-width: 140px;

        padding:
            12px
            25px;
    }


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

    .why-services .why-container {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 18px;

        margin-top: 35px;
    }


    .why-services > h2 {
        font-size: 30px;
    }


    .why-services .why-box {
        padding: 28px 20px;
    }


    .why-services .why-box i {
        font-size: 30px;
    }


    .why-services .why-box h3 {
        font-size: 18px;
    }


    .why-services .why-box p {
        font-size: 13px;
    }


    /* =====================================================
       HIGHLIGHT
    ===================================================== */

    .service-highlight {
        padding:
            65px
            16px;
    }


    .highlight-container {
        width: 100%;

        gap: 30px;
    }


    .highlight-img {
        width: 100%;
    }


    .highlight-img img {
        height: 280px;

        border-radius: 14px;
    }


    .highlight-text h2 {
        font-size: 29px;
    }


    .highlight-text p {
        font-size: 13px;

        line-height: 1.75;
    }


    .highlight-text ul {
        text-align: left;
    }


    .highlight-text ul li {
        font-size: 13px;
    }


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

    .process {
        padding:
            65px
            16px;
    }


    .process > h2 {
        font-size: 30px;
    }


    .process-container {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 18px;

        margin-top: 35px;
    }


    .process-box {
        padding: 28px 20px;

        border-radius: 16px;
    }


    .process-box span {
        font-size: 28px;
    }


    .process-box h3 {
        font-size: 18px;
    }


    .process-box p {
        font-size: 13px;
    }


    /* =====================================================
       STATS
    ===================================================== */

    .stats {
        padding:
            55px
            12px;
    }


    .stats-container {
        width: 100%;

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

        gap: 5px;
    }


    .stat {
        padding:
            8px
            3px;
    }


    .stat:not(:last-child)::after {
        top: 15%;

        height: 70%;
    }


    .stat h2 {
        font-size: 28px;
    }


    .stat p {
        font-size: 10px;

        line-height: 1.4;
    }


    /* =====================================================
       SEO LINKS
    ===================================================== */

    .seo-links {
        padding:
            45px
            14px;
    }


    .seo-links h2 {
        font-size: 25px;
    }


    .seo-links p {
        font-size: 13px;

        line-height: 2;
    }


    .seo-links a {
        margin:
            0 4px;

        font-size: 13px;
    }


    /* =====================================================
       ENQUIRY POPUP
    ===================================================== */

    .enquiry-modal {
        padding: 12px;
    }


    .enquiry-popup {
        width: 100%;

        max-height: 94vh;

        display: block;

        overflow-y: auto;

        border-radius: 16px;
    }


    .popup-left {
        padding:
            35px
            22px;
    }


    .popup-left h2 {
        font-size: 26px;

        padding-right: 35px;
    }


    .popup-left p {
        font-size: 13px;

        line-height: 1.7;
    }


    .popup-left li {
        margin: 12px 0;

        font-size: 13px;
    }


    .popup-right {
        padding:
            30px
            20px;
    }


    .popup-right h3 {
        font-size: 23px;

        margin-bottom: 20px;
    }


    .form-group {
        margin-bottom: 14px;
    }


    .form-group input,
    .form-group textarea {
        padding:
            13px
            14px;

        font-size: 13px;
    }


    .form-group textarea {
        min-height: 110px;
    }


    .popup-submit-btn {
        padding: 14px;

        font-size: 14px;
    }


    .close-popup {
        top: 10px;
        right: 10px;

        width: 37px;
        height: 37px;

        font-size: 24px;
    }
}


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

@media (max-width: 480px) {

    /* Banner */

    .service-banner {
        min-height: 50vh;

        margin-top: 66px;

        padding:
            90px
            14px
            55px;
    }


    .service-banner .banner-content h1 {
        font-size: 28px;
    }


    .service-banner .banner-content p {
        font-size: 12px;
    }


    /* Services */

    .services-page {
        padding:
            55px
            14px;
    }


    .services-page > p {
        width: 100%;

        font-size: 12px;
    }


    .services-container {
        gap: 16px;
    }


    .service-box {
        padding:
            27px
            17px;

        border-radius: 15px;
    }


    .service-box .icon i {
        width: 60px;
        height: 60px;

        font-size: 27px;
    }


    .service-box h3 {
        font-size: 18px;
    }


    .service-box p {
        font-size: 12px;
    }


    .service-box ul li {
        font-size: 11px;
    }


    /* CTA */

    .cta {
        padding:
            55px
            14px;
    }


    .cta h2 {
        font-size: 25px;
    }


    .cta p {
        font-size: 12px;
    }


    /* Why */

    .why-services {
        padding:
            55px
            14px;
    }


    .why-services > h2 {
        font-size: 27px;
    }


    .why-services .why-box {
        padding:
            25px
            17px;
    }


    /* Highlight */

    .service-highlight {
        padding:
            55px
            14px;
    }


    .highlight-img img {
        height: 220px;
    }


    .highlight-text h2 {
        font-size: 26px;
    }


    .highlight-text p {
        font-size: 12px;
    }


    .highlight-text ul li {
        font-size: 12px;
    }


    /* Process */

    .process {
        padding:
            55px
            14px;
    }


    .process > h2 {
        font-size: 27px;
    }


    .process-box {
        padding:
            25px
            17px;
    }


    /* Stats */

    .stats {
        padding:
            45px
            8px;
    }


    .stat h2 {
        font-size: 24px;
    }


    .stat p {
        font-size: 9px;
    }


    /* SEO */

    .seo-links {
        padding:
            40px
            12px;
    }


    .seo-links h2 {
        font-size: 23px;
    }


    .seo-links p {
        font-size: 12px;

        line-height: 2.2;
    }


    .seo-links a {
        font-size: 12px;
    }


    /* Popup */

    .enquiry-modal {
        padding: 8px;
    }


    .enquiry-popup {
        max-height: 96vh;

        border-radius: 14px;
    }


    .popup-left {
        padding:
            30px
            18px;
    }


    .popup-left h2 {
        font-size: 23px;
    }


    .popup-left p {
        font-size: 12px;
    }


    .popup-left li {
        font-size: 12px;
    }


    .popup-right {
        padding:
            25px
            15px;
    }


    .popup-right h3 {
        font-size: 21px;
    }


    .form-group input,
    .form-group textarea {
        padding:
            12px
            13px;

        font-size: 12px;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 360px) {

    .service-banner {
        min-height: 48vh;

        padding:
            85px
            12px
            50px;
    }


    .service-banner .banner-content h1 {
        font-size: 25px;
    }


    .service-banner .banner-content p {
        font-size: 11px;
    }


    .services-page,
    .cta,
    .why-services,
    .service-highlight,
    .process {
        padding-left: 12px;
        padding-right: 12px;
    }


    .service-box {
        padding:
            24px
            14px;
    }


    .service-box h3 {
        font-size: 17px;
    }


    .service-box p {
        font-size: 11px;
    }


    .service-box ul li {
        font-size: 10px;
    }


    .cta h2 {
        font-size: 23px;
    }


    .highlight-img img {
        height: 190px;
    }


    .highlight-text h2 {
        font-size: 24px;
    }


    .process > h2 {
        font-size: 25px;
    }


    .stat h2 {
        font-size: 21px;
    }


    .stat p {
        font-size: 8px;
    }


    .seo-links h2 {
        font-size: 21px;
    }


    .seo-links a {
        font-size: 11px;
    }


    .popup-left h2 {
        font-size: 21px;
    }


    .popup-right h3 {
        font-size: 19px;
    }
}


/* =========================================================
   TOUCH DEVICES
========================================================= */

@media (hover: none) {

    .service-box:hover,
    .why-services .why-box:hover,
    .process-box:hover,
    .highlight-img:hover img,
    .cta-btn:hover,
    .popup-submit-btn:hover {
        transform: none;
    }

}


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

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;
    }

}