

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}


/* =========================================
   TOP CONTACT BAR
========================================= */

.wave-topbar {
    width: 100%;
    background: #062b4c;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
}

.wave-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.wave-topbar-item {
    min-height: 48px;

    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 12px;
    line-height: 1.5;
}

.wave-topbar-item i {
    color: #18a6bd;
    font-size: 15px;
    min-width: 16px;
    text-align: center;
}

.wave-topbar-item a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

.wave-topbar-item a:hover {
    color: #19b4ca;
}

.wave-topbar-item span {
    color: #ffffff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .wave-container {
        padding: 0 20px;
        gap: 15px;
    }

    .wave-topbar-item {
        font-size: 10px;
        gap: 7px;
    }

    .wave-topbar-item i {
        font-size: 13px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .wave-topbar {
        display: none;
    }

}


/* =========================================
   MAIN HEADER
========================================= */

.wave-header {
    width: 100%;
    background: #ffffff;
    position: relative;
    z-index: 999;
    border-bottom: 1px solid #eeeeee;
}


/* Header Container */

.wave-header-container {
    width: 100%;
    max-width: 1400px;
    min-height: 82px;

    margin: 0 auto;
    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================
   LOGO
========================================= */

.wave-logo {
    flex: 0 0 auto;
}

.wave-logo a {
    display: flex;
    align-items: center;
}

.wave-logo img {
    width: 125px;
    height: auto;
    display: block;
}


/* =========================================
   NAVIGATION
========================================= */

.wave-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.wave-menu {
    display: flex;
    align-items: center;
    justify-content: center;

    list-style: none;
    margin: 0;
    padding: 0;

    gap: 34px;
}

.wave-menu li {
    position: relative;
}

.wave-menu li a {
    position: relative;

    display: inline-block;

    padding: 30px 0;

    color: #062b4c;
    font-family: "Poppins", sans-serif;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    transition: all 0.3s ease;
}


/* Hover */

.wave-menu li a:hover {
    color: #079db5;
}


/* Active Link */

.wave-menu li.active a {
    color: #079db5;
}


/* Active Underline */

/* .wave-menu li.active a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 20px;

    width: 28px;
    height: 2px;

    background: #079db5;

    transform: translateX(-50%);
} */


/* =========================================
   APPOINTMENT BUTTON
========================================= */

.wave-header-button {
    flex: 0 0 auto;
}

.wave-appointment-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 0 22px;

    border-radius: 7px;

    background: #079db5;
    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    transition: all 0.3s ease;
}

.wave-appointment-btn:hover {
    background: #062b4c;
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.wave-mobile-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 0;
    border-radius: 5px;

    background: #079db5;
    color: #ffffff;

    font-size: 18px;

    cursor: pointer;
}


/* =========================================
   STICKY HEADER
========================================= */

.wave-header {
    position: sticky;
    top: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .wave-header-container {
        padding: 0 20px;
        gap: 20px;
    }

    .wave-logo img {
        width: 110px;
    }

    .wave-menu {
        gap: 20px;
    }

    .wave-menu li a {
        font-size: 12px;
    }

    .wave-appointment-btn {
        padding: 0 16px;
        font-size: 12px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .wave-header-container {
        min-height: 70px;
        padding: 0 18px;
    }


    /* Logo */

    .wave-logo img {
        width: 105px;
    }


    /* Hide Desktop Navigation */

    .wave-navigation {
        display: none;
    }


    /* Hide Appointment */

    .wave-header-button {
        display: none;
    }


    /* Show Mobile Button */

    .wave-mobile-toggle {
        display: flex;

        align-items: center;
        justify-content: center;
    }

}



/* =========================================
   HERO SECTION
========================================= */

.wave-hero-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #eef8fc;
}


/* =========================================
   SLIDER
========================================= */

.wave-hero-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}


/* =========================================
   SLIDE
========================================= */

.wave-hero-slide {
    width: 100%;
    min-height: 500px;

    display: none;
    align-items: stretch;

    background:
        linear-gradient(
            90deg,
            #f5fbfe 0%,
            #edf8fc 45%,
            #e2f3f9 100%
        );
}


/* Active Slide */

.wave-hero-slide.active {
    display: flex;
}


/* =========================================
   HERO CONTENT
========================================= */

.wave-hero-content {
    width: 50%;

    padding: 70px 40px 75px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    position: relative;
    z-index: 2;
}


/* Small Heading */

.wave-hero-small-title {
    display: inline-block;

    margin-bottom: 15px;

    color: #079db5;

    font-family: "Poppins", sans-serif;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1.5px;
}


/* Main Heading */

.wave-hero-content h1 {
    max-width: 650px;

    margin: 0 0 20px;

    color: #062b4c;

    font-family: "Poppins", sans-serif;

    font-size: clamp(38px, 4vw, 64px);

    line-height: 1.12;

    font-weight: 700;
}


/* Highlight */

.wave-hero-content h1 span {
    display: block;
    color: #079db5;
}


/* Description */

.wave-hero-content p {
    max-width: 620px;

    margin: 0 0 30px;

    color: #425a6b;

    font-family: "Poppins", sans-serif;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   HERO BUTTONS
========================================= */

.wave-hero-buttons {
    display: flex;
    align-items: center;

    gap: 14px;

    flex-wrap: wrap;
}


/* Primary Button */

.wave-btn-primary {
    min-height: 48px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 6px;

    background: #079db5;
    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

.wave-btn-primary:hover {
    background: #062b4c;
    color: #ffffff;

    transform: translateY(-2px);
}


/* Secondary Button */

.wave-btn-secondary {
    min-height: 48px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 6px;

    border: 1px solid #079db5;

    background: #ffffff;

    color: #062b4c;

    font-family: "Poppins", sans-serif;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

.wave-btn-secondary:hover {
    background: #079db5;
    color: #ffffff;
}


/* =========================================
   HERO IMAGE
========================================= */

.wave-hero-image {
    width: 50%;

    min-height: 500px;

    position: relative;

    overflow: hidden;
}


/* Image */

.wave-hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* Curved Overlay */

.wave-hero-image::before {
    content: "";

    position: absolute;

    top: -5%;
    left: -80px;

    width: 160px;
    height: 110%;

    background: #edf8fc;

    border-radius: 50%;

    z-index: 2;
}


/* Teal Curve */

.wave-hero-image::after {
    content: "";

    position: absolute;

    top: 0;
    left: -30px;

    width: 60px;
    height: 100%;

    border-left: 8px solid #079db5;

    border-radius: 50%;

    z-index: 3;
}


/* =========================================
   SLIDER ARROWS
========================================= */

.wave-hero-arrow {
    position: absolute;

    top: 50%;

    width: 42px;
    height: 42px;

    border: none;

    border-radius: 50%;

    background: #ffffff;

    color: #079db5;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 10;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.10);

    transform: translateY(-50%);

    transition: all 0.3s ease;
}

.wave-hero-arrow:hover {
    background: #079db5;
    color: #ffffff;
}


/* Previous */

.wave-hero-prev {
    left: 25px;
}


/* Next */

.wave-hero-next {
    right: 25px;
}


/* =========================================
   SLIDER DOTS
========================================= */

.wave-hero-dots {
    position: absolute;

    left: 50%;
    bottom: 25px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 8px;

    z-index: 10;
}


.wave-hero-dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: #c4cdd2;

    cursor: pointer;

    transition: all 0.3s ease;
}


.wave-hero-dot.active {
    width: 25px;

    border-radius: 20px;

    background: #079db5;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .wave-hero-slide {
        min-height: 450px;
    }

    .wave-hero-content {
        padding: 55px 30px 65px;
    }

    .wave-hero-content h1 {
        font-size: 42px;
    }

    .wave-hero-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .wave-hero-image {
        min-height: 450px;
    }

    .wave-hero-image::before {
        left: -55px;
        width: 110px;
    }

    .wave-hero-image::after {
        left: -20px;
        width: 40px;
        border-left-width: 6px;
    }

    .wave-hero-prev {
        left: 15px;
    }

    .wave-hero-next {
        right: 15px;
    }

}


/* =========================================
   SMALL TABLET
========================================= */

@media (max-width: 850px) {

    .wave-hero-slide {
        min-height: 420px;
    }

    .wave-hero-content {
        width: 52%;
        padding: 45px 25px 60px;
    }

    .wave-hero-image {
        width: 48%;
        min-height: 420px;
    }

    .wave-hero-content h1 {
        font-size: 34px;
    }

    .wave-hero-content p {
        font-size: 13px;
    }

    .wave-btn-primary,
    .wave-btn-secondary {
        min-height: 44px;
        padding: 0 16px;
        font-size: 12px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .wave-hero-slide {
        min-height: auto;

        flex-direction: column;

        background: #f2fafd;
    }


    /* Image comes first */

    .wave-hero-image {
        order: 1;

        width: 100%;

        height: 280px;
        min-height: 280px;
    }


    /* Remove desktop curve */

    .wave-hero-image::before {
        display: none;
    }

    .wave-hero-image::after {
        display: none;
    }


    /* Content */

    .wave-hero-content {
        order: 2;

        width: 100%;

        padding: 35px 22px 65px;

        text-align: center;

        align-items: center;
    }


    .wave-hero-small-title {
        font-size: 11px;

        margin-bottom: 10px;
    }


    .wave-hero-content h1 {
        max-width: 500px;

        margin-bottom: 15px;

        font-size: 31px;

        line-height: 1.2;
    }


    .wave-hero-content p {
        max-width: 500px;

        margin-bottom: 22px;

        font-size: 13px;

        line-height: 1.7;
    }


    /* Buttons */

    .wave-hero-buttons {
        justify-content: center;

        width: 100%;
    }

    .wave-btn-primary,
    .wave-btn-secondary {
        min-height: 45px;

        padding: 0 16px;

        font-size: 12px;
    }


    /* Arrows */

    .wave-hero-arrow {
        width: 36px;
        height: 36px;

        top: 140px;

        font-size: 12px;
    }

    .wave-hero-prev {
        left: 12px;
    }

    .wave-hero-next {
        right: 12px;
    }


    /* Dots */

    .wave-hero-dots {
        bottom: 25px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .wave-hero-image {
        height: 230px;
        min-height: 230px;
    }

    .wave-hero-content {
        padding: 28px 18px 60px;
    }

    .wave-hero-content h1 {
        font-size: 27px;
    }

    .wave-hero-content p {
        font-size: 14px;
    }

    .wave-hero-buttons {
        flex-direction: column;
    }

    .wave-btn-primary,
    .wave-btn-secondary {
        width: 100%;
        max-width: 260px;
    }

}




/* =========================================
   TRUST STRIP
========================================= */

.wave-trust-section {
    width: 100%;
    background: #079db5;
    position: relative;
    z-index: 2;
}

.wave-trust-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;
    padding: 0 30px;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
}


/* =========================================
   TRUST ITEM
========================================= */

.wave-trust-item {
    min-height: 100px;

    padding: 20px 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    position: relative;
}


/* Vertical Separator */

.wave-trust-item:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 25px;

    width: 1px;
    height: 50px;

    background: rgba(255, 255, 255, 0.35);
}


/* =========================================
   ICON
========================================= */

.wave-trust-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 29px;
}


/* =========================================
   CONTENT
========================================= */

.wave-trust-content {
    display: flex;
    flex-direction: column;

    color: #ffffff;

    font-family: "Poppins", sans-serif;
}

.wave-trust-content strong {
    margin-bottom: 3px;

    font-size: 21px;
    line-height: 1.2;

    font-weight: 700;
}

.wave-trust-content span {
    font-size: 11px;
    line-height: 1.5;

    font-weight: 400;
}


/* =========================================
   HOVER EFFECT
========================================= */

.wave-trust-item {
    transition: all 0.3s ease;
}

.wave-trust-item:hover {
    background: rgba(0, 0, 0, 0.05);
}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1100px) {

    .wave-trust-container {
        padding: 0 15px;
    }

    .wave-trust-item {
        padding: 18px 12px;
        gap: 10px;
    }

    .wave-trust-icon {
        width: 40px;
        height: 40px;

        flex: 0 0 40px;

        font-size: 24px;
    }

    .wave-trust-content strong {
        font-size: 17px;
    }

    .wave-trust-content span {
        font-size: 9px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .wave-trust-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .wave-trust-item {
        min-height: 90px;
    }


    /* Remove separators */

    .wave-trust-item:nth-child(3)::after {
        display: none;
    }

    .wave-trust-item:nth-child(4)::after,
    .wave-trust-item:nth-child(5)::after {
        display: none;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .wave-trust-container {
        grid-template-columns: repeat(2, 1fr);

        padding: 5px 10px;
    }

    .wave-trust-item {
        min-height: 85px;

        padding: 14px 10px;

        justify-content: flex-start;

        gap: 9px;
    }


    /* Separators */

    .wave-trust-item::after {
        display: none !important;
    }


    .wave-trust-icon {
        width: 35px;
        height: 35px;

        flex: 0 0 35px;

        font-size: 21px;
    }


    .wave-trust-content strong {
        font-size: 15px;
    }

    .wave-trust-content span {
        font-size: 9px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .wave-trust-container {
        grid-template-columns: 1fr 1fr;
    }

    .wave-trust-item {
        min-height: 78px;

        padding: 12px 7px;

        gap: 7px;
    }

    .wave-trust-icon {
        width: 30px;
        height: 30px;

        flex: 0 0 30px;

        font-size: 18px;
    }

    .wave-trust-content strong {
        font-size: 16px;
    }

    .wave-trust-content span {
        font-size: 14px;
        line-height: 1.4;
    }

}


/* =========================================
   OUR SERVICES SECTION
========================================= */

.wave-services-section {
    width: 100%;
    padding: 75px 0 80px;

    background: #ffffff;

    overflow: hidden;
}


/* Container */

.wave-services-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;
    padding: 0 30px;
}


/* =========================================
   SECTION HEADING
========================================= */

.wave-section-heading {
    max-width: 750px;

    margin: 0 auto 40px;

    text-align: center;
}

.wave-section-subtitle {
    position: relative;

    display: inline-block;

    margin-bottom: 8px;

    color: #079db5;

    font-family: "Poppins", sans-serif;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}

.wave-section-heading h2 {
    position: relative;

    margin: 0 0 12px;

    color: #062b4c;

    font-family: "Poppins", sans-serif;

    font-size: 34px;

    line-height: 1.3;

    font-weight: 700;
}


/* Small Teal Line */

.wave-section-heading h2::after {
    content: "";

    display: block;

    width: 45px;
    height: 3px;

    margin: 13px auto 0;

    background: #079db5;

    border-radius: 10px;
}


.wave-section-heading p {
    max-width: 650px;

    margin: 15px auto 0;

    color: #667887;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   SLIDER
========================================= */

.wave-services-slider {
    width: 100%;

    position: relative;

    display: flex;
    align-items: center;
}


/* Track */

.wave-services-track {
    width: 100%;

    display: flex;

    gap: 20px;

    overflow: hidden;

    scroll-behavior: smooth;

    scrollbar-width: none;
}

.wave-services-track::-webkit-scrollbar {
    display: none;
}


/* =========================================
   SERVICE CARD
========================================= */

.wave-service-card {
    flex: 0 0 calc((100% - 100px) / 6);

    min-width: 0;

    background: #ffffff;

    border: 1px solid #e5edf1;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 5px 20px rgba(6, 43, 76, 0.07);

    transition: all 0.35s ease;
}

.wave-service-card:hover {
    transform: translateY(-7px);

    border-color: #079db5;

    box-shadow: 0 12px 30px rgba(6, 43, 76, 0.13);
}


/* =========================================
   SERVICE IMAGE
========================================= */

.wave-service-image {
    width: 100%;

    height: 170px;

    overflow: hidden;

    background: #edf7fa;
}

.wave-service-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.wave-service-card:hover .wave-service-image img {
    transform: scale(1.07);
}


/* =========================================
   SERVICE CONTENT
========================================= */

.wave-service-content {
    min-height: 165px;

    padding: 18px 16px 20px;

    display: flex;
    flex-direction: column;
}


.wave-service-content h3 {
    margin: 0 0 9px;

    color: #062b4c;

    font-family: "Poppins", sans-serif;

    font-size: 15px;

    line-height: 1.4;

    font-weight: 600;
}


.wave-service-content p {
    margin: 0 0 15px;

    color: #687b88;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.65;
}


/* View Details */

.wave-service-content a {
    margin-top: auto;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #079db5;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

.wave-service-content a i {
    font-size: 10px;

    transition: transform 0.3s ease;
}

.wave-service-content a:hover {
    color: #062b4c;
}

.wave-service-content a:hover i {
    transform: translateX(4px);
}


/* =========================================
   SLIDER ARROWS
========================================= */

.wave-service-arrow {
    position: absolute;

    top: 50%;

    width: 40px;
    height: 40px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: #079db5;

    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 10;

    box-shadow: 0 5px 15px rgba(6, 43, 76, 0.15);

    transform: translateY(-50%);

    transition: all 0.3s ease;
}

.wave-service-arrow:hover {
    background: #062b4c;

    transform: translateY(-50%) scale(1.08);
}


.wave-service-prev {
    left: -20px;
}

.wave-service-next {
    right: -20px;
}


/* =========================================
   DOTS
========================================= */

.wave-service-dots {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 28px;
}

.wave-service-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: #ccd6db;

    cursor: pointer;

    transition: all 0.3s ease;
}

.wave-service-dot.active {
    width: 24px;

    border-radius: 10px;

    background: #079db5;
}


/* =========================================
   VIEW ALL BUTTON
========================================= */

.wave-services-button {
    margin-top: 28px;

    text-align: center;
}

.wave-services-button a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 44px;

    padding: 0 22px;

    border-radius: 6px;

    background: #079db5;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

.wave-services-button a:hover {
    background: #062b4c;

    transform: translateY(-2px);
}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1200px) {

    .wave-service-card {
        flex: 0 0 calc((100% - 60px) / 4);
    }

    .wave-service-image {
        height: 160px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .wave-services-section {
        padding: 60px 0 65px;
    }

    .wave-services-container {
        padding: 0 45px;
    }

    .wave-section-heading {
        margin-bottom: 30px;
    }

    .wave-section-heading h2 {
        font-size: 30px;
    }

    .wave-service-card {
        flex: 0 0 calc((100% - 40px) / 3);
    }

    .wave-service-image {
        height: 155px;
    }

    .wave-service-content {
        min-height: 160px;
    }

    .wave-service-prev {
        left: -35px;
    }

    .wave-service-next {
        right: -35px;
    }

}


/* =========================================
   SMALL TABLET
========================================= */

@media (max-width: 767px) {

    .wave-services-section {
        padding: 50px 0 55px;
    }

    .wave-services-container {
        padding: 0 40px;
    }

    .wave-section-heading {
        margin-bottom: 25px;
    }

    .wave-section-heading h2 {
        font-size: 27px;
    }

    .wave-section-heading p {
        font-size: 12px;
    }


    /* 1 card visible */

    .wave-service-card {
        flex: 0 0 100%;
    }

    .wave-service-image {
        height: 210px;
    }

    .wave-service-content {
        min-height: 155px;

        padding: 18px;
    }

    .wave-service-content h3 {
        font-size: 16px;
    }

    .wave-service-content p {
        font-size: 14px;
    }


    /* Arrows */

    .wave-service-arrow {
        width: 36px;
        height: 36px;

        font-size: 12px;
    }

    .wave-service-prev {
        left: -18px;
    }

    .wave-service-next {
        right: -18px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .wave-services-container {
        padding: 0 30px;
    }

    .wave-section-heading h2 {
        font-size: 24px;
    }

    .wave-section-heading p {
        font-size: 14px;
    }

    .wave-service-image {
        height: 200px;
    }

    .wave-service-content {
        min-height: 150px;
    }

    .wave-service-prev {
        left: -15px;
    }

    .wave-service-next {
        right: -15px;
    }

}


/* =========================================
   ABOUT US SECTION
========================================= */

.wave-about-section {
    width: 100%;

    padding: 85px 0;

    background: #f4fafc;

    overflow: hidden;
}


/* =========================================
   CONTAINER
========================================= */

.wave-about-container {
    width: 100%;
    max-width: 1280px;

    margin: 0 auto;

    padding: 0 30px;

    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    align-items: center;

    gap: 80px;
}


/* =========================================
   IMAGE SIDE
========================================= */

.wave-about-image-wrapper {
    position: relative;

    padding: 0 20px 20px 0;
}


.wave-about-image {
    width: 100%;

    height: 500px;

    overflow: hidden;

    border-radius: 18px;

    position: relative;

    box-shadow:
        0 15px 40px rgba(6, 43, 76, 0.12);
}


.wave-about-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(6, 43, 76, 0) 60%,
            rgba(6, 43, 76, 0.12)
        );
}


.wave-about-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.wave-about-image:hover img {
    transform: scale(1.04);
}


/* =========================================
   EXPERIENCE BADGE
========================================= */

.wave-about-experience {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 170px;
    min-height: 120px;

    padding: 18px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background: #079db5;

    color: #ffffff;

    border-radius: 12px;

    box-shadow:
        0 10px 30px rgba(6, 43, 76, 0.18);

    z-index: 3;
}


.wave-about-experience strong {
    font-family: "Poppins", sans-serif;

    font-size: 38px;

    line-height: 1;

    font-weight: 700;
}


.wave-about-experience span {
    margin-top: 8px;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    line-height: 1.5;

    font-weight: 500;
}


/* =========================================
   CONTENT
========================================= */

.wave-about-content {
    width: 100%;
}


.wave-about-content .wave-section-subtitle {
    display: inline-block;

    margin-bottom: 10px;

    color: #079db5;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;
}


.wave-about-content h2 {
    max-width: 650px;

    margin: 0 0 20px;

    color: #062b4c;

    font-family: "Poppins", sans-serif;

    font-size: 40px;

    line-height: 1.25;

    font-weight: 700;
}


.wave-about-content h2 span {
    display: block;

    color: #079db5;
}


.wave-about-content > p {
    max-width: 650px;

    margin: 0 0 14px;

    color: #647784;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   FEATURES
========================================= */

.wave-about-features {
    margin-top: 25px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    column-gap: 30px;

    row-gap: 14px;
}


.wave-about-feature {
    display: flex;

    align-items: flex-start;

    gap: 10px;
}


.wave-about-feature i {
    flex: 0 0 auto;

    margin-top: 2px;

    color: #079db5;

    font-size: 16px;
}


.wave-about-feature span {
    color: #314d5d;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================
   BUTTON
========================================= */

.wave-about-button {
    margin-top: 30px;
}


.wave-about-button a {
    min-height: 46px;

    padding: 0 22px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 6px;

    background: #079db5;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}


.wave-about-button a:hover {
    background: #062b4c;

    transform: translateY(-2px);
}


.wave-about-button a i {
    font-size: 10px;

    transition: transform 0.3s ease;
}


.wave-about-button a:hover i {
    transform: translateX(4px);
}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1100px) {

    .wave-about-section {
        padding: 70px 0;
    }

    .wave-about-container {
        gap: 50px;
    }

    .wave-about-image {
        height: 430px;
    }

    .wave-about-content h2 {
        font-size: 34px;
    }

    .wave-about-content > p {
        font-size: 13px;
    }

    .wave-about-feature span {
        font-size: 11px;
    }

    .wave-about-experience {
        width: 150px;
        min-height: 105px;
    }

    .wave-about-experience strong {
        font-size: 32px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .wave-about-container {
        grid-template-columns: 1fr 1fr;

        gap: 35px;

        padding: 0 25px;
    }

    .wave-about-image {
        height: 390px;
    }

    .wave-about-image-wrapper {
        padding-right: 15px;
        padding-bottom: 15px;
    }

    .wave-about-content h2 {
        font-size: 29px;
    }

    .wave-about-content > p {
        font-size: 12px;
        line-height: 1.7;
    }

    .wave-about-features {
        grid-template-columns: 1fr;

        row-gap: 10px;
    }

    .wave-about-experience {
        width: 135px;
        min-height: 95px;
    }

    .wave-about-experience strong {
        font-size: 28px;
    }

    .wave-about-experience span {
        font-size: 10px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .wave-about-section {
        padding: 55px 0 60px;
    }

    .wave-about-container {
        display: flex;

        flex-direction: column;

        gap: 45px;

        padding: 0 20px;
    }


    /* Image */

    .wave-about-image-wrapper {
        width: 100%;

        max-width: 600px;

        padding-right: 12px;
        padding-bottom: 12px;
    }

    .wave-about-image {
        height: 350px;

        border-radius: 14px;
    }


    /* Badge */

    .wave-about-experience {
        width: 125px;
        min-height: 90px;

        border-radius: 10px;
    }

    .wave-about-experience strong {
        font-size: 27px;
    }


    /* Content */

    .wave-about-content {
        text-align: left;
    }

    .wave-about-content .wave-section-subtitle {
        font-size: 11px;
    }

    .wave-about-content h2 {
        font-size: 29px;

        line-height: 1.25;
    }

    .wave-about-content > p {
        font-size: 12px;

        line-height: 1.75;
    }


    /* Features */

    .wave-about-features {
        margin-top: 20px;

        grid-template-columns: 1fr;

        gap: 11px;
    }

    .wave-about-feature span {
        font-size: 11px;
    }


    /* Button */

    .wave-about-button {
        margin-top: 25px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .wave-about-section {
        padding: 45px 0 50px;
    }

    .wave-about-container {
        padding: 0 16px;

        gap: 35px;
    }

    .wave-about-image {
        height: 290px;
    }

    .wave-about-experience {
        width: 110px;
        min-height: 80px;

        padding: 12px;
    }

    .wave-about-experience strong {
        font-size: 24px;
    }

    .wave-about-experience span {
        font-size: 9px;
    }

    .wave-about-content h2 {
        font-size: 25px;
    }

    .wave-about-content > p {
        font-size: 14px;
    }

    .wave-about-feature span {
        font-size: 14px;
    }

    .wave-about-button a {
        width: 100%;
    }

    .wave-about-button a {
    
    font-size: 14px;
    
}

}


/* =========================================
   HEALTH PACKAGES SECTION
========================================= */

.wave-packages-section {
    width: 100%;

    padding: 85px 0 90px;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================
   CONTAINER
========================================= */

.wave-packages-container {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    padding: 0 30px;
}


/* =========================================
   HEADING
========================================= */

.wave-packages-heading {
    max-width: 700px;

    margin: 0 auto 45px;

    text-align: center;
}

.wave-packages-heading .wave-section-subtitle {
    display: inline-block;

    margin-bottom: 9px;

    color: #079db5;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;
}

.wave-packages-heading h2 {
    margin: 0 0 15px;

    color: #062b4c;

    font-family: "Poppins", sans-serif;

    font-size: 35px;

    line-height: 1.3;

    font-weight: 700;
}

.wave-packages-heading h2::after {
    content: "";

    display: block;

    width: 45px;
    height: 3px;

    margin: 13px auto 0;

    border-radius: 10px;

    background: #079db5;
}

.wave-packages-heading p {
    max-width: 620px;

    margin: 15px auto 0;

    color: #687b88;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   PACKAGE GRID
========================================= */

.wave-packages-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    align-items: stretch;

    gap: 25px;
}


/* =========================================
   PACKAGE CARD
========================================= */

.wave-package-card {
    position: relative;

    display: flex;

    flex-direction: column;

    padding: 32px 28px 28px;

    background: #ffffff;

    border: 1px solid #e3edf1;

    border-radius: 14px;

    box-shadow:
        0 8px 30px rgba(6, 43, 76, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.wave-package-card:hover {
    transform: translateY(-7px);

    border-color: #079db5;

    box-shadow:
        0 15px 35px rgba(6, 43, 76, 0.12);
}


/* =========================================
   PACKAGE TOP
========================================= */

.wave-package-top {
    text-align: center;
}


/* Icon */

.wave-package-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e8f7fa;

    color: #079db5;

    font-size: 24px;

    transition: all 0.3s ease;
}

.wave-package-card:hover .wave-package-icon {
    background: #079db5;

    color: #ffffff;
}


.wave-package-top h3 {
    margin: 0 0 10px;

    color: #062b4c;

    font-family: "Poppins", sans-serif;

    font-size: 20px;

    line-height: 1.4;

    font-weight: 600;
}


.wave-package-top p {
    min-height: 43px;

    margin: 0;

    color: #748692;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    line-height: 1.65;
}


/* =========================================
   PRICE
========================================= */

.wave-package-price {
    margin-top: 25px;

    text-align: center;
}

.wave-package-price span {
    display: block;

    margin-bottom: 4px;

    color: #8a9aa4;

    font-family: "Poppins", sans-serif;

    font-size: 10px;
}

.wave-package-price strong {
    color: #079db5;

    font-family: "Poppins", sans-serif;

    font-size: 30px;

    line-height: 1.2;

    font-weight: 700;
}


/* =========================================
   DIVIDER
========================================= */

.wave-package-divider {
    width: 100%;

    height: 1px;

    margin: 22px 0;

    background: #e5edf0;
}


/* =========================================
   FEATURES
========================================= */

.wave-package-features {
    display: flex;

    flex-direction: column;

    gap: 13px;

    margin: 0;

    padding: 0;

    list-style: none;
}

.wave-package-features li {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    color: #455e6d;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.5;
}

.wave-package-features li i {
    flex: 0 0 auto;

    margin-top: 2px;

    color: #079db5;

    font-size: 13px;
}


/* =========================================
   PACKAGE BUTTON
========================================= */

.wave-package-button {
    width: 100%;

    min-height: 45px;

    margin-top: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    border: 1px solid #079db5;

    border-radius: 6px;

    background: #ffffff;

    color: #079db5;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

.wave-package-button:hover {
    background: #079db5;

    color: #ffffff;
}

.wave-package-button i {
    font-size: 10px;

    transition: transform 0.3s ease;
}

.wave-package-button:hover i {
    transform: translateX(4px);
}


/* =========================================
   FEATURED PACKAGE
========================================= */

.wave-package-featured {
    border: 2px solid #079db5;

    transform: translateY(-10px);

    box-shadow:
        0 15px 40px rgba(7, 157, 181, 0.16);
}

.wave-package-featured:hover {
    transform: translateY(-16px);
}


/* Popular Badge */

.wave-package-popular {
    position: absolute;

    top: 0;
    left: 50%;

    transform: translate(-50%, -50%);

    padding: 7px 18px;

    border-radius: 30px;

    background: #079db5;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;

    white-space: nowrap;
}


/* Featured Button */

.wave-package-featured .wave-package-button {
    background: #079db5;

    color: #ffffff;
}

.wave-package-featured .wave-package-button:hover {
    background: #062b4c;

    border-color: #062b4c;
}


/* =========================================
   BOTTOM NOTE
========================================= */

.wave-packages-note {
    max-width: 750px;

    margin: 30px auto 0;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    text-align: center;

    color: #7b8c96;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    line-height: 1.5;
}

.wave-packages-note i {
    flex: 0 0 auto;

    color: #079db5;

    font-size: 13px;
}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1100px) {

    .wave-packages-section {
        padding: 70px 0 75px;
    }

    .wave-packages-container {
        padding: 0 25px;
    }

    .wave-packages-grid {
        gap: 18px;
    }

    .wave-package-card {
        padding: 28px 20px 24px;
    }

    .wave-package-top h3 {
        font-size: 18px;
    }

    .wave-package-price strong {
        font-size: 27px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .wave-packages-heading {
        margin-bottom: 35px;
    }

    .wave-packages-heading h2 {
        font-size: 30px;
    }

    .wave-packages-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    /* Third card full width */

    .wave-package-card:nth-child(3) {
        grid-column: 1 / -1;

        max-width: 450px;

        width: 100%;

        margin: 15px auto 0;
    }


    .wave-package-featured {
        transform: translateY(0);
    }

    .wave-package-featured:hover {
        transform: translateY(-7px);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .wave-packages-section {
        padding: 55px 0 60px;
    }

    .wave-packages-container {
        padding: 0 20px;
    }

    .wave-packages-heading {
        margin-bottom: 30px;
    }

    .wave-packages-heading h2 {
        font-size: 27px;
    }

    .wave-packages-heading p {
        font-size: 14px;
    }


    /* One column */

    .wave-packages-grid {
        display: flex;

        flex-direction: column;

        gap: 25px;
    }


    .wave-package-card {
        width: 100%;

        padding: 30px 22px 25px;
    }


    .wave-package-card:nth-child(3) {
        max-width: none;

        margin: 0;
    }


    .wave-package-featured {
        transform: none;
    }

    .wave-package-featured:hover {
        transform: translateY(-5px);
    }


    .wave-package-top h3 {
        font-size: 19px;
    }

    .wave-package-top p {
        min-height: auto;

        font-size: 11px;
    }

    .wave-package-price strong {
        font-size: 29px;
    }

    .wave-package-features li {
        font-size: 11px;
    }

    .wave-packages-note {
        align-items: flex-start;

        font-size: 9px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .wave-packages-section {
        padding: 45px 0 50px;
    }

    .wave-packages-container {
        padding: 0 15px;
    }

    .wave-packages-heading h2 {
        font-size: 24px;
    }

    .wave-package-card {
        padding: 27px 18px 22px;
    }

    .wave-package-icon {
        width: 52px;
        height: 52px;

        font-size: 21px;
    }

    .wave-package-top h3 {
        font-size: 17px;
    }

    .wave-package-price strong {
        font-size: 27px;
    }

    .wave-package-features li {
        font-size: 10px;
    }

    .wave-package-button {
        min-height: 43px;

        font-size: 10px;
    }

}



/* =========================================
   HOME COLLECTION SECTION
========================================= */

.wave-home-collection-section {
    width: 100%;

    padding: 75px 0;

    background:
        linear-gradient(
            135deg,
            #062b4c 0%,
            #07536c 50%,
            #079db5 100%
        );

    overflow: hidden;
}


/* =========================================
   CONTAINER
========================================= */

.wave-home-collection-container {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    padding: 0 30px;

    display: grid;

    grid-template-columns: 1fr 0.9fr;

    align-items: center;

    gap: 70px;
}


/* =========================================
   CONTENT
========================================= */

.wave-home-collection-content {
    color: #ffffff;
}


/* Label */

.wave-home-collection-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #72e1ed;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* Heading */

.wave-home-collection-content h2 {
    max-width: 650px;

    margin: 0 0 20px;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 42px;

    line-height: 1.2;

    font-weight: 700;
}

.wave-home-collection-content h2 span {
    display: block;

    color: #72e1ed;
}


/* Description */

.wave-home-collection-content > p {
    max-width: 610px;

    margin: 0;

    color: rgba(255, 255, 255, 0.82);

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   FEATURES
========================================= */

.wave-home-collection-features {
    margin-top: 28px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px 25px;
}


.wave-home-collection-feature {
    display: flex;

    align-items: center;

    gap: 10px;
}


.wave-home-collection-feature i {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);

    color: #72e1ed;

    font-size: 18px;
}


.wave-home-collection-feature span {
    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 500;
}


/* =========================================
   BUTTON
========================================= */

.wave-home-collection-button {
    margin-top: 32px;
}


.wave-home-collection-button a {
    min-height: 48px;

    padding: 0 23px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 6px;

    background: #ffffff;

    color: #062b4c;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}


.wave-home-collection-button a:hover {
    background: #72e1ed;

    color: #062b4c;

    transform: translateY(-2px);
}


.wave-home-collection-button a i {
    font-size: 10px;

    transition: transform 0.3s ease;
}


.wave-home-collection-button a:hover i {
    transform: translateX(4px);
}


/* =========================================
   IMAGE
========================================= */

.wave-home-collection-image {
    position: relative;

    width: 100%;

    height: 400px;

    overflow: visible;
}


.wave-home-collection-image::before {
    content: "";

    position: absolute;

    top: -25px;
    right: -25px;

    width: 100%;
    height: 100%;

    border: 2px solid rgba(255, 255, 255, 0.18);

    border-radius: 20px;

    z-index: 0;
}


.wave-home-collection-image img {
    position: relative;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 18px;

    z-index: 1;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.20);
}


/* =========================================
   FLOATING BADGE
========================================= */

.wave-home-collection-badge {
    position: absolute;

    left: -25px;
    bottom: 25px;

    min-width: 220px;

    padding: 15px 18px;

    display: flex;

    align-items: center;

    gap: 12px;

    background: #ffffff;

    border-radius: 10px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.18);

    z-index: 3;
}


.wave-home-collection-badge-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e7f7fa;

    color: #079db5;

    font-size: 18px;
}


.wave-home-collection-badge strong {
    display: block;

    margin-bottom: 3px;

    color: #062b4c;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 700;
}


.wave-home-collection-badge span {
    display: block;

    color: #758792;

    font-family: "Poppins", sans-serif;

    font-size: 9px;
}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1100px) {

    .wave-home-collection-section {
        padding: 65px 0;
    }

    .wave-home-collection-container {
        gap: 45px;

        padding: 0 25px;
    }

    .wave-home-collection-content h2 {
        font-size: 35px;
    }

    .wave-home-collection-content > p {
        font-size: 12px;
    }

    .wave-home-collection-image {
        height: 350px;
    }

    .wave-home-collection-badge {
        left: -15px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .wave-home-collection-container {
        grid-template-columns: 1fr 1fr;

        gap: 30px;
    }

    .wave-home-collection-content h2 {
        font-size: 30px;
    }

    .wave-home-collection-features {
        gap: 12px 15px;
    }

    .wave-home-collection-feature span {
        font-size: 10px;
    }

    .wave-home-collection-image {
        height: 320px;
    }

    .wave-home-collection-image::before {
        top: -15px;
        right: -15px;
    }

    .wave-home-collection-badge {
        min-width: 190px;

        padding: 12px 14px;

        left: -10px;
        bottom: 15px;
    }

    .wave-home-collection-badge-icon {
        width: 36px;
        height: 36px;

        flex-basis: 36px;

        font-size: 15px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .wave-home-collection-section {
        padding: 55px 0 60px;
    }

    .wave-home-collection-container {
        display: flex;

        flex-direction: column;

        gap: 45px;

        padding: 0 20px;
    }


    /* Content */

    .wave-home-collection-content {
        text-align: center;
    }

    .wave-home-collection-label {
        font-size: 10px;
    }

    .wave-home-collection-content h2 {
        font-size: 28px;

        line-height: 1.25;
    }

    .wave-home-collection-content > p {
        font-size: 11px;

        line-height: 1.75;
    }


    /* Features */

    .wave-home-collection-features {
        grid-template-columns: 1fr 1fr;

        gap: 12px;

        text-align: left;
    }

    .wave-home-collection-feature {
        gap: 7px;
    }

    .wave-home-collection-feature i {
        width: 30px;
        height: 30px;

        flex-basis: 30px;

        font-size: 12px;
    }

    .wave-home-collection-feature span {
        font-size: 9px;
    }


    /* Button */

    .wave-home-collection-button {
        margin-top: 27px;
    }

    .wave-home-collection-button a {
        min-height: 45px;

        padding: 0 18px;

        font-size: 11px;
    }


    /* Image */

    .wave-home-collection-image {
        width: 100%;

        height: 300px;
    }

    .wave-home-collection-image::before {
        display: none;
    }


    /* Badge */

    .wave-home-collection-badge {
        left: 15px;
        bottom: -20px;

        min-width: auto;

        width: calc(100% - 30px);

        padding: 12px 15px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .wave-home-collection-section {
        padding: 45px 0 55px;
    }

    .wave-home-collection-container {
        padding: 0 15px;

        gap: 40px;
    }

    .wave-home-collection-content h2 {
        font-size: 25px;
    }

    .wave-home-collection-content > p {
        font-size: 10px;
    }

    .wave-home-collection-features {
        gap: 10px 5px;
    }

    .wave-home-collection-feature span {
        font-size: 8px;
    }

    .wave-home-collection-image {
        height: 250px;
    }

    .wave-home-collection-badge {
        left: 10px;

        width: calc(100% - 20px);
    }

}


/* =========================================
   WHY CHOOSE WAVE
========================================= */

.wave-why-section {
    width: 100%;
    padding: 45px 0 50px;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================
   CONTAINER
========================================= */

.wave-why-container {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;
    padding: 0 25px;
}


/* =========================================
   HEADING
========================================= */

.wave-why-heading {
    text-align: center;

    margin-bottom: 30px;
}

.wave-why-heading h2 {
    margin: 0;

    color: #062b4c;

    font-family: "Poppins", sans-serif;

    font-size: 27px;

    line-height: 1.3;

    font-weight: 700;
}


/* Heading line */

.wave-heading-line {
    position: relative;

    width: 80px;
    height: 8px;

    margin: 7px auto 0;
}

.wave-heading-line::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 80px;
    height: 1px;

    background: #d7e6ea;

    transform: translateY(-50%);
}

.wave-heading-line span {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #079db5;

    transform: translate(-50%, -50%);
}


/* =========================================
   GRID
========================================= */

.wave-why-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 12px;
}


/* =========================================
   ITEM
========================================= */

.wave-why-item {
    min-height: 150px;

    padding: 18px 10px 15px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e7eef1;

    border-radius: 8px;

    box-shadow:
        0 3px 15px rgba(6, 43, 76, 0.04);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.wave-why-item:hover {
    transform: translateY(-5px);

    border-color: #b9e1e8;

    box-shadow:
        0 10px 25px rgba(6, 43, 76, 0.09);
}


/* =========================================
   ICON
========================================= */

.wave-why-icon {
    width: 48px;
    height: 48px;

    margin-bottom: 10px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #079db5;

    font-size: 32px;

    background: transparent;
}


/* =========================================
   TITLE
========================================= */

.wave-why-item h3 {
    margin: 0 0 7px;

    color: #062b4c;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    line-height: 1.35;

    font-weight: 600;
}


/* =========================================
   DESCRIPTION
========================================= */

.wave-why-item p {
    max-width: 145px;

    margin: 0;

    color: #6d7e88;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    line-height: 1.55;
}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1100px) {

    .wave-why-container {
        padding: 0 20px;
    }

    .wave-why-grid {
        grid-template-columns: repeat(3, 1fr);

        gap: 15px;
    }

    .wave-why-item {
        min-height: 145px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .wave-why-section {
        padding: 40px 0 45px;
    }

    .wave-why-heading {
        margin-bottom: 25px;
    }

    .wave-why-heading h2 {
        font-size: 25px;
    }

    .wave-why-grid {
        grid-template-columns: repeat(3, 1fr);

        gap: 12px;
    }

    .wave-why-item {
        min-height: 140px;

        padding: 16px 8px;
    }

    .wave-why-icon {
        width: 44px;
        height: 44px;

        font-size: 22px;
    }

    .wave-why-item h3 {
        font-size: 11px;
    }

    .wave-why-item p {
        font-size: 8px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .wave-why-section {
        padding: 40px 0 45px;
    }

    .wave-why-container {
        padding: 0 15px;
    }

    .wave-why-heading {
        margin-bottom: 25px;
    }

    .wave-why-heading h2 {
        font-size: 23px;
    }

    .wave-why-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }

    .wave-why-item {
        min-height: 145px;

        padding: 17px 10px;
    }

    .wave-why-icon {
        width: 45px;
        height: 45px;

        margin-bottom: 8px;

        font-size: 22px;
    }

    .wave-why-item h3 {
        font-size: 11px;
    }

    .wave-why-item p {
        max-width: 130px;

        font-size: 8px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .wave-why-section {
        padding: 35px 0 40px;
    }

    .wave-why-container {
        padding: 0 12px;
    }

    .wave-why-heading h2 {
        font-size: 21px;
    }

    .wave-why-grid {
        gap: 9px;
    }

    .wave-why-item {
        min-height: 135px;

        padding: 14px 7px;
    }

    .wave-why-icon {
        width: 40px;
        height: 40px;

        font-size: 20px;
    }

    .wave-why-item h3 {
        font-size: 10px;
    }

    .wave-why-item p {
        font-size: 7.5px;
    }

}

/* =========================================
   TESTIMONIAL SECTION
========================================= */

.wave-testimonial-section {
    width: 100%;

    padding: 50px 0 55px;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================
   CONTAINER
========================================= */

.wave-testimonial-container {
    width: 100%;

    max-width: 1250px;

    margin: 0 auto;

    padding: 0 30px;
}


/* =========================================
   HEADING
========================================= */

.wave-testimonial-heading {
    text-align: center;

    margin-bottom: 30px;
}

.wave-testimonial-heading h2 {
    margin: 0;

    color: #062b4c;

    font-family: "Poppins", sans-serif;

    font-size: 27px;

    line-height: 1.3;

    font-weight: 700;
}


/* Heading Line */

.wave-testimonial-heading-line {
    position: relative;

    width: 80px;

    height: 8px;

    margin: 7px auto 0;
}

.wave-testimonial-heading-line::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 80px;
    height: 1px;

    background: #d7e6ea;

    transform: translateY(-50%);
}

.wave-testimonial-heading-line span {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #079db5;

    transform: translate(-50%, -50%);
}


/* =========================================
   SLIDER
========================================= */

.wave-testimonial-slider {
    position: relative;

    width: 100%;

    display: flex;

    align-items: center;
}


/* Track */

.wave-testimonial-track {
    width: 100%;

    display: flex;

    gap: 18px;

    overflow: hidden;

    scroll-behavior: smooth;

    scrollbar-width: none;
}

.wave-testimonial-track::-webkit-scrollbar {
    display: none;
}


/* =========================================
   TESTIMONIAL CARD
========================================= */

.wave-testimonial-card {
    flex: 0 0 calc((100% - 36px) / 3);

    min-height: 190px;

    padding: 25px 25px 22px;

    position: relative;

    background: #ffffff;

    border: 1px solid #e4edf1;

    border-radius: 9px;

    box-shadow:
        0 4px 18px rgba(6, 43, 76, 0.04);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.wave-testimonial-card:hover {
    transform: translateY(-5px);

    border-color: #b9e1e8;

    box-shadow:
        0 10px 28px rgba(6, 43, 76, 0.09);
}


/* =========================================
   QUOTE
========================================= */

.wave-testimonial-quote {
    position: absolute;

    top: 18px;
    left: 20px;

    color: #079db5;

    font-size: 23px;

    opacity: 0.9;
}


/* =========================================
   STARS
========================================= */

.wave-testimonial-stars {
    margin-left: 35px;

    margin-bottom: 13px;

    display: flex;

    gap: 3px;
}

.wave-testimonial-stars i {
    color: #f6b800;

    font-size: 10px;
}


/* =========================================
   TESTIMONIAL TEXT
========================================= */

.wave-testimonial-card p {
    margin: 0 0 18px;

    color: #536b78;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================
   PATIENT
========================================= */

.wave-testimonial-patient {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.wave-testimonial-patient strong {
    color: #062b4c;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 700;
}

.wave-testimonial-patient span {
    color: #8a9aa3;

    font-family: "Poppins", sans-serif;

    font-size: 11px;
}


/* =========================================
   ARROWS
========================================= */

.wave-testimonial-arrow {
    position: absolute;

    top: 50%;

    width: 34px;
    height: 34px;

    padding: 0;

    border: 1px solid #dce8ec;

    border-radius: 50%;

    background: #ffffff;

    color: #079db5;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 5;

    transform: translateY(-50%);

    box-shadow:
        0 3px 12px rgba(6, 43, 76, 0.08);

    transition: all 0.3s ease;
}

.wave-testimonial-arrow:hover {
    background: #079db5;

    color: #ffffff;

    border-color: #079db5;
}


.wave-testimonial-prev {
    left: -17px;
}

.wave-testimonial-next {
    right: -17px;
}


/* =========================================
   DOTS
========================================= */

.wave-testimonial-dots {
    margin-top: 25px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 7px;
}

.wave-testimonial-dot {
    width: 7px;
    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #d1dadd;

    cursor: pointer;

    transition: all 0.3s ease;
}

.wave-testimonial-dot.active {
    width: 22px;

    border-radius: 10px;

    background: #079db5;
}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1100px) {

    .wave-testimonial-container {
        padding: 0 25px;
    }

    .wave-testimonial-card {
        padding: 22px 20px;
    }

    .wave-testimonial-card p {
        font-size: 9px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .wave-testimonial-section {
        padding: 45px 0 50px;
    }

    .wave-testimonial-heading h2 {
        font-size: 25px;
    }

    .wave-testimonial-card {
        flex: 0 0 calc((100% - 18px) / 2);

        min-height: 180px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .wave-testimonial-section {
        padding: 40px 0 45px;
    }

    .wave-testimonial-container {
        padding: 0 35px;
    }

    .wave-testimonial-heading {
        margin-bottom: 25px;
    }

    .wave-testimonial-heading h2 {
        font-size: 23px;
    }


    /* One card */

    .wave-testimonial-card {
        flex: 0 0 100%;

        min-height: 180px;

        padding: 23px 20px;
    }

    .wave-testimonial-card p {
        font-size: 10px;

        line-height: 1.7;
    }


    /* Arrows */

    .wave-testimonial-arrow {
        width: 32px;
        height: 32px;

        font-size: 10px;
    }

    .wave-testimonial-prev {
        left: -25px;
    }

    .wave-testimonial-next {
        right: -25px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .wave-testimonial-section {
        padding: 35px 0 40px;
    }

    .wave-testimonial-container {
        padding: 0 30px;
    }

    .wave-testimonial-heading h2 {
        font-size: 21px;
    }

    .wave-testimonial-card {
        padding: 20px 17px;
    }

    .wave-testimonial-card p {
        font-size: 9px;
    }

    .wave-testimonial-prev {
        left: -20px;
    }

    .wave-testimonial-next {
        right: -20px;
    }

}


/* =========================================
   APPOINTMENT CTA SECTION
========================================= */

.wave-appointment-cta {
    width: 100%;

    background:
        linear-gradient(
            90deg,
            #079db5 0%,
            #078da9 55%,
            #067f9e 100%
        );

    padding: 25px 0;

    overflow: hidden;
}


/* =========================================
   CONTAINER
========================================= */

.wave-appointment-container {
    width: 100%;

    max-width: 1250px;

    margin: 0 auto;

    padding: 0 30px;

    display: flex;

    align-items: center;

    gap: 22px;
}


/* =========================================
   ICON
========================================= */

.wave-appointment-icon {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 2px solid rgba(255, 255, 255, 0.75);

    border-radius: 10px;

    color: #ffffff;

    font-size: 27px;
}


/* =========================================
   CONTENT
========================================= */

.wave-appointment-content {
    flex: 1;

    min-width: 0;
}


.wave-appointment-content h2 {
    margin: 0 0 5px;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 21px;

    line-height: 1.3;

    font-weight: 700;
}


.wave-appointment-content p {
    max-width: 550px;

    margin: 0;

    color: rgba(255, 255, 255, 0.9);

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================
   ACTIONS
========================================= */

.wave-appointment-actions {
    display: flex;

    align-items: center;

    gap: 12px;

    flex: 0 0 auto;
}


/* =========================================
   CALL BUTTON
========================================= */

.wave-appointment-call,
.wave-appointment-book {
    min-height: 45px;

    padding: 0 18px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 5px;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    transition: all 0.3s ease;
}


/* Call */

.wave-appointment-call {
    background: #ffffff;

    color: #067d99;

    border: 1px solid #ffffff;
}


.wave-appointment-call:hover {
    background: #e8f8fa;

    color: #062b4c;

    transform: translateY(-2px);
}


/* Book */

.wave-appointment-book {
    background: #062b4c;

    color: #ffffff;

    border: 1px solid #062b4c;
}


.wave-appointment-book:hover {
    background: #ffffff;

    color: #062b4c;

    border-color: #ffffff;

    transform: translateY(-2px);
}


/* Icons */

.wave-appointment-actions i {
    font-size: 12px;
}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1100px) {

    .wave-appointment-container {
        padding: 0 25px;

        gap: 15px;
    }

    .wave-appointment-content h2 {
        font-size: 18px;
    }

    .wave-appointment-content p {
        font-size: 9px;
    }

    .wave-appointment-call,
    .wave-appointment-book {
        min-height: 42px;

        padding: 0 13px;

        font-size: 9px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .wave-appointment-cta {
        padding: 22px 0;
    }

    .wave-appointment-container {
        flex-wrap: wrap;
    }

    .wave-appointment-icon {
        width: 50px;
        height: 50px;

        flex-basis: 50px;

        font-size: 23px;
    }

    .wave-appointment-content {
        flex: 1;
    }

    .wave-appointment-actions {
        width: 100%;

        margin-left: 65px;

        justify-content: flex-start;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .wave-appointment-cta {
        padding: 35px 0;
    }

    .wave-appointment-container {
        padding: 0 20px;

        display: flex;

        flex-direction: column;

        align-items: center;

        text-align: center;

        gap: 15px;
    }


    /* Icon */

    .wave-appointment-icon {
        width: 52px;
        height: 52px;

        flex-basis: 52px;

        font-size: 23px;
    }


    /* Content */

    .wave-appointment-content {
        width: 100%;
    }

    .wave-appointment-content h2 {
        font-size: 20px;
    }

    .wave-appointment-content p {
        max-width: 450px;

        margin: 0 auto;

        font-size: 10px;

        line-height: 1.7;
    }


    /* Buttons */

    .wave-appointment-actions {
        width: 100%;

        margin: 5px 0 0;

        display: flex;

        flex-direction: column;

        gap: 10px;
    }

    .wave-appointment-call,
    .wave-appointment-book {
        width: 100%;

        min-height: 45px;

        font-size: 10px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .wave-appointment-cta {
        padding: 30px 0;
    }

    .wave-appointment-container {
        padding: 0 15px;
    }

    .wave-appointment-content h2 {
        font-size: 18px;
    }

    .wave-appointment-content p {
        font-size: 9px;
    }

    .wave-appointment-call,
    .wave-appointment-book {
        min-height: 43px;

        font-size: 9px;
    }

}


/* =========================================
   FOOTER
========================================= */

.wave-footer {
    width: 100%;

    background: #062b4c;

    color: #ffffff;
}


/* =========================================
   FOOTER CONTAINER
========================================= */

.wave-footer-container {
    width: 100%;

    max-width: 1256px;

    margin: 0 auto;

    padding: 55px 30px 45px;

    display: grid;

    grid-template-columns:
        1.3fr
        0.8fr
        1fr
        1.4fr;

    gap: 50px;
}


/* =========================================
   FOOTER COLUMN
========================================= */

.wave-footer-column {
    min-width: 0;
}


/* =========================================
   LOGO
========================================= */

.wave-footer-logo {
    display: inline-block;

    margin-bottom: 0px;
}

.wave-footer-logo img {
    /* width: 145px; */
    width:96px;

    height: auto;

    display: block;
}


/* =========================================
   ABOUT
========================================= */

.wave-footer-about p {
    max-width: 260px;

    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   COLUMN HEADING
========================================= */

.wave-footer-column h3 {
    position: relative;

    margin: 0 0 20px;

    padding-bottom: 10px;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 600;
}

.wave-footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 30px;
    height: 2px;

    border-radius: 10px;

    background: #079db5;
}


/* =========================================
   FOOTER LINKS
========================================= */

.wave-footer-column ul {
    margin: 0;

    padding: 0;

    list-style: none;
}

.wave-footer-column ul li {
    margin-bottom: 10px;
}

.wave-footer-column ul li a {
    position: relative;

    color: rgba(255, 255, 255, 0.72);

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.wave-footer-column ul li a::before {
    content: "›";

    margin-right: 7px;

    color: #079db5;

    font-size: 16px;
}

.wave-footer-column ul li a:hover {
    color: #72e1ed;

    padding-left: 3px;
}


/* =========================================
   SOCIAL ICONS
========================================= */

.wave-footer-social {
    margin-top: 22px;

    display: flex;

    align-items: center;

    gap: 8px;
}

.wave-footer-social a {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 50%;

    color: #ffffff;

    font-size: 11px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.wave-footer-social a:hover {
    background: #079db5;

    border-color: #079db5;

    transform: translateY(-3px);
}


/* =========================================
   CONTACT
========================================= */

.wave-footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    margin-bottom: 15px;
}

.wave-footer-contact-item > i {
    flex: 0 0 15px;

    margin-top: 3px;

    color: #72e1ed;

    font-size: 18px;

    text-align: center;
}

.wave-footer-contact-item p,
.wave-footer-contact-item a {
    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.65;

    text-decoration: none;

    word-break: break-word;
}

.wave-footer-contact-item a:hover {
    color: #72e1ed;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.wave-footer-bottom {
    width: 100%;

    border-top: 1px solid rgba(255, 255, 255, 0.13);
}


.wave-footer-bottom-container {
    width: 100%;

    max-width: 1250px;

    margin: 0 auto;

    padding: 15px 30px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.wave-footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.55);

    font-family: "Poppins", sans-serif;

    font-size: 14px;
}


.wave-footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 8px;
}


.wave-footer-bottom-links a,
.wave-footer-bottom-links span {
    color: rgba(255, 255, 255, 0.55);

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    text-decoration: none;
}


.wave-footer-bottom-links a:hover {
    color: #72e1ed;
}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1100px) {

    .wave-footer-container {
        padding: 45px 25px 40px;

        gap: 30px;
    }

    .wave-footer-column h3 {
        font-size: 13px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .wave-footer-container {
        grid-template-columns: repeat(2, 1fr);

        gap: 40px 50px;
    }

    .wave-footer-about p {
        max-width: 300px;
    }

    .wave-footer-bottom-container {
        padding: 15px 25px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .wave-footer-container {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 40px 20px 35px;
    }


    .wave-footer-about p {
        max-width: 100%;

        font-size: 9px;
    }


    .wave-footer-column h3 {
        margin-bottom: 15px;

        font-size: 13px;
    }


    .wave-footer-column ul li {
        margin-bottom: 8px;
    }


    .wave-footer-column ul li a {
        font-size: 9px;
    }


    .wave-footer-contact-item {
        margin-bottom: 12px;
    }


    .wave-footer-bottom-container {
        padding: 15px 20px;

        flex-direction: column;

        justify-content: center;

        text-align: center;

        gap: 8px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .wave-footer-container {
        padding: 35px 15px 30px;

        gap: 28px;
    }

    .wave-footer-logo img {
        width: 130px;
    }

    .wave-footer-about p {
        font-size: 14px;
    }

    .wave-footer-column h3 {
        font-size: 16px;
    }

    .wave-footer-column ul li a {
        font-size: 14px;
    }

    .wave-footer-contact-item p,
    .wave-footer-contact-item a {
        font-size: 14px;
    }

    .wave-footer-bottom-container {
        padding: 13px 15px;
    }

    .wave-footer-bottom p,
    .wave-footer-bottom-links a,
    .wave-footer-bottom-links span {
        font-size: 14px;
    }

}


.wave-main-header {
    position: sticky !important;
    top: 0;
    z-index: 9999;
    background: #ffffff;
}



/* =========================================
   ABOUT US BREADCRUMB
========================================= */

.about-breadcrumb {
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image: url("../images/home/breadcrum.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark / Teal Overlay */

.about-breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(3, 40, 75, 0.97) 0%,
        rgba(3, 67, 100, 0.88) 42%,
        rgba(3, 67, 100, 0.35) 75%,
        rgba(3, 67, 100, 0.10) 100%
    );
}

/* Content */

.about-breadcrumb .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-breadcrumb-content {
    max-width: 650px;
    padding: 55px 0;
    padding-left:50px !important;
}

/* Small Heading */

.about-breadcrumb-subtitle {
    display: inline-block;
    margin-bottom: 10px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #20c4d4;
    text-transform: uppercase;
}

/* Main Heading */

.about-breadcrumb-content h1 {
    position: relative;

    margin: 0 0 18px;
    padding-bottom: 15px;

    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;

    color: #ffffff;
}

/* Small Teal Line */

.about-breadcrumb-content h1::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: 0;

    width: 55px;
    height: 3px;

    background: #12b8c9;
    border-radius: 10px;
}

/* Breadcrumb */

.about-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 15px;

    font-size: 15px;
    font-weight: 500;
}

.about-breadcrumb-nav a {
    color: #ffffff;
    text-decoration: none;

    transition: 0.3s ease;
}

.about-breadcrumb-nav a:hover {
    color: #18bfd0;
}

.about-breadcrumb-nav span {
    color: #d8e7ec;
}

.about-breadcrumb-nav span i {
    font-size: 11px;
}

.about-breadcrumb-nav .active {
    color: #19bfd0;
}

/* Description */

.about-breadcrumb-content p {
    margin: 0;

    max-width: 520px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================
   TABLET
   768px - 991px
========================================= */

@media (max-width: 991px) {

    .about-breadcrumb {
        min-height: 270px;

        background-position: center right;
    }

    .about-breadcrumb-overlay {
        background: linear-gradient(
            90deg,
            rgba(3, 40, 75, 0.97) 0%,
            rgba(3, 67, 100, 0.88) 55%,
            rgba(3, 67, 100, 0.40) 100%
        );
    }

    .about-breadcrumb-content {
        max-width: 550px;
        padding: 45px 30px;
    }

    .about-breadcrumb-content h1 {
        font-size: 42px;
    }

    .about-breadcrumb-content p {
        font-size: 15px;
    }

}


/* =========================================
   MOBILE
   767px and below
========================================= */

@media (max-width: 767px) {

    .about-breadcrumb {
        min-height: 250px;

        background-position: 65% center;
    }

    .about-breadcrumb-overlay {
        background: linear-gradient(
            90deg,
            rgba(3, 40, 75, 0.98) 0%,
            rgba(3, 67, 100, 0.90) 70%,
            rgba(3, 67, 100, 0.65) 100%
        );
    }

    .about-breadcrumb-content {
        max-width: 100%;
        padding: 40px 20px;
    }

    .about-breadcrumb-subtitle {
        font-size: 10px;
        letter-spacing: 1.2px;
        margin-bottom: 8px;
    }

    .about-breadcrumb-content h1 {
        font-size: 34px;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }

    .about-breadcrumb-content h1::after {
        width: 45px;
        height: 3px;
    }

    .about-breadcrumb-nav {
        gap: 9px;
        font-size: 13px;
        margin-bottom: 12px;
    }

    .about-breadcrumb-content p {
        max-width: 330px;
        font-size: 13px;
        line-height: 1.6;
    }

}


/* =========================================
   SMALL MOBILE
   480px and below
========================================= */

@media (max-width: 480px) {

    .about-breadcrumb {
        min-height: 220px;
        background-position: 70% center;
    }

    .about-breadcrumb-content {
        padding: 32px 15px;
    }

    .about-breadcrumb-subtitle {
        font-size: 9px;
    }

    .about-breadcrumb-content h1 {
        font-size: 29px;
    }

    .about-breadcrumb-nav {
        font-size: 12px;
        gap: 7px;
    }

    .about-breadcrumb-content p {
        font-size: 12px;
        max-width: 290px;
    }

}



/* =========================================
   VISION & MISSION SECTION
========================================= */

.vision-mission-section {
    width: 100%;
    padding: 60px 40px;
    background: #f4fbfd;
}

.vision-mission-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 25px;
    align-items: stretch;
}

/* =========================================
   COMMON CARD
========================================= */

.vision-card,
.mission-card {
    position: relative;

    display: flex;
    align-items: flex-start;

    background: #ffffff;

    border-radius: 12px;

    border: 1px solid #dceef3;

    border-left: 4px solid #0ba5b8;

    padding: 38px 35px;

    box-shadow: 0 5px 20px rgba(0, 60, 90, 0.05);

    transition: all 0.3s ease;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(0, 80, 110, 0.10);
}


/* =========================================
   ICON
========================================= */

.vm-icon {
    flex: 0 0 80px;

    width: 80px;
    height: 80px;

    margin-right: 25px;

    border-radius: 50%;

    background: #e8f8fb;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #08a6bb;

    font-size: 35px;

    transition: all 0.3s ease;
}

.vision-card:hover .vm-icon,
.mission-card:hover .vm-icon {
    background: #08a6bb;
    color: #ffffff;
}


/* =========================================
   CONTENT
========================================= */

.vm-content {
    flex: 1;
}

.vm-content h3 {
    margin: 5px 0 12px;

    color: #082f52;

    font-size: 27px;

    font-weight: 700;

    line-height: 1.2;
}


/* =========================================
   UNDERLINE
========================================= */

.vm-line {
    display: block;

    width: 35px;
    height: 3px;

    margin-bottom: 20px;

    background: #0aa8bd;

    border-radius: 5px;
}


/* =========================================
   VISION TEXT
========================================= */

.vision-card .vm-content p {
    margin: 0;

    color: #647784;

    font-size: 14px;

    line-height: 1.9;

    font-weight: 400;
    font-family: "Poppins", sans-serif;
}


/* =========================================
   MISSION LIST
========================================= */

.mission-card .vm-content ul {
    padding: 0;
    margin: 0;

    list-style: none;
}

.mission-card .vm-content ul li {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin-bottom: 12px;

    color: #647784;

    font-size: 14px;

    line-height: 1.6;
    font-family: "Poppins", sans-serif;
}

.mission-card .vm-content ul li:last-child {
    margin-bottom: 0;
}


/* Check Icon */

.mission-card .vm-content ul li > i {
    flex: 0 0 16px;

    width: 16px;
    height: 16px;

    margin-top: 3px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0ba5b8;

    color: #ffffff;

    font-size: 8px;
}


/* =========================================
   TABLET
   768px - 991px
========================================= */

@media (max-width: 991px) {

    .vision-mission-section {
        padding: 60px 25px;
    }

    .vision-mission-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .vision-card,
    .mission-card {
        padding: 30px 25px;
    }

    .vm-icon {
        flex: 0 0 65px;

        width: 65px;
        height: 65px;

        margin-right: 18px;

        font-size: 28px;
    }

    .vm-content h3 {
        font-size: 23px;
    }

    .vision-card .vm-content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .mission-card .vm-content ul li {
        font-size: 13px;
        gap: 8px;
    }
}


/* =========================================
   MOBILE
   767px and below
========================================= */

@media (max-width: 767px) {

    .vision-mission-section {
        padding: 45px 15px;
    }

    .vision-mission-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vision-card,
    .mission-card {
        padding: 28px 22px;
    }

    .vm-icon {
        flex: 0 0 65px;

        width: 65px;
        height: 65px;

        margin-right: 18px;

        font-size: 27px;
    }

    .vm-content h3 {
        font-size: 22px;

        margin-top: 5px;
    }

    .vm-line {
        margin-bottom: 15px;
    }

    .vision-card .vm-content p {
        font-size: 14px;

        line-height: 1.75;
    }

    .mission-card .vm-content ul li {
        font-size: 13px;

        line-height: 1.65;

        margin-bottom: 10px;
    }
}


/* =========================================
   SMALL MOBILE
   480px and below
========================================= */

@media (max-width: 480px) {

    .vision-mission-section {
        padding: 35px 12px;
    }

    .vision-card,
    .mission-card {
        display: block;

        padding: 25px 20px;
    }

    .vm-icon {
        width: 60px;
        height: 60px;

        margin: 0 0 18px;

        font-size: 25px;
    }

    .vm-content h3 {
        font-size: 21px;
    }

    .vision-card .vm-content p {
        font-size: 13px;
    }

    .mission-card .vm-content ul li {
        font-size: 13px;
    }
}



/* =========================================
   WAVE SERVICES PAGE
========================================= */

.service-page-wave-services-page {
    width: 100%;
    padding: 70px 0;
    background: #f5fbfd;
    overflow: hidden;
}

.service-page-wave-services-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================
   SECTION HEADING
========================================= */

.service-page-wave-services-heading {
    text-align: center;
    margin-bottom: 35px;
}

.service-page-wave-services-heading span {
    display: block;
    margin-bottom: 8px;

    color: #079db5;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;

    font-family: "Poppins", sans-serif;
}

.service-page-wave-services-heading h2 {
    margin: 0 0 10px;

    color: #062b4c;

    font-size: 34px;
    line-height: 1.3;
    font-weight: 700;
}

.service-page-wave-services-heading h2::after {
    content: "";

    display: block;

    width: 45px;
    height: 3px;

    margin: 13px auto 0;

    background: #079db5;

    border-radius: 10px;
}

.service-page-wave-services-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: #647784;

    font-size: 14px;

    font-family: "Poppins", sans-serif;

    line-height: 1.7;
}


/* =========================================
   SERVICES GRID
========================================= */

.service-page-wave-services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 15px;

    width: 100%;
}


/* =========================================
   SERVICE CARD
========================================= */

.service-page-wave-service-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 405px;

    padding: 22px 20px 65px;

    background: #ffffff;

    border: 1px solid #dceef3;

    border-radius: 8px;

    box-shadow:
        0 5px 20px rgba(0, 50, 80, 0.04);

    transition: all 0.3s ease;
}

.service-page-wave-service-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(0, 80, 110, 0.10);
}


/* =========================================
   SERVICE TITLE
========================================= */

.service-page-wave-service-title {
    display: flex;

    align-items: center;

    gap: 14px;

    min-height: 58px;

    margin-bottom: 15px;
}

.service-page-wave-service-title h3 {
    margin: 0;

    color: #092f53;

    font-size: 17px;

    line-height: 1.3;

    font-weight: 700;
}


/* =========================================
   SERVICE ICON
========================================= */

.service-page-wave-service-icon {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e7f8fb;

    color: #08a6bb;

    font-size: 24px;
}


/* =========================================
   SERVICE IMAGE
========================================= */

.service-page-wave-service-image {
    width: 100%;
    height: 195px;

    margin-bottom: 15px;

    overflow: hidden;

    border-radius: 6px;
}

.service-page-wave-service-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.service-page-wave-service-card:hover
.service-page-wave-service-image img {
    transform: scale(1.04);
}


/* =========================================
   SERVICE LIST
========================================= */

.service-page-wave-service-list {
    color: #647784;

    font-size: 14px;

    font-family: "Poppins", sans-serif;

    line-height: 1.5;
}

.service-page-wave-service-main-item {
    display: flex;

    align-items: flex-start;

    gap: 8px;

    margin-bottom: 7px;
}

.service-page-wave-service-main-item i {
    flex: 0 0 auto;

    margin-top: 3px;

    color: #08a7bb;

    font-size: 10px;
}

.service-page-wave-service-list ul {
    margin: 0 0 10px 21px;

    padding: 0;
}

.service-page-wave-service-list ul li {
    margin-bottom: 4px;
}


/* =========================================
   HEALTH CHECK-UP
========================================= */

.service-page-wave-health-card {
    position: relative;

    display: flex;

    align-items: flex-start;

    gap: 25px;

    width: 100%;

    margin-top: 15px;

    padding: 25px 25px 30px;

    background: #ffffff;

    border: 1px solid #dceef3;

    border-radius: 8px;

    box-shadow:
        0 5px 20px rgba(0, 50, 80, 0.04);
}

.service-page-wave-health-icon {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e7f8fb;

    color: #08a6bb;

    font-size: 25px;
}

.service-page-wave-health-content {
    flex: 1;

    min-width: 0;
}

.service-page-wave-health-content h3 {
    margin: 5px 0 18px;

    color: #092f53;

    font-size: 18px;
}

.service-page-wave-health-inner {
    display: flex;

    align-items: center;

    gap: 35px;
}

.service-page-wave-health-image {
    width: 310px;
    height: 195px;

    flex: 0 0 310px;

    overflow: hidden;

    border-radius: 6px;
}

.service-page-wave-health-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.service-page-wave-health-list {
    display: flex;

    flex-direction: column;

    gap: 12px;

    color: #647784;

    font-family: "Poppins", sans-serif;

    font-size: 14px;
}

.service-page-wave-health-list div {
    display: flex;

    align-items: flex-start;

    gap: 10px;
}

.service-page-wave-health-list i {
    flex: 0 0 auto;

    margin-top: 3px;

    color: #08a6bb;

    font-size: 11px;
}


/* =========================================
   COMMITMENT SECTION
========================================= */

.service-page-wave-commitment {
    display: grid;

    grid-template-columns: 1fr 1fr;

    width: 100%;

    margin-top: 30px;

    overflow: hidden;

    background: #eaf7fa;

    border: 1px solid #d8edf2;

    border-radius: 8px;
}

.service-page-wave-commitment-content {
    padding: 45px 35px;
}

.service-page-wave-commitment-content > span {
    display: block;

    margin-bottom: 10px;

    color: #08a6bb;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;
}

.service-page-wave-commitment-content h2 {
    margin: 0 0 12px;

    color: #062b4c;

    font-size: 34px;

    line-height: 1.3;
}

.service-page-wave-commitment-line {
    width: 45px;
    height: 3px;

    margin-bottom: 20px;

    background: #08a6bb;

    border-radius: 5px;
}

.service-page-wave-commitment-content p {
    max-width: 500px;

    margin: 0 0 15px;

    color: #40586a;

    font-size: 14px;

    line-height: 1.8;

    font-family: "Poppins", sans-serif;
}

.service-page-wave-commitment-content strong {
    color: #079bb1;

    font-size: 18px;

    line-height: 1.5;
}

.service-page-wave-commitment-image {
    position: relative;

    min-height: 300px;
}

.service-page-wave-commitment-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.service-page-wave-commitment-icon {
    position: absolute;

    top: 50%;
    left: -28px;

    transform: translateY(-50%);

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 5px solid #eaf7fa;

    border-radius: 50%;

    background: #08a6bb;

    color: #ffffff;

    font-size: 23px;
}


/* =========================================
   TABLET
   768px - 991px
========================================= */

@media (max-width: 991px) {

    .service-page-wave-services-page {
        padding: 60px 0;
    }

    .service-page-wave-services-container {
        padding: 0 25px;
    }

    .service-page-wave-services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .service-page-wave-service-card {
        min-height: 420px;
    }

    .service-page-wave-service-image {
        height: 150px;
    }

    .service-page-wave-health-inner {
        gap: 20px;
    }

    .service-page-wave-health-image {
        width: 270px;

        flex-basis: 270px;
    }

    .service-page-wave-commitment-content {
        padding: 35px 25px;
    }

    .service-page-wave-commitment-content h2 {
        font-size: 25px;
    }

}


/* =========================================
   MOBILE
   767px AND BELOW
========================================= */

@media (max-width: 767px) {

    .service-page-wave-services-page {
        padding: 45px 0;
    }

    .service-page-wave-services-container {
        padding: 0 15px;
    }


    /* Heading */

    .service-page-wave-services-heading {
        margin-bottom: 28px;
    }

    .service-page-wave-services-heading span {
        font-size: 13px;
    }

    .service-page-wave-services-heading h2 {
        font-size: 26px;
    }

    .service-page-wave-services-heading p {
        font-size: 13px;

        line-height: 1.6;
    }


    /* One card per row */

    .service-page-wave-services-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    /* Service Card */

    .service-page-wave-service-card {
        min-height: auto;

        padding: 20px 18px 35px;
    }

    .service-page-wave-service-title {
        gap: 12px;
    }

    .service-page-wave-service-title h3 {
        font-size: 18px;
    }

    .service-page-wave-service-icon {
        width: 55px;
        height: 55px;

        flex-basis: 55px;

        font-size: 23px;
    }

    .service-page-wave-service-image {
        height: 190px;
    }

    .service-page-wave-service-list {
        font-size: 13px;

        line-height: 1.6;
    }

    .service-page-wave-service-list ul {
        margin-left: 22px;
    }

    .service-page-wave-service-list ul li {
        margin-bottom: 5px;
    }


    /* Health Check-up */

    .service-page-wave-health-card {
        display: block;

        margin-top: 18px;

        padding: 25px 18px 30px;
    }

    .service-page-wave-health-icon {
        margin-bottom: 15px;
    }

    .service-page-wave-health-content h3 {
        font-size: 20px;
    }

    .service-page-wave-health-inner {
        display: block;
    }

    .service-page-wave-health-image {
        width: 100%;

        height: 190px;

        margin-bottom: 20px;
    }

    .service-page-wave-health-list {
        font-size: 13px;
    }


    /* Commitment */

    .service-page-wave-commitment {
        grid-template-columns: 1fr;

        margin-top: 25px;
    }

    .service-page-wave-commitment-content {
        padding: 35px 22px;
    }

    .service-page-wave-commitment-content h2 {
        font-size: 25px;
    }

    .service-page-wave-commitment-content p {
        font-size: 13px;

        line-height: 1.7;
    }

    .service-page-wave-commitment-content strong {
        font-size: 12px;
    }

    .service-page-wave-commitment-image {
        min-height: 260px;
    }

    .service-page-wave-commitment-icon {
        display: none;
    }

}


/* =========================================
   SMALL MOBILE
   480px AND BELOW
========================================= */

@media (max-width: 480px) {

    .service-page-wave-services-page {
        padding: 35px 0;
    }

    .service-page-wave-services-container {
        padding: 0 12px;
    }


    /* Heading */

    .service-page-wave-services-heading h2 {
        font-size: 23px;
    }

    .service-page-wave-services-heading p {
        font-size: 14px;
    }


    /* Service */

    .service-page-wave-service-card {
        padding: 18px 16px 30px;
    }

    .service-page-wave-service-title {
        min-height: 52px;
    }

    .service-page-wave-service-icon {
        width: 52px;
        height: 52px;

        flex-basis: 52px;

        font-size: 21px;
    }

    .service-page-wave-service-title h3 {
        font-size: 18px;
    }

    .service-page-wave-service-image {
        height: 170px;
    }

    .service-page-wave-service-list {
        font-size: 14px;
    }


    /* Health */

    .service-page-wave-health-card {
        padding: 22px 16px 30px;
    }

    .service-page-wave-health-image {
        height: 170px;
    }

    .service-page-wave-health-list {
        font-size: 14px;
    }


    /* Commitment */

    .service-page-wave-commitment-content {
        padding: 30px 18px;
    }

    .service-page-wave-commitment-content h2 {
        font-size: 22px;
    }

    .service-page-wave-commitment-content p {
        font-size: 14px;
    }

    .service-page-wave-commitment-content strong {
        font-size: 18px;
    }

    .service-page-wave-commitment-image {
        min-height: 220px;
    }

}




/* =========================================
   HEALTH PAGE
========================================= */

.health-page-breadcrumb {
    position: relative;

    width: 100%;
    min-height: 370px;

    overflow: hidden;

   
}

.health-page-breadcrumb-container {
    position: relative;

    max-width: 1280px;

    min-height: 370px;

    margin: auto;

    padding: 0 40px;
    background: #edf9fc;
    margin-top:60px !important;
}

.health-page-breadcrumb-content {
    position: relative;
    z-index: 2;

    width: 48%;

    padding-top: 40px;
}

.health-page-breadcrumb-nav {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 35px;

    color: #0b365c;

    font-family: "Poppins", sans-serif;

    font-size: 12px;
}

.health-page-breadcrumb-nav a {
    color: #0b365c;

    text-decoration: none;
}

.health-page-breadcrumb-nav span {
    color: #0b365c;
}

.health-page-breadcrumb-line {
    width: 26px;
    height: 3px;

    margin-bottom: 10px;

    background: #079db5;

    border-radius: 10px;
}

.health-page-breadcrumb-content h1 {
    margin: 0 0 18px;

    color: #062b4c;

    font-family: "Poppins", sans-serif;

    font-size: 34px;

    font-weight: 700;

    line-height: 1.3;
}



.health-page-breadcrumb-content h1::after {
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    margin: 13px 0;
    background: #079db5;
    border-radius: 10px;
}

.health-page-breadcrumb-content > p {
    max-width: 470px;

    margin: 0;

    color:  #647784;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.7;
}

.health-page-breadcrumb-image {
    position: absolute;

    right: 0;
    top: 0;

    width: 57%;
    height: 100%;
}

.health-page-breadcrumb-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;
}


/* =========================================
   BANNER FEATURES
========================================= */

.health-page-breadcrumb-features {
    display: flex;

    align-items: center;

    gap: 0;

    margin-top: 25px;
}

.health-page-breadcrumb-feature {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 0 20px;

    border-right: 1px solid #c9e2e7;
}

.health-page-breadcrumb-feature:first-child {
    padding-left: 0;
}

.health-page-breadcrumb-feature:last-child {
    border-right: 0;
}

.health-page-breadcrumb-feature i {
    color: #079db5;

    font-size: 30px;
}

.health-page-breadcrumb-feature span {
    color: #173c58;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 600;

    line-height: 1.3;
}


/* =========================================
   MAIN SECTION
========================================= */

.health-page-packages-section {
    width: 100%;

    padding: 45px 0 60px;

    background: #ffffff;
}

.health-page-container {
    width: 100%;

    max-width: 1240px;

    margin: 0 auto;

    padding: 0 20px;
}


/* =========================================
   SECTION HEADING
========================================= */

.health-page-section-heading {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-bottom: 28px;
}

.health-page-section-heading h2 {
    margin: 0;

    color: #062b4c;

    font-family: "Poppins", sans-serif;

    font-size: 34px;

    font-weight: 700;

    text-align: center;
}

.health-page-section-heading h2::after {
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    margin: 13px auto 0;
    background: #079db5;
    border-radius: 10px;
}

.health-page-heading-line {
    position: relative;

    width: 45px;
    height: 2px;

    background: #079db5;
}

.health-page-heading-line::after {
    content: "";

    position: absolute;

    right: -3px;
    top: 50%;

    width: 5px;
    height: 5px;

    transform: translateY(-50%);

    background: #079db5;

    border-radius: 50%;
}

.health-page-heading-line:first-child::after {
    right: auto;
    left: -3px;
}

.health-page-cancer-heading {
    margin-top: 48px;
}


/* =========================================
   MAIN PACKAGE GRID
========================================= */

.health-page-package-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;

    align-items: stretch;
}


/* =========================================
   PACKAGE CARD
========================================= */

.health-page-package-card {
    position: relative;

    display: flex;

    flex-direction: column;

    min-width: 0;

    padding: 28px 14px 15px;

    background: #ffffff;

    border: 1px solid #d7e9ef;

    border-radius: 15px;

    box-shadow: 0 5px 18px rgba(10, 75, 105, 0.06);

    transition: all 0.3s ease;
}

.health-page-package-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 12px 28px rgba(10, 75, 105, 0.12);
}


/* =========================================
   NUMBER
========================================= */

.health-page-package-number {
    position: absolute;

    left: 10px;
    top: -11px;

    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #079db5;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 700;
}


/* =========================================
   PACKAGE ICON
========================================= */

.health-page-package-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 12px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #079db5;

    font-size: 32px;

    text-align: center;
}


/* =========================================
   PACKAGE TITLE
========================================= */

.health-page-package-card h3 {
    min-height: 48px;

    margin: 0 0 12px;

    color: #062b4c;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    font-weight: 700;

    line-height: 1.35;

    text-align: center;
}


/* =========================================
   PACKAGE SUBTITLE
========================================= */

.health-page-package-subtitle {
    display: flex;

    flex-direction: column;

    align-items: center;

    min-height: 48px;

    margin-bottom: 15px;

    padding-bottom: 12px;

    border-bottom: 1px solid #e5edf0;

    color: #647784;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.6;

    text-align: center;
}

.health-page-package-subtitle strong {
    margin-bottom: 2px;

    color: #183d59;

    font-size: 14px;
}


/* =========================================
   DESCRIPTION
========================================= */

.health-page-package-description {
    min-height: 54px;

    margin: 0 0 12px;

    color: #647784;

    font-family: "Poppins", sans-serif;

    font-size: 14x;

    line-height: 1.55;

    text-align: center;
}


/* =========================================
   PACKAGE LIST
========================================= */

.health-page-package-list {
    flex: 1;

    margin: 0;

    padding: 0;

    list-style: none;

    color: #647784;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.5;
}

.health-page-package-list li {
    position: relative;

    margin-bottom: 7px;

    padding-left: 16px;
}

.health-page-package-list li::before {
    content: "\f058";

    position: absolute;

    left: 0;
    top: 1px;

    color: #079db5;

    font-family: "Font Awesome 6 Free";

    font-size: 10px;

    font-weight: 900;
}


/* =========================================
   BOOK BUTTON
========================================= */

.health-page-package-button {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    width: 100%;

    height: 32px;

    margin-top: 12px;

    border: 1px solid #079db5;

    border-radius: 10px;

    color: #078ba3;

    background: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 15px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

.health-page-package-button:hover {
    background: #079db5;

    color: #ffffff;
}


/* =========================================
   CANCER GRID
========================================= */

.health-page-cancer-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;

    max-width: 1120px;

    margin: 0 auto;
}


/* =========================================
   CANCER CARD
========================================= */

.health-page-cancer-card {
    position: relative;

    display: flex;

    flex-direction: column;

    padding: 28px 22px 15px;

    background: #ffffff;

    border: 1px solid #e3e7f1;

    border-radius: 14px;

    box-shadow: 0 5px 18px rgba(10, 75, 105, 0.05);
}

.health-page-cancer-number {
    position: absolute;

    left: 12px;
    top: -11px;

    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #4d3c99;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 700;
}


/* =========================================
   CANCER ICON
========================================= */

.health-page-cancer-icon {
    width: 66px;
    height: 66px;

    margin: 0 auto 12px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 2px solid;

    border-radius: 50%;

    font-size: 31px;
}

.health-page-purple {
    color: #6551b2;

    border-color: #c8bdf0;

    background: #f8f6ff;
}

.health-page-pink {
    color: #f15a92;

    border-color: #f6b6ce;

    background: #fff7fa;
}

.health-page-teal {
    color: #079db5;

    border-color: #9edbe4;

    background: #f3fcfd;
}


/* =========================================
   CANCER TITLE
========================================= */

.health-page-cancer-card h3 {
    min-height: 48px;

    margin: 0 0 12px;

    color: #092f58;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    line-height: 1.35;

    text-align: center;
}

.health-page-cancer-card strong {
    margin-bottom: 12px;

    color: #29485f;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    text-align: left;
}


/* =========================================
   CANCER LIST
========================================= */

.health-page-cancer-card ul {
    flex: 1;

    margin: 0;

    padding: 0;

    list-style: none;

    color: #647784;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.8;
}

.health-page-cancer-card li {
    position: relative;

    margin-bottom: 8px;

    padding-left: 18px;
}

.health-page-cancer-card li::before {
    content: "\f058";

    position: absolute;

    left: 0;
    top: 1px;

    font-family: "Font Awesome 6 Free";

    font-size: 10px;

    font-weight: 900;
}


/* Cancer icon/list colors */

.health-page-purple-button {
    color: #6551b2;

    border-color: #a99be3;
}

.health-page-purple-button:hover {
    background: #6551b2;

    color: #ffffff;
}

.health-page-pink-button {
    color: #ed5a91;

    border-color: #ef8fb4;
}

.health-page-pink-button:hover {
    background: #ed5a91;

    color: #ffffff;
}

.health-page-teal-button {
    color: #079db5;

    border-color: #68c4d1;
}

.health-page-teal-button:hover {
    background: #079db5;

    color: #ffffff;
}


/* =========================================
   CANCER BUTTON
========================================= */

.health-page-cancer-button {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    width: 100%;

    height: 32px;

    margin-top: 15px;

    border: 1px solid;

    border-radius: 10px;

    background: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 15px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}


/* =========================================
   NOTE
========================================= */

.health-page-note {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 28px;

    padding: 18px 25px;

    background: #eef9fc;

    border: 1px solid #72c9d7;

    border-radius: 12px;
}

.health-page-note-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #079db5;

    color: #ffffff;

    font-size: 20px;
}

.health-page-note-content h4 {
    margin: 0 0 5px;

    color: #092f58;

    font-family: "Poppins", sans-serif;

    font-size: 18px;
}

.health-page-note-content p {
    margin: 0;

    color: #647784;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================
   CUSTOMIZED PACKAGES
========================================= */

.health-page-customized {
    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    min-height: 160px;

    margin-top: 20px;

    overflow: hidden;

    border-radius: 12px;

    background: #079db5;
}

.health-page-customized-content {
    display: flex;

    align-items: center;

    gap: 20px;

    padding: 25px 30px;
}

.health-page-customized-icon {
    width: 62px;
    height: 62px;

    flex: 0 0 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 3px solid #ffffff;

    border-radius: 50%;

    color: #ffffff;

    font-size: 27px;
}

.health-page-customized-content h2 {
    margin: 0 0 10px;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 21px;
}

.health-page-customized-content p {
    max-width: 470px;

    margin: 0;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.7;
}

.health-page-customized-image {
    min-height: 160px;
}

.health-page-customized-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================
   BOTTOM CTA
========================================= */

.health-page-bottom-cta {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-top: 18px;
}

.health-page-contact-box,
.health-page-appointment-box {
    min-height: 110px;

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 20px 25px;

    border-radius: 12px;
}

.health-page-contact-box {
    background: #edf9fc;
}

.health-page-contact-icon,
.health-page-appointment-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 20px;
}

.health-page-contact-icon {
    background: #079db5;

    color: #ffffff;
}

.health-page-contact-box p {
    margin: 0;

    color: #29485e;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.6;
}

.health-page-contact-box strong {
    display: block;

    color: #092f58;
}

.health-page-appointment-box {
    background: #092f63;

    color: #ffffff;
}

.health-page-appointment-icon {
    border: 2px solid #ffffff;

    color: #ffffff;
}

.health-page-appointment-box p {
    margin: 0 0 2px;

    font-family: "Poppins", sans-serif;

    font-size: 14px;
}

.health-page-appointment-box span {
    display: block;

    margin-bottom: 8px;

    font-family: "Poppins", sans-serif;

    font-size: 14px;
}

.health-page-appointment-box a {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 7px 14px;

    border-radius: 7px;

    background: #ffffff;

    color: #087d99;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;
}


@media(max-width:600px){
    .health-page-appointment-box p {
    
    font-size: 14px;
}

.health-page-appointment-box span {

    font-size: 14px;
}

}


/* =========================================
   BOTTOM FEATURES
========================================= */

.health-page-bottom-features {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 22px;

    padding: 18px 0;

    border: 1px solid #dcecf0;

    border-radius: 10px;

    background: #ffffff;
}

.health-page-bottom-feature {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    border-right: 1px solid #dce8ec;
}

.health-page-bottom-feature:last-child {
    border-right: 0;
}

.health-page-bottom-feature i {
    color: #079db5;

    font-size: 22px;
}

.health-page-bottom-feature span {
    color: #087395;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    font-weight: 600;

    line-height: 1.4;
}


/* =========================================
   TABLET
   768px - 991px
========================================= */

@media (max-width: 991px) {

    .health-page-breadcrumb {
        min-height: 340px;
    }

    .health-page-breadcrumb-container {
        min-height: 340px;

        padding: 0 25px;
    }

    .health-page-breadcrumb-content {
        width: 52%;

        padding-top: 35px;
    }

    .health-page-breadcrumb-content h1 {
        font-size: 38px;
    }

    .health-page-breadcrumb-content > p {
        max-width: 400px;

        font-size: 12px;
    }

    .health-page-breadcrumb-image {
        width: 55%;
    }


    /* Packages */

    .health-page-package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 18px;
    }

    .health-page-package-card {
        min-height: 580px;
    }


    /* Cancer */

    .health-page-cancer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 18px;
    }

    .health-page-cancer-card:last-child {
        grid-column: 1 / -1;

        max-width: 50%;

        width: 100%;

        margin: auto;
    }


    /* Customized */

    .health-page-customized {
        grid-template-columns: 1fr 0.8fr;
    }


    /* Bottom */

    .health-page-bottom-features {
        grid-template-columns: repeat(2, 1fr);

        row-gap: 18px;
    }

    .health-page-bottom-feature:nth-child(2) {
        border-right: 0;
    }

}


/* =========================================
   MOBILE
   767px AND BELOW
========================================= */

@media (max-width: 767px) {

    .health-page-breadcrumb {
        min-height: auto;
    }

    .health-page-breadcrumb-container {
        min-height: auto;

        padding: 0;
    }

    .health-page-breadcrumb-content {
        width: 100%;

        padding: 35px 20px 25px;
    }

    .health-page-breadcrumb-nav {
        margin-bottom: 25px;
    }

    .health-page-breadcrumb-content h1 {
        font-size: 34px;
    }

    .health-page-breadcrumb-content > p {
        max-width: 100%;

        font-size: 12px;
    }

    .health-page-breadcrumb-features {
        margin-top: 20px;
    }

    .health-page-breadcrumb-feature {
        padding: 0 12px;
    }

    .health-page-breadcrumb-feature i {
        font-size: 22px;
    }

    .health-page-breadcrumb-feature span {
        font-size: 9px;
    }

    .health-page-breadcrumb-image {
        position: relative;

        width: 100%;

        height: 260px;
    }


    /* Main */

    .health-page-packages-section {
        padding: 40px 0;
    }

    .health-page-container {
        padding: 0 15px;
    }


    /* Heading */

    .health-page-section-heading {
        gap: 8px;

        margin-bottom: 25px;
    }

    .health-page-section-heading h2 {
        font-size: 18px;
    }

    .health-page-heading-line {
        width: 25px;
    }


    /* Main packages */

    .health-page-package-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .health-page-package-card {
        min-height: auto;

        padding: 30px 20px 18px;
    }

    .health-page-package-card h3 {
        font-size: 18px;
    }

    .health-page-package-list {
        font-size: 12px;
    }

    .health-page-package-list li {
        margin-bottom: 8px;
    }

    .health-page-package-button {
        height: 38px;

        margin-top: 15px;

        font-size: 14px;
    }


    /* Cancer heading */

    .health-page-cancer-heading {
        margin-top: 40px;
    }


    /* Cancer */

    .health-page-cancer-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .health-page-cancer-card {
        padding: 30px 20px 18px;
    }

    .health-page-cancer-card:last-child {
        grid-column: auto;

        max-width: none;
    }

    .health-page-cancer-card h3 {
        font-size: 18px;
    }

    .health-page-cancer-card ul {
        font-size: 12px;
    }

    .health-page-cancer-button {
        height: 38px;

        font-size: 14px;
    }


    /* Note */

    .health-page-note {
        align-items: flex-start;

        gap: 15px;

        padding: 18px;
    }

    .health-page-note-icon {
        width: 42px;
        height: 42px;

        flex-basis: 42px;
    }

    .health-page-note-content p {
        font-size: 14px;
    }


    /* Customized */

    .health-page-customized {
        grid-template-columns: 1fr;

        margin-top: 20px;
    }

    .health-page-customized-content {
        padding: 25px 20px;
    }

    .health-page-customized-content h2 {
        font-size: 20px;
    }

    .health-page-customized-content p {
        font-size: 14px;
    }

    .health-page-customized-image {
        height: 220px;

        min-height: 220px;
    }


    /* CTA */

    .health-page-bottom-cta {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .health-page-contact-box,
    .health-page-appointment-box {
        min-height: auto;

        padding: 20px;
    }


    /* Bottom features */

    .health-page-bottom-features {
        grid-template-columns: 1fr 1fr;

        row-gap: 0;
    }

    .health-page-bottom-feature {
        min-height: 70px;

        padding: 10px;

        border-bottom: 1px solid #dce8ec;
    }

    .health-page-bottom-feature:nth-child(2) {
        border-right: 0;
    }

    .health-page-bottom-feature:nth-child(3),
    .health-page-bottom-feature:nth-child(4) {
        border-bottom: 0;
    }

}


/* =========================================
   SMALL MOBILE
   480px AND BELOW
========================================= */

@media (max-width: 480px) {

    .health-page-breadcrumb-content {
        padding: 30px 16px 22px;
    }

    .health-page-breadcrumb-content h1 {
        font-size: 29px;
    }

    .health-page-breadcrumb-content > p {
        font-size: 14px;

        line-height: 1.7;
    }

    .health-page-breadcrumb-image {
        height: 220px;
    }

    .health-page-breadcrumb-features {
        justify-content: space-between;
    }

    .health-page-breadcrumb-feature {
        padding: 0 7px;
    }

    .health-page-breadcrumb-feature i {
        font-size: 19px;
    }

    .health-page-breadcrumb-feature span {
        font-size: 14px;
    }


    /* Section */

    .health-page-section-heading h2 {
        font-size: 16px;
    }

    .health-page-heading-line {
        width: 20px;
    }


    /* Cards */

    .health-page-package-card,
    .health-page-cancer-card {
        padding-left: 17px;

        padding-right: 17px;
    }

    .health-page-package-card h3,
    .health-page-cancer-card h3 {
        font-size: 17px;
    }

    .health-page-package-list,
    .health-page-cancer-card ul {
        font-size: 14px;
    }


    /* Note */

    .health-page-note {
        display: block;
    }

    .health-page-note-icon {
        margin-bottom: 12px;
    }


    /* Customized */

    .health-page-customized-content {
        display: block;
    }

    .health-page-customized-icon {
        margin-bottom: 15px;
    }

    .health-page-customized-content h2 {
        font-size: 19px;
    }


    /* CTA */

    .health-page-contact-box,
    .health-page-appointment-box {
        display: block;
    }

    .health-page-contact-icon,
    .health-page-appointment-icon {
        margin-bottom: 12px;
    }


    /* Features */

    .health-page-bottom-feature {
        flex-direction: column;

        gap: 5px;

        text-align: center;
    }

    .health-page-bottom-feature i {
        font-size: 20px;
    }

    .health-page-bottom-feature span {
        font-size: 9px;
    }

}



/* =========================================
   CONTACT PAGE
========================================= */

.contact-page-section {
    width: 100%;
    padding: 60px 0 70px;
    background: #ffffff;
    overflow: hidden;
}

.contact-page-container {
    width: 100%;
    max-width: 1358px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================
   INTRO
========================================= */

.contact-page-intro {
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

.contact-page-small-title {
    display: block;
    margin-bottom: 8px;

    color: #079db5;

    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-page-intro h1 {
    margin: 0 0 12px;

    color: #092f58;

    font-family: "Poppins", sans-serif;
    font-size: 38px;
    font-weight: 700;
}

.contact-page-title-line {
    width: 45px;
    height: 3px;

    margin: 0 auto 15px;

    background: #079db5;

    border-radius: 10px;
}

.contact-page-intro p {
    max-width: 600px;
    margin: 0 auto;

    color: #536a7a;

    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   CONTACT MAIN
========================================= */

.contact-page-main {
    display: grid;

    grid-template-columns: 0.75fr 1.25fr;

    gap: 30px;

    padding: 35px;

    background: #ffffff;

    border-radius: 15px;

    box-shadow:
        0 8px 35px rgba(0, 60, 90, 0.07);
}


/* =========================================
   LEFT INFORMATION
========================================= */

.contact-page-information {
    padding: 5px 10px;
}

.contact-page-information h2,
.contact-page-form-box h2 {
    margin: 0 0 10px;

    color: #062b4c;

    font-family: "Poppins", sans-serif;
    font-size: 34px;
    font-weight: 700;
}

.contact-page-heading-line {
    width: 38px;
    height: 3px;

    margin-bottom: 25px;

    background: #079db5;

    border-radius: 10px;
}


/* =========================================
   INFO ITEM
========================================= */

.contact-page-info-item {
    position: relative;

    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 15px;

    padding: 16px;

    background: #f3f9fc;

    border-radius: 10px;
}

.contact-page-info-item::after {
    content: "";

    position: absolute;

    left: 38px;
    bottom: -15px;

    width: 1px;
    height: 15px;

    border-left: 1px dashed #79c8d4;
}

.contact-page-info-item:last-child::after {
    display: none;
}

.contact-page-info-icon {
    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #079db5;

    color: #ffffff;

    font-size: 20px;
}

.contact-page-info-content {
    min-width: 0;
}

.contact-page-info-content h3 {
    margin: 2px 0 5px;

    color: #123c60;

    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.contact-page-info-content p {
    margin: 0;

    color: #647784;

    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.7;
}

.contact-page-info-content a {
    color: #647784;

    text-decoration: none;

    transition: color 0.3s ease;
}

.contact-page-info-content a:hover {
    color: #079db5;
}


/* =========================================
   FORM BOX
========================================= */

.contact-page-form-box {
    padding: 5px 10px;
}

.contact-page-form-box form {
    width: 100%;
}

.contact-page-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-bottom: 15px;
}


/* =========================================
   INPUT
========================================= */

.contact-page-form-group {
    position: relative;

    display: flex;

    align-items: center;

    width: 100%;
    height: 52px;

    border: 1px solid #c9e4eb;

    border-radius: 8px;

    background: #ffffff;

    transition: all 0.3s ease;
}

.contact-page-form-group:focus-within,
.contact-page-message-group:focus-within {
    border-color: #079db5;

    box-shadow:
        0 0 0 3px rgba(7, 157, 181, 0.08);
}

.contact-page-input-icon {
    width: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #47758c;

    font-size: 15px;
}

.contact-page-form-group input,
.contact-page-form-group select {
    width: 100%;
    height: 100%;

    padding: 0 15px 0 0;

    border: 0;
    outline: none;

    background: transparent;

    color: #29485f;

    font-family: "Poppins", sans-serif;

    font-size: 14px;
}

.contact-page-form-group input::placeholder {
    color: #687d8c;
}

.contact-page-form-group select {
    cursor: pointer;

    appearance: auto;
}


/* =========================================
   FULL WIDTH
========================================= */

.contact-page-full-width {
    margin-bottom: 15px;
}


/* =========================================
   MESSAGE
========================================= */

.contact-page-message-group {
    position: relative;

    display: flex;

    align-items: flex-start;

    width: 100%;

    min-height: 145px;

    border: 1px solid #c9e4eb;

    border-radius: 8px;

    background: #ffffff;

    transition: all 0.3s ease;
}

.contact-page-message-icon {
    width: 48px;

    padding-top: 18px;

    display: flex;

    justify-content: center;

    color: #47758c;

    font-size: 15px;
}

.contact-page-message-group textarea {
    width: 100%;
    min-height: 145px;

    padding: 17px 15px 15px 0;

    resize: vertical;

    border: 0;
    outline: none;

    background: transparent;

    color: #29485f;

    font-family: "Poppins", sans-serif;

    font-size: 14px;
}

.contact-page-message-group textarea::placeholder {
    color: #687d8c;
}


/* =========================================
   SUBMIT
========================================= */

.contact-page-submit {
    display: flex;

    justify-content: center;

    margin-top: 22px;
}

.contact-page-submit button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-width: 195px;

    padding: 13px 25px;

    border: 0;

    border-radius: 10px;

    background: #079db5;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;
}

.contact-page-submit button:hover {
    background: #062f55;

    transform: translateY(-2px);
}


/* =========================================
   LOCATION
========================================= */

.contact-page-location-section {
    margin-top: 55px;
}

.contact-page-section-heading {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-bottom: 20px;
}

.contact-page-section-heading h2 {
    margin: 0;

    color: #092f58;

    font-family: "Poppins", sans-serif;

    font-size: 24px;
    font-weight: 700;
}

.contact-page-location-line {
    position: relative;

    width: 55px;
    height: 2px;

    background: #079db5;
}

.contact-page-location-line::after {
    content: "";

    position: absolute;

    right: -3px;
    top: 50%;

    width: 6px;
    height: 6px;

    transform: translateY(-50%);

    background: #079db5;

    border-radius: 50%;
}

.contact-page-location-line:first-child::after {
    right: auto;
    left: -3px;
}


/* =========================================
   MAP
========================================= */

.contact-page-map {
    position: relative;

    width: 100%;
    height: 390px;

    overflow: hidden;

    border: 1px solid #c9e4eb;

    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(0, 60, 90, 0.06);
}

.contact-page-map iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* =========================================
   MAP CARD
========================================= */

.contact-page-map-card {
    position: absolute;

    top: 20px;
    left: 20px;

    width: 255px;

    padding: 20px;

    background: rgba(255, 255, 255, 0.96);

    border-radius: 9px;

    box-shadow:
        0 5px 20px rgba(0, 40, 70, 0.12);
}

.contact-page-map-card h3 {
    margin: 0 0 10px;

    color: #092f58;

    font-family: "Poppins", sans-serif;

    font-size: 14px;
}

.contact-page-map-card p {
    margin: 0 0 10px;

    color: #526979;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    line-height: 1.7;
}

.contact-page-map-card a {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #079db5;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    font-weight: 600;

    text-decoration: none;
}


/* =========================================
   BOTTOM CTA
========================================= */

.contact-page-bottom-cta {
    display: grid;

    grid-template-columns: 1fr 1fr;

    margin-top: 25px;

    overflow: hidden;

    border-radius: 14px;

    background: #092f63;

    box-shadow:
        0 8px 25px rgba(0, 40, 80, 0.12);
}

.contact-page-assistance,
.contact-page-call {
    display: flex;

    align-items: center;

    gap: 20px;

    min-height: 125px;

    padding: 25px 45px;
}

.contact-page-assistance {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-page-cta-icon {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 2px solid #ffffff;

    border-radius: 50%;

    background: #ffffff;

    color: #079db5;

    font-size: 24px;
}

.contact-page-assistance h3,
.contact-page-call h3 {
    margin: 0 0 5px;

    color: #08abc1;

    font-family: "Poppins", sans-serif;

    font-size: 19px;
}

.contact-page-assistance p {
    max-width: 280px;

    margin: 0;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    line-height: 1.6;
}

.contact-page-call a {
    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 20px;

    font-weight: 700;

    text-decoration: none;
}


/* =========================================
   TABLET
   768px - 991px
========================================= */

@media (max-width: 991px) {

    .contact-page-section {
        padding: 55px 0 60px;
    }

    .contact-page-container {
        padding: 0 25px;
    }

    .contact-page-main {
        grid-template-columns: 1fr 1.4fr;

        gap: 20px;

        padding: 25px;
    }

    .contact-page-information h2,
    .contact-page-form-box h2 {
        font-size: 24px;
    }

    .contact-page-info-item {
        padding: 14px;
    }

    .contact-page-info-icon {
        width: 45px;
        height: 45px;

        flex-basis: 45px;

        font-size: 18px;
    }

    .contact-page-info-content p {
        font-size: 11px;
    }

    .contact-page-form-row {
        gap: 10px;
    }

    .contact-page-bottom-cta {
        grid-template-columns: 1fr 1fr;
    }

    .contact-page-assistance,
    .contact-page-call {
        padding: 22px 25px;
    }

}


/* =========================================
   MOBILE
   767px AND BELOW
========================================= */

@media (max-width: 767px) {

    .contact-page-section {
        padding: 45px 0 50px;
    }

    .contact-page-container {
        padding: 0 15px;
    }


    /* Intro */

    .contact-page-intro {
        margin-bottom: 30px;
    }

    .contact-page-intro h1 {
        font-size: 30px;
    }

    .contact-page-intro p {
        font-size: 13px;
    }


    /* Main */

    .contact-page-main {
        display: flex;

        flex-direction: column;

        gap: 30px;

        padding: 20px;

        border-radius: 12px;
    }


    /* Information */

    .contact-page-information,
    .contact-page-form-box {
        padding: 0;
    }

    .contact-page-information h2,
    .contact-page-form-box h2 {
        font-size: 23px;
    }

    .contact-page-info-item {
        padding: 15px;
    }

    .contact-page-info-content h3 {
        font-size: 15px;
    }

    .contact-page-info-content p {
        font-size: 12px;
    }


    /* Form */

    .contact-page-form-row {
        grid-template-columns: 1fr;

        gap: 12px;

        margin-bottom: 12px;
    }

    .contact-page-form-group {
        height: 50px;
    }

    .contact-page-message-group {
        min-height: 130px;
    }

    .contact-page-message-group textarea {
        min-height: 130px;
    }


    /* Map */

    .contact-page-location-section {
        margin-top: 40px;
    }

    .contact-page-section-heading h2 {
        font-size: 21px;
    }

    .contact-page-location-line {
        width: 35px;
    }

    .contact-page-map {
        height: 350px;
    }

    .contact-page-map-card {
        top: 15px;
        left: 15px;

        width: 220px;

        padding: 15px;
    }


    /* CTA */

    .contact-page-bottom-cta {
        grid-template-columns: 1fr;

        margin-top: 20px;
    }

    .contact-page-assistance,
    .contact-page-call {
        min-height: 105px;

        padding: 20px;
    }

    .contact-page-assistance {
        border-right: 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .contact-page-cta-icon {
        width: 50px;
        height: 50px;

        flex-basis: 50px;

        font-size: 20px;
    }

    .contact-page-assistance h3,
    .contact-page-call h3 {
        font-size: 17px;
    }

    .contact-page-call a {
        font-size: 17px;
    }

}


/* =========================================
   SMALL MOBILE
   480px AND BELOW
========================================= */

@media (max-width: 480px) {

    .contact-page-section {
        padding: 35px 0 40px;
    }

    .contact-page-container {
        padding: 0 12px;
    }


    /* Intro */

    .contact-page-intro h1 {
        font-size: 27px;
    }

    .contact-page-intro p {
        font-size: 12px;
    }


    /* Main */

    .contact-page-main {
        padding: 16px;

        gap: 25px;
    }


    /* Info */

    .contact-page-info-item {
        gap: 12px;

        padding: 13px;
    }

    .contact-page-info-icon {
        width: 43px;
        height: 43px;

        flex-basis: 43px;

        font-size: 17px;
    }

    .contact-page-info-content h3 {
        font-size: 14px;
    }

    .contact-page-info-content p {
        font-size: 11px;
    }


    /* Form */

    .contact-page-form-group {
        height: 48px;
    }

    .contact-page-input-icon,
    .contact-page-message-icon {
        width: 42px;
    }

    .contact-page-form-group input,
    .contact-page-form-group select,
    .contact-page-message-group textarea {
        font-size: 11px;
    }

    .contact-page-message-group {
        min-height: 120px;
    }

    .contact-page-message-group textarea {
        min-height: 120px;
    }

    .contact-page-submit button {
        width: 100%;

        min-width: 0;
    }


    /* Location */

    .contact-page-section-heading {
        gap: 8px;
    }

    .contact-page-section-heading h2 {
        font-size: 19px;
    }

    .contact-page-location-line {
        width: 25px;
    }

    .contact-page-map {
        height: 300px;
    }

    .contact-page-map-card {
        position: relative;

        top: auto;
        left: auto;

        width: 100%;

        border-radius: 0;

        box-shadow: none;
    }


    /* CTA */

    .contact-page-assistance,
    .contact-page-call {
        gap: 13px;

        padding: 18px;
    }

    .contact-page-cta-icon {
        width: 45px;
        height: 45px;

        flex-basis: 45px;

        font-size: 18px;
    }

    .contact-page-assistance h3,
    .contact-page-call h3 {
        font-size: 16px;
    }

    .contact-page-assistance p {
        font-size: 11px;
    }

    .contact-page-call a {
        font-size: 15px;
    }

}



/* =========================================
   PATIENT BENEFITS PAGE
========================================= */

.patient-page-section {
    width: 100%;
    padding: 0 0 60px;
    background: #ffffff;
    overflow: hidden;
}

.patient-page-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top:60px !important;
}


/* =========================================
   HERO
========================================= */

.patient-page-hero {
    position: relative;

    display: grid;
    grid-template-columns: 1fr 1fr;

    min-height: 390px;

    margin-bottom: 35px;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            #eef9fd 0%,
            #f8fcfe 45%,
            #ffffff 100%
        );
}

.patient-page-hero-content {
    position: relative;
    z-index: 2;

    padding: 38px 20px 35px 25px;
}

.patient-page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 28px;

    color: #123c62;

    font-family: "Poppins", sans-serif;
    font-size: 11px;
}

.patient-page-breadcrumb a {
    display: flex;
    align-items: center;
    gap: 6px;

    color: #123c62;

    text-decoration: none;
}

.patient-page-breadcrumb i {
    color: #079db5;
    font-size: 9px;
}

.patient-page-breadcrumb span {
    color: #173d61;
}

.patient-page-hero-content h1 {
    margin: 0 0 12px;

    color: #092f63;

    font-family: "Poppins", sans-serif;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 700;
}

.patient-page-hero-content h3 {
    margin: 0 0 15px;

    color: #079db5;

    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 700;
}

.patient-page-hero-content > p {
    max-width: 510px;

    margin: 0;

    color:  #647784;

    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   HERO IMAGE
========================================= */

.patient-page-hero-image {
    position: relative;

    min-height: 390px;
}

.patient-page-hero-image::before {
    content: "";

    position: absolute;

    z-index: 2;

    left: 0px;
    top: 0;

    width: 230px;
    height: 100%;

    background: linear-gradient(
        90deg,
        #eef9fd 0%,
        rgba(238, 249, 253, 0.85) 25%,
        rgba(238, 249, 253, 0) 100%
    );

    pointer-events: none;
}

.patient-page-hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================
   HERO FEATURES
========================================= */

.patient-page-hero-features {
    display: flex;

    align-items: center;

    margin-top: 25px;
}

.patient-page-hero-feature {
    display: flex;

    align-items: center;

    gap: 8px;

    min-height: 42px;

    padding: 0 18px;

    border-right: 1px solid #c7dfe6;
}

.patient-page-hero-feature:first-child {
    padding-left: 0;
}

.patient-page-hero-feature:last-child {
    border-right: 0;
}

.patient-page-hero-feature-icon {
    color: #079db5;

    font-size: 23px;
}

.patient-page-hero-feature span {
    color: #163c5d;

    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
}


/* =========================================
   BENEFIT CARDS GRID
========================================= */

.patient-page-benefits-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;

    margin-bottom: 45px;
}

.patient-page-benefit-card {
    position: relative;

    min-height: 260px;

    padding: 22px 25px;

    overflow: hidden;

    border: 1px solid #dceaf0;

    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 5px 18px rgba(0, 60, 100, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.patient-page-benefit-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(0, 80, 110, 0.10);
}


/* =========================================
   NUMBER
========================================= */

.patient-page-card-number {
    position: absolute;

    left: 15px;
    top: 18px;

    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #079db5;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 15px;
    font-weight: 700;
}

@media(max-width:600px){
    .patient-page-card-number {
    
    left: 10px;
   
}
}


.patient-page-benefit-content {
    padding-left: 35px;
}

.patient-page-benefit-content h2 {
    margin: 0 0 5px;

    color: #092f63;

    font-family: "Poppins", sans-serif;

    font-size: 17px;
    font-weight: 700;
}

.patient-page-card-subtitle {
    margin: 0 0 15px;

    color: #647784;

    font-family: "Poppins", sans-serif;

    font-size: 14px;
    line-height: 1.6;
}


/* =========================================
   BENEFIT INNER
========================================= */

.patient-page-benefit-inner {
    display: grid;

    grid-template-columns: 42% 58%;

    align-items: center;

    gap: 12px;
}

.patient-page-benefit-image {
    height: 135px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 8px;
}

.patient-page-benefit-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.patient-page-benefit-image > i {
    color: #079db5;

    font-size: 95px;
}

.patient-page-benefit-list h4 {
    margin: 0 0 7px;

    color: #079db5;

    font-family: "Poppins", sans-serif;

    font-size: 16px;
}

.patient-page-benefit-list ul,
.patient-page-wellness-card ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.patient-page-benefit-list li,
.patient-page-wellness-card li {
    position: relative;

    padding-left: 15px;
    margin-bottom: 5px;

    color: #647784;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.45;
}

.patient-page-benefit-list li::before,
.patient-page-wellness-card li::before {
    content: "\f058";

    position: absolute;

    left: 0;
    top: 1px;

    color: #079db5;

    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    font-size: 9px;
}


/* =========================================
   HEALTH POINTS
========================================= */

.patient-page-points-layout {
    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 15px;
}

.patient-page-points-icon {
    flex: 0 0 145px;

    height: 125px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #079db5;

    font-size: 80px;
}

.patient-page-points-text p {
    margin: 0 0 12px;

    color: #647784;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================
   REFER & CARE
========================================= */

.patient-page-refer-layout {
    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 15px;
}

.patient-page-refer-icon {
    position: relative;

    flex: 0 0 145px;

    height: 120px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #079db5;

    font-size: 65px;
}

.patient-page-refer-icon > span {
    position: absolute;

    top: 10px;
    right: 25px;

    color: #ef5d82;

    font-size: 20px;
}

.patient-page-refer-text p {
    margin: 0 0 12px;

    color: #647784;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.65;
}

.patient-page-refer-text small {
    color: #647989;

    font-family: "Poppins", sans-serif;

    font-size: 9px;
}


/* =========================================
   WELLNESS SECTION
========================================= */

.patient-page-wellness-section {
    margin-bottom: 35px;
}

.patient-page-section-heading {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-bottom: 25px;
}

.patient-page-section-heading span {
    position: relative;

    width: 48px;
    height: 2px;

    background: #079db5;
}

.patient-page-section-heading span::after {
    content: "";

    position: absolute;

    right: -4px;
    top: 50%;

    width: 6px;
    height: 6px;

    transform: translateY(-50%);

    border-radius: 50%;

    background: #079db5;
}

.patient-page-section-heading span:first-child::after {
    right: auto;
    left: -4px;
}

.patient-page-section-heading h2 {
    margin: 0;

    color: #092f63;

    font-family: "Poppins", sans-serif;

    font-size: 20px;
    font-weight: 700;

    text-align: center;
}


/* =========================================
   WELLNESS GRID
========================================= */

.patient-page-wellness-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.patient-page-wellness-card {
    position: relative;

    min-height: 335px;

    padding: 18px 18px;

    overflow: hidden;

    border: 1px solid #dceaf0;

    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 5px 18px rgba(0, 60, 100, 0.05);
}

.patient-page-wellness-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 7px;

    border-radius: 50%;

    font-size: 24px;
}

.baby-icon {
    color: #ff7182;
    background: #fff0f2;
}

.women-icon {
    color: #ef5783;
    background: #fff0f5;
}

.corporate-icon {
    color: #0786bd;
    background: #edf8fc;
}

.birthday-icon {
    color: #8a65d4;
    background: #f3effc;
}

.numbers-icon {
    color: #079db5;
    background: #edfafd;
}

.patient-page-wellness-card h3 {
    margin: 0 0 7px;

    color: #062b4c;

    font-family: "Poppins", sans-serif;

    font-size: 16px;
    font-weight: 700;
}

.patient-page-wellness-card p {
    margin: 0 0 8px;

    color: #647784;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.55;
}

.patient-page-wellness-card ul {
    max-width: 75%;
}

.patient-page-wellness-image {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 48%;
    height: 48%;

    pointer-events: none;
}

.patient-page-wellness-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    object-position: bottom right;
}


/* =========================================
   BIRTHDAY
========================================= */

.patient-page-birthday-icon {
    position: absolute;

    right: 20px;
    bottom: 15px;

    width: 90px;
    height: 90px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #8b64d2;

    font-size: 55px;
}

.patient-page-report-icon {
    position: absolute;

    right: 15px;
    bottom: 15px;

    width: 85px;
    height: 105px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    color: #079db5;

    background: #effbfe;

    font-size: 55px;
}


/* =========================================
   COMMITMENT
========================================= */

.patient-page-commitment {
    position: relative;

    display: flex;

    align-items: center;

    min-height: 175px;

    margin-top: 30px;

    padding: 25px 35px;

    overflow: hidden;

    border: 1px solid #b8dce8;

    border-radius: 13px;

    background:
        linear-gradient(
            100deg,
            #eefaff 0%,
            #f8fdff 60%,
            #e7f7fb 100%
        );
}

.patient-page-commitment-icon {
    flex: 0 0 80px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #079db5;

    font-size: 65px;
}

.patient-page-commitment-content {
    position: relative;
    z-index: 2;

    max-width: 650px;
}

.patient-page-commitment-content h2 {
    margin: 0 0 8px;

    color: #092f63;

    font-family: "Poppins", sans-serif;

    font-size: 19px;
}

.patient-page-commitment-content p {
    margin: 0 0 10px;

    color: #647784;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    line-height: 1.6;
}

.patient-page-commitment-content strong {
    color: #078fa9;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    line-height: 1.5;
}

.patient-page-commitment-image {
    position: absolute;

    right: 0;
    top: 0;

    width: 33%;
    height: 100%;
}

.patient-page-commitment-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================
   BOTTOM FEATURES
========================================= */

.patient-page-bottom-features {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    margin-top: 10px;

    border: 1px solid #d9ebf0;

    border-radius: 10px;

    background: #ffffff;
}

.patient-page-bottom-feature {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 65px;

    border-right: 1px solid #d9ebf0;
}

.patient-page-bottom-feature:last-child {
    border-right: 0;
}

.patient-page-bottom-feature i {
    color: #079db5;

    font-size: 22px;
}

.patient-page-bottom-feature span {
    color: #176083;

    font-family: "Poppins", sans-serif;

    font-size: 9px;
    font-weight: 600;

    line-height: 1.35;
}


/* =========================================
   TABLET
   768px - 991px
========================================= */

@media (max-width: 991px) {

    .patient-page-container {
        padding: 0 18px;
    }

    .patient-page-hero {
        grid-template-columns: 1fr 0.9fr;

        min-height: 350px;
    }

    .patient-page-hero-content {
        padding: 30px 10px 25px 20px;
    }

    .patient-page-hero-content h1 {
        font-size: 34px;
    }

    .patient-page-hero-content h3 {
        font-size: 13px;
    }

    .patient-page-hero-content > p {
        font-size: 11px;
    }

    .patient-page-hero-image {
        min-height: 350px;
    }

    .patient-page-hero-feature {
        padding: 0 9px;

        gap: 5px;
    }

    .patient-page-hero-feature-icon {
        font-size: 18px;
    }

    .patient-page-hero-feature span {
        font-size: 7px;
    }


    /* Benefits */

    .patient-page-benefit-card {
        padding: 20px;

        min-height: 285px;
    }

    .patient-page-benefit-content h2 {
        font-size: 15px;
    }

    .patient-page-benefit-inner {
        grid-template-columns: 38% 62%;
    }

    .patient-page-benefit-list li {
        font-size: 8.5px;
    }


    /* Wellness */

    .patient-page-wellness-grid {
        grid-template-columns: 1fr 1fr;
    }

    .patient-page-wellness-card {
        min-height: 320px;
    }

    .patient-page-wellness-card p,
    .patient-page-wellness-card li {
        font-size: 9px;
    }


    /* Commitment */

    .patient-page-commitment-content {
        max-width: 60%;
    }

    .patient-page-commitment-image {
        width: 38%;
    }


    /* Bottom */

    .patient-page-bottom-feature {
        gap: 6px;
    }

    .patient-page-bottom-feature i {
        font-size: 18px;
    }

    .patient-page-bottom-feature span {
        font-size: 7px;
    }

}


/* =========================================
   MOBILE
   767px AND BELOW
========================================= */

@media (max-width: 767px) {

    .patient-page-section {
        padding-bottom: 40px;
    }

    .patient-page-container {
        padding: 0 12px;
    }


    /* Hero */

    .patient-page-hero {
        display: flex;

        flex-direction: column;

        min-height: auto;

        margin-bottom: 25px;
    }

    .patient-page-hero-content {
        order: 1;

        padding: 25px 18px 20px;
    }

    .patient-page-hero-image {
        order: 2;

        min-height: 260px;

        height: 260px;
    }

    .patient-page-hero-image::before {
        display: none;
    }

    .patient-page-hero-content h1 {
        font-size: 30px;
    }

    .patient-page-hero-content h3 {
        font-size: 13px;
    }

    .patient-page-hero-content > p {
        max-width: 100%;

        font-size: 11px;
    }


    /* Hero Features */

    .patient-page-hero-features {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 10px;

        margin-top: 20px;
    }

    .patient-page-hero-feature {
        padding: 8px;

        border: 1px solid #d5e8ed;

        border-radius: 7px;

        background: rgba(255,255,255,0.65);
    }

    .patient-page-hero-feature:first-child {
        padding-left: 8px;
    }

    .patient-page-hero-feature-icon {
        font-size: 24px;
    }

    .patient-page-hero-feature span {
        font-size: 14px;
    }


    /* Benefits */

    .patient-page-benefits-grid {
        grid-template-columns: 1fr;

        gap: 15px;

        margin-bottom: 35px;
    }

    .patient-page-benefit-card {
        min-height: auto;

        padding: 20px 17px;
    }

    .patient-page-benefit-content {
        padding-left: 30px;
    }

    .patient-page-benefit-content h2 {
        font-size: 16px;
    }

    .patient-page-card-subtitle {
        font-size: 10px;
    }

    .patient-page-benefit-inner {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .patient-page-benefit-image {
        height: 130px;
    }

    .patient-page-benefit-image > i {
        font-size: 75px;
    }

    .patient-page-benefit-list li {
        font-size: 9.5px;
    }


    /* Points */

    .patient-page-points-layout {
        gap: 15px;
    }

    .patient-page-points-icon {
        flex: 0 0 90px;

        height: 100px;

        font-size: 60px;
    }

    .patient-page-points-text p {
        font-size: 14px;
    }


    /* Refer */

    .patient-page-refer-layout {
        gap: 15px;
    }

    .patient-page-refer-icon {
        flex: 0 0 90px;

        font-size: 55px;
    }

    .patient-page-refer-icon > span {
        right: 0;
    }

    .patient-page-refer-text p {
        font-size: 14px;
    }


    /* Wellness */

    .patient-page-section-heading {
        gap: 7px;
    }

    .patient-page-section-heading span {
        width: 28px;
    }

    .patient-page-section-heading h2 {
        font-size: 17px;
    }

    .patient-page-wellness-grid {
        grid-template-columns: 1fr;
    }

    .patient-page-wellness-card {
        min-height: 300px;

        padding: 18px;
    }

    .patient-page-wellness-card p {
        max-width: 90%;

        font-size: 10px;
    }

    .patient-page-wellness-card li {
        font-size: 9.5px;
    }


    /* Commitment */

    .patient-page-commitment {
        display: block;

        min-height: auto;

        padding: 25px 20px;
    }

    .patient-page-commitment-icon {
        width: 60px;
        height: 60px;

        margin-bottom: 10px;

        font-size: 45px;
    }

    .patient-page-commitment-content {
        max-width: 100%;
    }

    .patient-page-commitment-content h2 {
        font-size: 18px;
    }

    .patient-page-commitment-content p {
        font-size: 10px;
    }

    .patient-page-commitment-image {
        position: relative;

        width: 100%;
        height: 180px;

        margin-top: 20px;

        border-radius: 10px;

        overflow: hidden;
    }


    /* Bottom Features */

    .patient-page-bottom-features {
        grid-template-columns: 1fr 1fr;
    }

    .patient-page-bottom-feature {
        min-height: 60px;

        padding: 8px;

        border-bottom: 1px solid #d9ebf0;
    }

    .patient-page-bottom-feature:nth-child(2),
    .patient-page-bottom-feature:nth-child(4) {
        border-right: 0;
    }

    .patient-page-bottom-feature:last-child {
        grid-column: 1 / -1;

        border-bottom: 0;
    }

    .patient-page-bottom-feature i {
        font-size: 19px;
    }

    .patient-page-bottom-feature span {
        font-size: 8px;
    }

}


/* =========================================
   SMALL MOBILE
   480px AND BELOW
========================================= */

@media (max-width: 480px) {

    .patient-page-container {
        padding: 0 10px;
    }

    .patient-page-hero-content {
        padding: 22px 14px 18px;
    }

    .patient-page-breadcrumb {
        margin-bottom: 20px;

        font-size: 9px;
    }

    .patient-page-hero-content h1 {
        font-size: 27px;
    }

    .patient-page-hero-content h3 {
        font-size: 14px;
    }

    .patient-page-hero-content > p {
        font-size: 14px;

        line-height: 1.65;
    }

    .patient-page-hero-image {
        height: 220px;
        min-height: 220px;
    }


    /* Cards */

    .patient-page-benefit-card {
        padding: 17px 14px;
    }

    .patient-page-benefit-content {
        padding-left: 28px;
    }

    .patient-page-benefit-content h2 {
        font-size: 15px;
    }

    .patient-page-card-subtitle {
        font-size: 14px;
    }

    .patient-page-benefit-list li {
        font-size: 14px;
    }


    /* Wellness */

    .patient-page-wellness-card {
        min-height: 290px;
    }

    .patient-page-wellness-card h3 {
        font-size: 14px;
    }

    .patient-page-wellness-card p,
    .patient-page-wellness-card li {
        font-size: 14px;
    }


    /* Commitment */

    .patient-page-commitment-content p {
        font-size: 14px;
    }

    .patient-page-commitment-content strong {
        font-size: 14px;
    }


    /* Bottom */

    .patient-page-bottom-feature span {
        font-size: 7px;
    }

}



@media (max-width: 991px) {

    .wave-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        z-index: 9999;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .wave-navigation.active {
        display: block;
    }

    .wave-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 15px 0;
        gap:0px;
    }

    .wave-menu li {
        width: 100%;
        list-style: none;
    }

    .wave-menu li a {
        display: block;
        width: 100%;
        padding: 14px 25px;
        color: #062f52;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        border-bottom: 1px solid #eeeeee;
    }

    .wave-menu li a:hover {
        color: #08a5bd;
        background: #f5fbfd;
    }

    .wave-header {
        position: relative;
    }

    .wave-header-container {
        position: relative;
    }

    .wave-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        border: none;
        border-radius: 6px;
        background: #08a5bd;
        color: #ffffff;
        font-size: 22px;
        cursor: pointer;
        z-index: 10001;
    }

    .wave-header-button {
        display: none;
    }
}



/* =========================================
   STICKY MAIN HEADER ONLY
========================================= */

/* =========================================
   MAIN HEADER STICKY
========================================= */

.wave-header {
    width: 100%;
    background: #ffffff;
    z-index: 9999;
}

/* Header becomes fixed after scrolling */
.wave-header.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}



/* =========================================
   SPECIALIZED DIAGNOSTIC SERVICES
========================================= */

.service-page-specialized-services {
    width: 100%;
    padding: 0px 20px 60px;
    background: #f5fbfd;
}

.service-page-specialized-container {
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   SECTION HEADING
========================================= */

.service-page-specialized-heading {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.service-page-specialized-heading span {
    display: inline-block;
    margin-bottom: 12px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #0aa1bd;
}

.service-page-specialized-heading h2 {
    margin: 0 0 15px;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;

    color: #062d52;
}

.service-page-specialized-heading p {
    margin: 0;

    font-size: 16px;
    line-height: 1.5;

    color: #64748b;
    font-family: "Poppins", sans-serif;
}


/* =========================================
   SERVICES GRID
========================================= */

.service-page-specialized-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* =========================================
   SERVICE CARD
========================================= */

.service-page-specialized-card {
    display: flex;
    align-items: flex-start;

    gap: 20px;

    min-height: 180px;

    padding: 28px 25px;

    background: #ffffff;

    border: 1px solid #e3eef2;

    border-radius: 12px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.service-page-specialized-card:hover {
    transform: translateY(-6px);

    border-color: #0aa1bd;

    box-shadow: 0 15px 35px rgba(6, 45, 82, 0.10);
}


/* =========================================
   ICON
========================================= */

.service-page-specialized-icon {
    flex: 0 0 65px;

    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #0aa1bd;

    color: #ffffff;

    font-size: 27px;
}

.service-page-specialized-content {
    flex: 1;
}

.service-page-specialized-content h3 {
    margin: 2px 0 10px;

    font-size: 19px;
    line-height: 1.35;

    font-weight: 600;

    color: #062d52;
}

.service-page-specialized-content p {
    margin: 0;

    font-size: 14px;
    line-height: 1.7;
     font-family: "Poppins", sans-serif;

    color: #64748b;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .service-page-specialized-services {
        padding: 70px 20px;
    }

    .service-page-specialized-heading h2 {
        font-size: 32px;
    }

    .service-page-specialized-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 20px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .service-page-specialized-services {
        padding: 0px 15px 35px;
    }

    .service-page-specialized-heading {
        margin-bottom: 35px;
    }

    .service-page-specialized-heading span {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .service-page-specialized-heading h2 {
        font-size: 27px;
    }

    .service-page-specialized-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .service-page-specialized-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .service-page-specialized-card {
        min-height: auto;

        padding: 22px 18px;

        gap: 15px;
    }

    .service-page-specialized-icon {
        flex: 0 0 55px;

        width: 55px;
        height: 55px;

        font-size: 23px;
    }

    .service-page-specialized-content h3 {
        font-size: 17px;
    }

    .service-page-specialized-content p {
        font-size: 14px;
    }

}