/* =========================================
   MILSERVE PORTAL
   SERVICES PAGE — LIGHT MILITARY DESIGN
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oswald:wght@400;500;600&display=swap');


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #f4f6f2;
    color: #182018;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";

    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: 9999;

    opacity: 0.018;

    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(0, 0, 0, 0.15) 4px
        );
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}


/* =========================================
   NAVIGATION
========================================= */

.navbar {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 22px 0;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.97),
            rgba(255, 255, 255, 0.88)
        );

    border-bottom:
        1px solid rgba(30, 45, 30, 0.10);

    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.brand {
    display: flex;

    align-items: center;

    gap: 12px;
}

.brand-symbol {
    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #3d5135;

    color: #ffffff;

    font-family: "Oswald", sans-serif;

    font-size: 18px;

    font-weight: 600;

    clip-path: polygon(
        50% 0%,
        93% 25%,
        93% 75%,
        50% 100%,
        7% 75%,
        7% 25%
    );

    box-shadow:
        0 6px 20px rgba(45, 65, 45, 0.18);
}

.brand-text {
    display: flex;

    flex-direction: column;

    line-height: 1;
}

.brand-text span {
    font-family: "Oswald", sans-serif;

    font-size: 21px;

    font-weight: 600;

    letter-spacing: 1px;

    color: #172018;
}

.brand-text small {
    margin-top: 5px;

    color: #6c756b;

    font-size: 8px;

    letter-spacing: 2px;
}

.nav-links {
    display: flex;

    align-items: center;

    gap: 32px;
}

.nav-links a {
    position: relative;

    color: #344034;

    font-size: 13px;

    font-weight: 600;

    transition: 0.3s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -7px;

    width: 0;

    height: 2px;

    background: #687d55;

    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3d5135;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-button {
    padding: 11px 19px;

    border: 1px solid #536a48;

    color: #3d5135 !important;

    transition: 0.3s ease;
}

.nav-button::after {
    display: none;
}

.nav-button:hover {
    background: #3d5135;

    color: #ffffff !important;

    box-shadow:
        0 8px 22px rgba(61, 81, 53, 0.18);
}

.menu-toggle {
    display: none;

    background: none;

    border: none;

    color: #263126;

    font-size: 28px;

    cursor: pointer;
}


/* =========================================
   PAGE HERO
========================================= */

.page-hero {
    position: relative;

    min-height: 620px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #263425,
            #34452f 55%,
            #1c281d
        );

    color: #ffffff;
}

.page-hero::before {
    content: "";

    position: absolute;

    inset: 0;

    opacity: 0.12;

    background-image:
        linear-gradient(
            rgba(220, 225, 200, 0.22) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(220, 225, 200, 0.22) 1px,
            transparent 1px
        );

    background-size: 75px 75px;

    mask-image:
        linear-gradient(
            to right,
            black,
            transparent 90%
        );
}

.page-hero::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(216, 200, 117, 0.10),
            transparent 30%
        ),
        linear-gradient(
            90deg,
            rgba(10, 17, 11, 0.45),
            transparent 70%
        );
}

.page-hero-grid {
    position: absolute;

    width: 450px;
    height: 450px;

    right: 8%;
    top: 100px;

    border:
        1px solid rgba(216, 200, 117, 0.20);

    transform: rotate(45deg);

    opacity: 0.6;
}

.page-hero-grid::before,
.page-hero-grid::after {
    content: "";

    position: absolute;

    inset: 45px;

    border:
        1px solid rgba(216, 200, 117, 0.15);
}

.page-hero-grid::after {
    inset: 90px;
}

.page-hero-line {
    position: absolute;

    left: 0;
    right: 0;

    top: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(216, 200, 117, 0.65),
            transparent
        );
}

.page-hero-content {
    position: relative;

    z-index: 5;

    padding-top: 100px;

    max-width: 820px;
}

.hero-label {
    display: inline-block;

    margin-bottom: 22px;

    color: #d8c875;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;
}

.hero-number {
    position: absolute;

    right: 0;

    top: 130px;

    font-family: "Oswald", sans-serif;

    font-size: 150px;

    line-height: 1;

    color: rgba(255, 255, 255, 0.035);

    user-select: none;
}

.page-hero h1 {
    position: relative;

    font-family: "Oswald", sans-serif;

    font-size: clamp(60px, 8vw, 105px);

    font-weight: 500;

    line-height: 0.95;

    text-transform: uppercase;

    letter-spacing: -1px;
}

.page-hero h1 span {
    color: #d8c875;
}

.page-hero p {
    max-width: 650px;

    margin-top: 28px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 15px;

    line-height: 1.9;
}

.hero-meta {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 38px;

    color: rgba(255, 255, 255, 0.52);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}

.hero-meta span:nth-child(2) {
    width: 50px;

    height: 1px;

    background: #d8c875;
}

.hero-scroll {
    position: absolute;

    bottom: 28px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 5;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 8px;

    letter-spacing: 2px;
}

.hero-scroll span {
    width: 1px;

    height: 30px;

    background: #d8c875;
}


/* =========================================
   GENERAL SECTIONS
========================================= */

.section {
    position: relative;

    padding: 110px 0;

    overflow: hidden;
}

.section::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(70, 90, 60, 0.20),
            transparent
        );
}

.section-label {
    display: block;

    margin-bottom: 15px;

    color: #65794f;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;
}


/* =========================================
   INTRO
========================================= */

.intro {
    background: #ffffff;
}

.intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.intro-heading h2 {
    font-family: "Oswald", sans-serif;

    font-size: clamp(45px, 5vw, 70px);

    font-weight: 500;

    line-height: 1;

    text-transform: uppercase;

    color: #202920;
}

.intro-heading h2 span {
    color: #65794f;
}

.intro-content {
    max-width: 540px;
}

.intro-content p {
    color: #697269;

    font-size: 15px;

    line-height: 1.9;
}

.intro-content p + p {
    margin-top: 15px;
}

.intro-status {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 30px;

    padding-top: 20px;

    border-top:
        1px solid rgba(50, 70, 50, 0.12);

    color: #65794f;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #65794f;

    box-shadow:
        0 0 0 4px rgba(101, 121, 79, 0.10);
}


/* =========================================
   SERVICES
========================================= */

.services {
    background:
        linear-gradient(
            180deg,
            #f4f6f2,
            #e9ede7
        );
}

.section-heading {
    max-width: 680px;

    margin-bottom: 65px;
}

.section-heading h2 {
    font-family: "Oswald", sans-serif;

    font-size: clamp(45px, 5vw, 65px);

    font-weight: 500;

    line-height: 1;

    text-transform: uppercase;

    color: #202920;
}

.section-heading h2 span {
    color: #65794f;
}

.section-heading p {
    margin-top: 18px;

    color: #697269;

    font-size: 15px;
}

.services-list {
    display: flex;

    flex-direction: column;

    gap: 30px;
}

.service-card {
    position: relative;

    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    min-height: 520px;

    background: #ffffff;

    border:
        1px solid rgba(50, 70, 50, 0.12);

    box-shadow:
        0 20px 55px rgba(35, 50, 35, 0.07);

    overflow: hidden;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(86, 108, 71, 0.28);

    box-shadow:
        0 30px 65px rgba(35, 50, 35, 0.12);
}

.service-card.reverse {
    grid-template-columns: 1.05fr 0.95fr;
}

.service-card.reverse .service-image {
    order: 2;
}

.service-card.reverse .service-content {
    order: 1;
}

.service-number {
    position: absolute;

    top: 25px;

    left: 25px;

    z-index: 5;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.92);

    color: #526645;

    font-family: "Oswald", sans-serif;

    font-size: 14px;

    border:
        1px solid rgba(70, 90, 60, 0.20);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.10);
}

.service-image {
    position: relative;

    min-height: 520px;

    background-size: cover;

    background-position: center;

    overflow: hidden;
}

.service-image::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(15, 25, 16, 0.10),
            rgba(15, 25, 16, 0.48)
        );

    z-index: 1;
}

.leave-image {
    background-image:
        url("../img/hero.jpg");

    background-position: center;
}

.retirement-image {
    background-image:
        url("../img/retirement.jpg");

    background-position: center;
}

.transport-image {
    background-image:
        url("../img/transportation.jpg");

    background-position: center;
}

.image-label {
    position: absolute;

    left: 28px;

    bottom: 25px;

    z-index: 3;

    color: #d8c875;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}

.service-content {
    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 65px;
}

.service-category {
    color: #687d54;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2.5px;
}

.service-content h3 {
    margin-top: 13px;

    font-family: "Oswald", sans-serif;

    font-size: clamp(38px, 4vw, 56px);

    font-weight: 500;

    line-height: 1;

    text-transform: uppercase;

    color: #263026;
}

.service-content h3 span {
    display: block;

    color: #65794f;
}

.service-content > p {
    max-width: 520px;

    margin-top: 25px;

    color: #697269;

    font-size: 14px;

    line-height: 1.9;
}

.service-details {
    display: flex;

    gap: 45px;

    margin-top: 30px;

    padding-top: 22px;

    border-top:
        1px solid rgba(40, 60, 40, 0.10);
}

.service-details div {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.service-details span {
    color: #9aa19a;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.service-details strong {
    color: #344034;

    font-size: 10px;

    letter-spacing: 1px;
}

.service-button {
    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    max-width: 400px;

    margin-top: 32px;

    padding: 16px 18px;

    border:
        1px solid #65794f;

    color: #526645;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.service-button strong {
    font-size: 19px;

    font-weight: 400;

    transition:
        transform 0.3s ease;
}

.service-button:hover {
    background: #3d5135;

    color: #ffffff;

    transform: translateY(-2px);
}

.service-button:hover strong {
    transform: translateX(5px);
}


/* =========================================
   PROCESS
========================================= */

.process {
    background: #ffffff;
}

.process-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 70px;
}

.process-header h2 {
    font-family: "Oswald", sans-serif;

    font-size: clamp(45px, 5vw, 65px);

    font-weight: 500;

    line-height: 1;

    text-transform: uppercase;

    color: #202920;
}

.process-header h2 span {
    color: #65794f;
}

.process-header p {
    max-width: 430px;

    color: #697269;

    font-size: 14px;

    line-height: 1.8;
}

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}

.process-item {
    position: relative;

    padding: 28px 25px;

    background: #f4f6f2;

    border:
        1px solid rgba(50, 70, 50, 0.10);

    min-height: 235px;
}

.process-top {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 30px;
}

.process-top > span {
    color: #65794f;

    font-family: "Oswald", sans-serif;

    font-size: 16px;
}

.process-line {
    flex: 1;

    height: 1px;

    background:
        rgba(70, 90, 60, 0.15);
}

.process-item h3 {
    font-family: "Oswald", sans-serif;

    font-size: 25px;

    font-weight: 500;

    text-transform: uppercase;

    color: #263026;
}

.process-item p {
    margin-top: 12px;

    color: #697269;

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================
   TRACKING CTA
========================================= */

.tracking-cta {
    padding: 90px 0;

    background:
        linear-gradient(
            180deg,
            #eef1eb,
            #e4e9e1
        );
}

.tracking-box {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding: 65px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #263425,
            #35472f
        );

    box-shadow:
        0 25px 60px rgba(30, 45, 30, 0.15);
}

.tracking-box::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 40%;

    height: 100%;

    background:
        linear-gradient(
            135deg,
            transparent 35%,
            rgba(216, 200, 117, 0.08)
        );

    pointer-events: none;
}

.tracking-decoration {
    position: absolute;

    right: 40px;

    top: 10px;

    font-family: "Oswald", sans-serif;

    font-size: 180px;

    color: rgba(255, 255, 255, 0.025);

    user-select: none;
}

.tracking-content {
    position: relative;

    z-index: 2;
}

.tracking-content .section-label {
    color: #d8c875;
}

.tracking-content h2 {
    max-width: 650px;

    font-family: "Oswald", sans-serif;

    font-size: clamp(38px, 5vw, 60px);

    font-weight: 500;

    line-height: 1;

    text-transform: uppercase;

    color: #ffffff;
}

.tracking-content h2 span {
    color: #d8c875;
}

.tracking-content p {
    max-width: 560px;

    margin-top: 18px;

    color: rgba(255, 255, 255, 0.70);

    font-size: 14px;
}

.btn {
    position: relative;

    z-index: 3;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding: 0 27px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: #d0bd63;

    color: #20291e;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background: #e1d17e;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.20);
}


/* =========================================
   NOTICE
========================================= */

.notice {
    position: relative;

    padding: 30px 0;

    background:
        linear-gradient(
            90deg,
            #dfe5da,
            #e8ece5,
            #dfe5da
        );

    border-top:
        1px solid rgba(50, 70, 50, 0.10);

    border-bottom:
        1px solid rgba(50, 70, 50, 0.10);
}

.notice-content {
    display: flex;

    align-items: center;

    gap: 25px;
}

.notice-content strong {
    white-space: nowrap;

    color: #526645;

    font-size: 10px;

    letter-spacing: 2px;
}

.notice-content p {
    color: #697269;

    font-size: 11px;
}


/* =========================================
   FOOTER
========================================= */

footer {
    position: relative;

    padding-top: 80px;

    background:
        linear-gradient(
            180deg,
            #20291f,
            #151c15
        );

    color: #ffffff;
}

footer::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(210, 190, 100, 0.45),
            transparent
        );
}

.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 70px;
}

.footer-brand p {
    max-width: 280px;

    margin-top: 20px;

    color: #a0aaa0;

    font-size: 13px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.footer-column h4 {
    margin-bottom: 10px;

    color: #d2c37c;

    font-family: "Oswald", sans-serif;

    font-size: 16px;

    font-weight: 500;

    text-transform: uppercase;
}

.footer-column a {
    color: #a0aaa0;

    font-size: 12px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-column a:hover {
    color: #d8c875;

    transform: translateX(3px);
}

.footer-bottom {
    padding: 22px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.footer-bottom p,
.footer-bottom span {
    color: #788078;

    font-size: 10px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .nav-links {
        gap: 20px;
    }

    .intro-grid {
        gap: 50px;
    }

    .service-card,
    .service-card.reverse {
        grid-template-columns: 1fr 1fr;
    }

    .service-content {
        padding: 45px;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tracking-box {
        padding: 50px;
    }
}


/* =========================================
   MOBILE NAVIGATION
========================================= */

@media (max-width: 900px) {

    .navbar {
        background:
            rgba(255, 255, 255, 0.96);

        backdrop-filter: blur(10px);
    }

    .nav-links {
        position: absolute;

        top: 88px;

        left: 5%;
        right: 5%;

        display: none;

        flex-direction: column;

        align-items: stretch;

        padding: 25px;

        background: #ffffff;

        border:
            1px solid rgba(40, 60, 40, 0.12);

        box-shadow:
            0 25px 60px rgba(30, 45, 30, 0.15);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 10px 0;
    }

    .nav-links a::after {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .intro-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .service-card,
    .service-card.reverse {
        grid-template-columns: 1fr;
    }

    .service-card.reverse .service-image,
    .service-card.reverse .service-content {
        order: initial;
    }

    .service-image {
        min-height: 400px;
    }

    .process-header {
        align-items: flex-start;

        flex-direction: column;
    }

    .tracking-box {
        align-items: flex-start;

        flex-direction: column;
    }

    .notice-content {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .container {
        width: min(92%, 1180px);
    }

    .navbar {
        padding: 18px 0;
    }

    .brand-symbol {
        width: 40px;
        height: 40px;

        font-size: 16px;
    }

    .brand-text span {
        font-size: 18px;
    }

    .page-hero {
        min-height: 600px;
    }

    .page-hero-content {
        padding-top: 80px;
    }

    .page-hero h1 {
        font-size: 55px;
    }

    .page-hero p {
        font-size: 14px;
    }

    .hero-number {
        top: 130px;

        right: 0;

        font-size: 100px;
    }

    .hero-meta {
        flex-wrap: wrap;

        font-size: 7px;
    }

    .section {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .intro-heading h2,
    .section-heading h2 {
        font-size: 44px;
    }

    .service-image {
        min-height: 300px;
    }

    .service-content {
        padding: 35px 25px;
    }

    .service-content h3 {
        font-size: 40px;
    }

    .service-details {
        gap: 25px;
    }

    .service-button {
        max-width: 100%;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-item {
        min-height: auto;
    }

    .tracking-cta {
        padding: 70px 0;
    }

    .tracking-box {
        padding: 40px 25px;
    }

    .tracking-content h2 {
        font-size: 40px;
    }

    .tracking-decoration {
        font-size: 120px;
    }

    .tracking-box .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom .container {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .page-hero h1 {
        font-size: 48px;
    }

    .intro-heading h2,
    .section-heading h2 {
        font-size: 38px;
    }

    .service-content h3 {
        font-size: 34px;
    }

    .tracking-content h2 {
        font-size: 34px;
    }

    .brand-text small {
        font-size: 7px;
    }
}

/* =========================================
   SERVICE REVEAL ANIMATION
========================================= */

.service-card {
    opacity: 0;
    transform: translateY(25px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(1) {
    transition-delay: 0.05s;
}

.service-card:nth-child(2) {
    transition-delay: 0.12s;
}

.service-card:nth-child(3) {
    transition-delay: 0.19s;
}

@media (prefers-reduced-motion: reduce) {

    .service-card,
    .service-card.visible {
        opacity: 1;
        transform: none;
    }
}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .service-card,
    .service-button,
    .service-button strong,
    .btn,
    .nav-links a {
        transition: none;
    }
}