:root {

    --red: #fe0002;
    --dark-red: #c91020;

    --soft-red: #fff2f3;
    --pink: #fff8f8;

    --text: #171717;
    --muted: #777;

    --border: #eeeeee;

    --white: #ffffff;

    --shadow:
        0 15px 45px rgba(40, 20, 20, .07);

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "DM Sans", sans-serif;

    color: var(--text);

    background: #fff;

    overflow-x: hidden;

}


h1,
h2,
h3,
h4,
h5 {

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

}


a {
    text-decoration: none;
}



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

.main-header {

    height: 72px;

    background: #fff;

    border-bottom:
        1px solid #f1f1f1;

    position: sticky;

    top: 0;

    z-index: 1000;

}


.main-header .navbar {

    height: 72px;

}


.med-logo {

    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--red);

}


.med-logo strong {

    display: block;

    font-size: 19px;

    line-height: 1;

}


.med-logo small {

    display: block;

    color: #999;

    font-size: 7px;

    letter-spacing: .8px;

    margin-top: 4px;

}


.logo-symbol {

    width: 36px;

    height: 36px;

    border: 2px solid var(--red);

    border-radius: 11px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

}


.navbar-nav {

    gap: 25px;

}


.nav-link {

    font-size: 15px;

    font-weight: 600;

    color: #242424 !important;

}


.nav-link:hover {

    color: var(--red) !important;

}


.btn-med {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 12px 20px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 700;

    transition: .3s;

}


.red-btn {

    background: var(--red);

    color: white;

    box-shadow:
        0 8px 22px rgba(237, 28, 46, .18);

}


.red-btn:hover {

    color: white;

    background: var(--dark-red);

    transform: translateY(-2px);

}


.navbar-toggler {

    border: 0;

    color: var(--red);

    font-size: 27px;

}
/* =========================================================
   NESTED TREATMENT MENU
========================================================= */

.dropdown-submenu {
    position: relative;
}


/* Arrow for submenu */

.dropdown-submenu > .dropdown-toggle::after {
    float: right;
    margin-top: 7px;
    transform: rotate(-90deg);
}


/* Second level menu */

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    margin-left: 2px;

    display: none;

    min-width: 190px;

    border: 0;

    border-radius: 12px;

    padding: 8px;

    background: #fff;

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


/* Desktop hover */

@media (min-width: 992px) {

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

}


/* Dropdown items */

.dropdown-menu .dropdown-item {

    padding: 10px 14px;

    border-radius: 8px;

    font-size: 14px;

    font-weight: 500;

    color: #242424;

    transition: all .25s ease;
}


.dropdown-menu .dropdown-item:hover {

    background: rgba(237, 28, 46, .08);

    color: var(--red);

    padding-left: 18px;
}

/* =========================================================
   DESKTOP DROPDOWN
========================================================= */

@media (min-width: 992px) {

    /* Main menu item */
    .navbar-nav > .nav-item.dropdown {
        position: relative;
    }


    /* Main dropdown */
    .navbar-nav > .nav-item.dropdown > .dropdown-menu {

        position: absolute !important;

        top: 100%;
        left: 0;

        margin-top: 0;

        z-index: 1050;
    }


    /* Every submenu parent */
    .navbar-nav .dropdown-menu .dropdown-submenu {
        position: relative;
    }


    /* Nested submenu */
    .navbar-nav .dropdown-menu .dropdown-submenu > .dropdown-menu {

        position: absolute !important;

        top: 0;
        left: 100%;

        margin-top: 0;
        margin-left: 2px;

        min-width: 180px;

        display: none;

        z-index: 1060;
    }


    /* Hover Urology */
    .navbar-nav .dropdown-menu .dropdown-submenu:hover > .dropdown-menu {

        display: block;
    }


    /* Remove Bootstrap's static positioning */
    .navbar-nav .dropdown-menu {
        position: absolute;
    }

}




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

.hero-section {

    min-height: 610px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            105deg,
            #ffffff 25%,
            #fff7f7 65%,
            #ffe8e9
        );
padding: 0;
}


/* =========================================================
   BACKGROUND BANNER SLIDER
========================================================= */

.hero-banner-slider {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    overflow: hidden;

    z-index: 1;

}


/* Individual slides */

.hero-banner-slide {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    background-repeat: no-repeat;

    /*
       IMPORTANT

       Keep the image proportional.
       The image is positioned to the right.
    */

    background-size: cover;

    background-position: right center;

    opacity: 0;

    transform: scale(1.02);

    transition:
        opacity 1.2s ease,
        transform 6s ease;

}


/* Active slide */

.hero-banner-slide.active {

    opacity: 1;

    transform: scale(1);

}


/* =========================================================
   IMAGE FADE

   The image technically covers the whole hero,
   but the left side is covered with white.

   This creates the effect from your screenshot:
   LEFT CONTENT → SOFT IMAGE → FULL IMAGE
========================================================= */

.hero-banner-slider::after {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 5;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,

            #ffffff 0%,

            #ffffff 20%,

            rgba(255,255,255,.99) 28%,

            rgba(255,255,255,.96) 35%,

            rgba(255,255,255,.78) 42%,

            rgba(255,255,255,.38) 48%,

            rgba(255,255,255,.08) 53%,

            rgba(255,255,255,0) 58%
        );

}


/* =========================================================
   CONTENT ABOVE IMAGE
========================================================= */

.hero-section > .container {

    position: relative;

    z-index: 10;

}


.hero-row {

    min-height: 610px;

}


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

.hero-copy {

    position: relative;

    z-index: 15;

}


.hero-small-title {

    color: var(--red);

    font-size: 1rem;

    font-weight: 800;

    letter-spacing: 2px;

}


.hero-copy h1 {

    font-size:
        clamp(48px, 5vw, 70px);

    font-weight: 800;

    letter-spacing: -3px;

    line-height: 1;

    margin:
        17px 0 18px;

}


.hero-copy h1 span {

    color: var(--red);

    display: block;

}


.hero-text {

    max-width: 500px;

    color: #666;

    font-size: 16px;

    line-height: 1.65;

    margin-bottom: 25px;

}


/* =========================================================
   SEARCH
========================================================= */

.doctor-search {

    width: 100%;

    max-width: 590px;

    height: 62px;

    background: #ffffff;

    border: 1px solid #f1dddd;

    border-radius: 15px;

    padding: 7px;

    display: flex;

    align-items: center;

    box-shadow:
        0 15px 40px rgba(180, 30, 30, .08);

}


.search-icon {

    width: 48px;

    display: flex;

    justify-content: center;

    color: var(--red);

    font-size: 19px;

}


.search-field {

    flex: 1;

}


.search-field small {

    display: block;

    color: #888;

    font-size: 12px;

}


.search-field input {

    border: 0;

    outline: 0;

    width: 100%;

    font-size: 16px;

    color: #333;

    background: transparent;

}


.search-field input::placeholder {

    color: #aaa;

}


.search-button {

    border: 0;

    background: var(--red);

    color: #ffffff;

    height: 48px;

    padding:
        0 19px;

    border-radius: 11px;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

}


.search-button i {

    margin-left: 5px;

}


/* =========================================================
   TRUST ITEMS
========================================================= */

.hero-trust {

    display: flex;

    gap: 25px;

    margin-top: 25px;

}


.trust-item {

    display: flex;

    align-items: center;

    gap: 8px;

}


.trust-icon {

    width: 31px;

    height: 31px;

    border-radius: 50%;

    background: var(--soft-red);

    color: var(--red);

    display: flex;

    align-items: center;

    justify-content: center;

}


.trust-item strong,
.trust-item span {

    display: block;

    font-size: 14px;

}


.trust-item span {

    color: #888;

}


/* =========================================================
   RIGHT HERO AREA
========================================================= */

.hero-visual {

    height: 610px;

    position: relative;

    z-index: 20;

}


/* =========================================================
   FLOATING OPTIONS
========================================================= */

.floating-options {

    position: absolute;

    right: -12px;

    top: 80px;

    z-index: 30;

    display: flex;

    flex-direction: column;

    gap: 20px;

}


.float-option {

    width: 55px;

    text-align: center;

}


.float-option div {

    width: 43px;

    height: 43px;

    margin: auto;

    border-radius: 50%;

    background: #ffffff;

    color: var(--red);

    display: flex;

    align-items: center;

    justify-content: center;

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

}


.float-option span {

    display: block;

    font-size: 11px;

    color: #000;

    font-weight: 600;

    margin-top: 4px;

}


/* =========================================================
   SIMPLE SLIDER DOTS
========================================================= */

.hero-slider-dots {

    position: absolute;

    left: 50%;

    bottom: 20px;

    transform: translateX(-50%);

    z-index: 30;

    display: flex;

    gap: 7px;

}


.hero-slider-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: rgba(255,0,0,.25);

}


.hero-slider-dot.active {

    width: 20px;

    border-radius: 10px;

    background: var(--red);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .hero-copy h1 {

        font-size: 56px;

    }


    .hero-banner-slider::after {

        background:
            linear-gradient(
                90deg,
                #ffffff 0%,
                #ffffff 25%,
                rgba(255,255,255,.98) 35%,
                rgba(255,255,255,.70) 45%,
                rgba(255,255,255,0) 60%
            );

    }


    .floating-options {

        right: 0;

    }

}


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

@media (max-width: 991px) {

    .hero-section {

        min-height: auto;

    }


    .hero-row {

        min-height: auto;

        padding-top: 70px;

        padding-bottom: 30px;

    }


    .hero-copy {

        text-align: center;

    }


    .hero-text {

        margin-left: auto;

        margin-right: auto;

    }


    .doctor-search {

        margin-left: auto;

        margin-right: auto;

    }


    .hero-trust {

        justify-content: center;

    }


    /*
       On tablet the banner moves lower.
    */

    .hero-banner-slider {

        top: 360px;

        height: 420px;

    }


    .hero-banner-slider::after {

        background:
            linear-gradient(
                to bottom,
                #ffffff 0%,
                rgba(255,255,255,.85) 20%,
                rgba(255,255,255,0) 50%
            );

    }


    .hero-visual {

        height: 420px;

        margin-top: 30px;

    }


    .floating-options {

        top: 40px;

        right: 5px;

    }

}


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

@media (max-width: 575px) {

    .hero-row {

        padding-top: 45px;

    }


    .hero-small-title {

        font-size: 11px;

        letter-spacing: 1.3px;

    }


    .hero-copy h1 {

        font-size: 45px;

        letter-spacing: -2px;

    }


    .hero-text {

        font-size: 14px;

        padding: 0 10px;

    }


    .doctor-search {

        height: auto;

        min-height: 60px;

        padding: 6px;

    }


    .search-icon {

        width: 35px;

    }


    .search-field small {

        font-size: 10px;

    }


    .search-field input {

        font-size: 12px;

    }


    .search-button {

        height: 45px;

        padding: 0 12px;

        font-size: 11px;

    }


    .hero-trust {

        gap: 12px;

        flex-wrap: wrap;

    }


    .trust-item strong,
    .trust-item span {

        font-size: 11px;

    }


    .hero-banner-slider {

        top: 390px;

        height: 360px;

    }


    .hero-visual {

        height: 360px;

    }


    .floating-options {

        right: 0;

        top: 25px;

        gap: 10px;

    }


    .float-option {

        width: 45px;

    }


    .float-option div {

        width: 36px;

        height: 36px;

    }


    .float-option span {

        font-size: 8px;

    }

}

/* =========================================================
SECTIONS
========================================================= */

section {

    padding: 60px 0;

}


.section-heading span,
.section-title-row > div > span {

    color: var(--red);

    font-size: 1rem;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.section-heading h2,
.section-title-row h2 {

    font-size: 3.2rem;

    font-weight: 700;

    margin: 8px 0;

}


.section-heading h2 strong,
.section-title-row h2 strong {

    color: var(--red);

}


.section-heading p,
.section-title-row p {

    color: #888;

    font-size: 1rem;

}


/* =========================================================
CONCERNS
========================================================= */

.concern-section {

    background: #fffafa;

}


.concern-card {

    height: 130px;

    background: white;

    border:
        1px solid #f2eaea;

    border-radius: 15px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    transition: .3s;

}


.concern-card:hover {

    transform:
        translateY(-7px);

    box-shadow: var(--shadow);

    border-color:
        #ffc9cd;

}


.concern-icon {

    width: 48px;

    height: 48px;

    background: var(--soft-red);

    border-radius: 15px;

    color: var(--red);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    margin-bottom: 9px;

}


.concern-card h5 {

    font-size: 14px;

    text-align: center;

    margin: 0;
	color: #333;

}


.view-all {

    margin-top: 17px;

}


.view-all a {

    color: var(--red);

    font-size: 16px;

    font-weight: 700;

}


/* =========================================================
MATCH
========================================================= */

.match-section {

    padding-top: 0;

}


.doctor-match {

    padding: 30px 25px;

    background:
        linear-gradient(
            110deg,
            #fff7f7,
            white
        );

    border:
        1px solid #f3dddd;

    border-radius: 25px;

}


.match-copy > span {

    color: var(--red);

    font-size: 1rem;

    font-weight: 800;

}


.match-copy h2 {

    font-size: 3rem;

    margin: 7px 0;

}


.match-copy h2 strong {

    color: var(--red);

}


.match-copy p {

    color: #888;

    font-size: 1rem;

    line-height: 1.6;

    max-width: 300px;

}


.match-flow {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 45px;

}


.match-step {

    text-align: center;

    width: 160px;

    position: relative;

}


.match-step > small {

    display: inline-flex;

    width: 32px;

    height: 32px;

    border-radius: 50%;

    background: var(--soft-red);

    color: var(--red);

    align-items: center;

    justify-content: center;

    font-size: 14px;

    font-weight: 800;

}


.match-circle {

    width: 65px;

    height: 65px;

    margin: 7px auto;

    background: white;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--red);

    font-size: 23px;

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

}


.match-step strong,
.match-step span {

    display: block;

}


.match-step strong {

    font-size: 16px;

}


.match-step span {

    color: #999;

    font-size: 15px;

}


.match-arrow {

    color: #f1a6aa;

    font-size: 22px;

}


/* =========================================================
DOCTORS
========================================================= */

.section-title-row {

    display: flex;

    align-items: end;

    justify-content: space-between;

    margin-bottom: 25px;

}


.section-title-row > a {

    color: #333;

    font-size: 15px;

    font-weight: 700;

}


.section-title-row > a i {

    color: var(--red);

}


.doctor-card {

    background: white;

    border:
        1px solid #eee;

    border-radius: 17px;

    overflow: hidden;

    transition: .3s;

}


.doctor-card:hover {

    transform:
        translateY(-7px);

    box-shadow: var(--shadow);

}


.doctor-image {

    height: 210px;

    background:
        linear-gradient(
            145deg,
            #ffe6e7,
            #f3f5f6
        );

    overflow: hidden;

}


.doctor-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;
 object-position: top;
}


.doctor-info {

    padding: 13px;

}


.doctor-info h4 {

    font-size: 16px;

    margin-bottom: 4px;

}


.doctor-info > span {

    display: block;

    color: var(--red);

    font-size: 15px;

    font-weight: 700;

}


.doctor-info > small {

    display: block;

    color: #888;

    font-size: 15px;

    margin: 3px 0 10px;

}


.doctor-buttons {

    display: flex;

    gap: 5px;

}


.doctor-buttons a {

    flex: 1;

    text-align: center;

    padding: 7px 3px;

    border-radius: 20px;

    border: 1px solid var(--red);

    color: #555;

    font-size: 12px;

    font-weight: 700;

}


.doctor-buttons a.active {

    background: var(--red);

    color: white;

    border-color: var(--red);

}


/* =========================================================
JOURNEY
========================================================= */

.journey-section {

    background:
        linear-gradient(
            180deg,
            #fffafa,
            #fff
        );

}


.journey-line {

    max-width: 900px;

    margin: 45px auto 0;

    display: flex;

    justify-content: space-between;

    position: relative;

}


.journey-line:before {

    content: "";

    position: absolute;

    top: 27px;

    left: 10%;

    right: 10%;

    height: 1px;

    background: #f5c4c7;

}


.journey-item {

    position: relative;

    z-index: 2;

    text-align: center;

    width: 140px;

}


.journey-item > div {

    width: 55px;

    height: 55px;

    background: white;

    border:
        1px solid #ffd0d3;

    color: var(--red);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: auto auto 10px;

    font-size: 20px;

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

}


.journey-item strong,
.journey-item small {

    display: block;

}


.journey-item strong {

    font-size: 15px;

}


.journey-item small {

    color: #999;

    font-size: 14px;

    margin-top: 3px;

}


/* =========================================================
BEYOND
========================================================= */

.beyond-section {

    padding-top: 45px;

}


.beyond-section h2 {

    font-size: 2.8rem;

    line-height: 1.2;

}


.beyond-section h2 strong {

    color: var(--red);

}


.section-mini {

    color: var(--red);

    font-size: 1rem;

    font-weight: 800;

}


.beyond-section p {

    color: #888;

    font-size: 1rem;
 

    line-height: 1.6;

}


.learn-more {

    color: var(--red);

    font-size: 15px;

    font-weight: 700;

}


.care-flow {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

}


.care-flow > div {

    text-align: center;

    width: 100px;

}


.care-flow > div > i {

    display: flex;

    width: 58px;

    height: 58px;

    margin: auto auto 8px;

    align-items: center;

    justify-content: center;

    background: var(--soft-red);

    color: var(--red);

    border-radius: 50%;

    font-size: 22px;

}


.care-flow > div span {

    display: block;

    font-size: 14px;

    font-weight: 600;

}


.care-flow > i {

    color: #aaa;

}


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

.stats-section {

    background:
        linear-gradient(
            100deg,
            #dc1423,
            #f12738
        );

    color: white;

    padding: 27px 0;

    border-radius: 14px;

    margin:
        0 auto;

    width:
        min(96%, 1280px);

}


.stat-item {

    text-align: center;

    border-right:
        1px solid rgba(255,255,255,.3);

}


.stat-item:last-child {

    border: 0;

}


.stat-item strong {

    display: block;

    font-family:
        "Plus Jakarta Sans";

    font-size: 45px;

    line-height: 1;

}


.stat-item span {

    display: block;

    margin-top: 16px;

    font-size: 14px;

}


/* =========================================================
INSIGHTS
========================================================= */

.insight-card {

    height: 100%;

    padding: 20px;

    border:
        1px solid #eee;

    border-radius: 17px;

    background: white;

    transition: .3s;

}


.insight-card:hover {

    transform:
        translateY(-5px);

    box-shadow: var(--shadow);

}


.quote {

    color: var(--red);

    font-family:
        Georgia;

    font-size: 38px;

    line-height: 20px;

}


.insight-card > p {

    font-size: 16px;

    line-height: 1.5;

    min-height: 55px;

}


.mini-doctor {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 12px;

}


.mini-doctor img {

    width: 35px;

    height: 35px;

    border-radius: 50%;

    object-fit: cover;

}


.mini-doctor strong,
.mini-doctor small {

    display: block;

}


.mini-doctor strong {

    font-size: 14px;

}


.mini-doctor small {

    font-size: 12px;

    color: #999;

}


.insight-card > a {

    color: var(--red);

    font-size: 13px;

    font-weight: 700;

}


/* =========================================================
HEALTH EXPLORER
========================================================= */

.explorer-section {

    padding-top: 50px;

}


.health-explorer {

    min-height: 390px;

    background:
        linear-gradient(
            110deg,
            #f7fbfc,
            #fff5f5
        );

    border-radius: 25px;

    display: flex;

    overflow: hidden;

}


.explorer-image {

    width: 45%;

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

}


.explorer-image > img {

    width: 90%;

    height: 100%;

    object-fit: contain;

}


.body-hotspot {

    position: absolute;

    width: 15px;

    height: 15px;

    border-radius: 50%;

    border: 2px solid white;

    background: var(--red);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow:
        0 0 0 7px rgba(237,28,46,.12);

    animation:
        hotspotPulse 2s infinite;

}


.hotspot-head {

    top: 22%;

    right: 23%;

}


.hotspot-chest {

    top: 46%;

    right: 49%;

}


.hotspot-joint {

    top: 65%;

    right: 49%;

}


@keyframes hotspotPulse {

    0%,
    100% {

        box-shadow:
            0 0 0 7px rgba(237,28,46,.12);

    }

    50% {

        box-shadow:
            0 0 0 13px rgba(237,28,46,.04);

    }

}


.explorer-content {

    width: 55%;

    padding: 50px 45px;

}


.explorer-content > span {

    color: var(--red);

    font-size: 1rem;

    font-weight: 800;

}


.explorer-content h2 {

    font-size: 3rem;

    margin: 8px 0;

}


.explorer-content h2 strong {

    color: var(--red);
	    font-size: 3rem;

}


.explorer-content > p {

    color: #888;

    font-size: 1rem;

    line-height: 1.6;

    max-width: 450px;

}


.explore-grid {

    display: grid;

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

    gap: 9px;

    margin-top: 20px;

}


.explore-item {

    padding: 11px;

    background: white;

    border:
        1px solid #eee;

    border-radius: 10px;

    display: flex;

    align-items: center;

    gap: 9px;

    transition: .25s;

}


.explore-item:hover {

    border-color:
        #ffc3c7;

    transform:
        translateX(3px);

}


.explore-item > i {

    color: var(--red);

    font-size: 17px;

}


.explore-item strong,
.explore-item small {

    display: block;

}


.explore-item strong {

    color: #333;

    font-size: 16px;

}


.explore-item small {

    color: #999;

    font-size: 14px;

}


/* =========================================================
STORIES
========================================================= */

.stories-section {

    background: #fffafa;

}


.story-card {

    background: white;

    border:
        1px solid #eee;

    border-radius: 17px;

    padding: 9px;

    display: flex;

    gap: 12px;

}


.story-card img {

    width: 120px;

    height: 125px;

    object-fit: cover;

    border-radius: 12px;

}


.story-card h4 {

    font-size: 16px;

    line-height: 1.5;

    margin:
        10px 0;

}


.story-card strong,
.story-card small {

    display: block;

}


.story-card strong {

    font-size: 14px;

}


.story-card small {

    color: #999;

    font-size: 12px;

}


/* =========================================================
LIBRARY
========================================================= */

.library-section {

    padding:
        55px 0;

}


.library-section > .container
> .row > .col-lg-3 > span {

    color: var(--red);

    font-size: 1rem;

    font-weight: 800;

}


.library-section h2 {

    font-size: 2.6rem;

    margin: 7px 0;

}


.library-section h2 strong {

    color: var(--red);

}


.library-section p {

    color: #888;

    font-size: 1rem;

}


.library-section > .container
> .row > .col-lg-3 > a {

    color: var(--red);

    font-size: 15px;

    font-weight: 700;

}


.library-grid {

    display:
        grid;

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

    gap: 9px;

}


.library-card {

    height: 115px;

    border:
        1px solid #eee;

    border-radius: 14px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    transition: .3s;

}


.library-card:hover {

    transform:
        translateY(-5px);

    box-shadow: var(--shadow);

}


.library-card i {

    color: var(--red);

    font-size: 23px;

    margin-bottom: 9px;

}


.library-card strong {

    color: #333;

    font-size: 14px;

}


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

.appointment-section {

    padding-top: 15px;

    padding-bottom: 60px;

}


.appointment-box {

    background:
        linear-gradient(
            105deg,
            #dc1524,
            #f12a3b
        );

    border-radius: 22px;

    padding: 35px;

    color: white;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    overflow: hidden;

}


.appointment-box > div:first-child {

    flex: 1;

}


.appointment-box span {

    font-size: 1rem;

    font-weight: 800;

}


.appointment-box h2 {

    font-size: 2.8rem;

    margin:
        8px 0;

}


.appointment-box p {

    opacity: .85;

    font-size: 1rem;

}


.appointment-buttons {

    display: flex;

    gap: 8px;

    margin-top: 18px;

}


.white-btn {

    background: white;

    color: var(--red);

}


.white-btn:hover {

    color: var(--dark-red);

}


.outline-white-btn {

    color: white;

    border:
        1px solid rgba(255,255,255,.7);

}


.consultation-options {

    background: rgba(255,255,255,.08);

    border-radius: 15px;

    padding: 15px;

    display: flex;

    gap: 20px;

}


.consultation-options > div {

    width: 155px;

    text-align: center;

}


.consultation-options i {

    display: block;

    font-size: 30px;

    margin-bottom: 7px;

}


.consultation-options strong,
.consultation-options small {

    display: block;

}


.consultation-options strong {

    font-size: 1rem;

}


.consultation-options small {

    opacity: .65;

    font-size: 0.75rem;

    margin-top: 4px;

}


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

footer {

    background:
        #242424 !important;

    color: white;

    padding:
        50px 0 20px;

    border-radius:
        18px 18px 0 0;

}


.footer-logo {

    font-size: 21px;

    font-weight: 800;

    margin-bottom: 12px;

}


.footer-logo i {

    margin-right: 5px;

}


footer p {

    color: rgba(255,255,255,.7);

    font-size: 1rem;

    line-height: 1.7;

    max-width: 220px;

}


footer h5 {

    font-size: 20px;

    margin-bottom: 15px;

}


footer a {

    display: block;

    color:
        rgba(255,255,255,.75);

    font-size: 16px;

    margin-bottom: 9px;

}


footer a:hover {

    color: white;

}


.socials {

    display: flex;

    gap: 8px;

}


.socials a {

    width: 25px;

    height: 25px;

    border:
        1px solid rgba(255,255,255,.3);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

}


.socials a i {

    font-size: 10px;

}


.newsletter {

    display: flex;

    background: white;

    border-radius: 50px;

    padding: 3px;

    margin-top: 15px;

}


.newsletter input {

    flex: 1;

    border: 0;

    outline: 0;

    padding:
        8px 12px;

    font-size: 14px;

    border-radius: 50px;

}


.newsletter button {

    width: 36px;

    height: 36px;

    border: 0;

    background: var(--red);

    color: white;

    border-radius: 50%;

}


.footer-bottom {

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

    margin-top: 35px;

    padding-top: 15px;

    display: flex;

    justify-content: space-between;

    color:
        rgba(255,255,255,.55);

    font-size: 8px;

}


/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1199px) {

    .navbar-nav {

        gap: 13px;

    }

    .hero-family {

        right: 25px;

    }

    .floating-options {

        right: -25px;

    }

}


@media(max-width:991px) {

    .main-header {

        height: 68px;

    }

    .main-header .navbar {

        height: 68px;

    }


    .navbar-collapse {

        background: white;

        padding:
            20px;

        border-radius:
            0 0 15px 15px;

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

    }


    .navbar-nav {

        gap: 3px;

    }


    .hero-section {

        min-height:
            auto;

    }


    .hero-row {

        min-height:
            auto;

        padding-top:
            65px;

        padding-bottom:
            0;

    }


    .hero-visual {

        height:
            480px;

        margin-top:
            20px;

    }


    .hero-family {

        right:
            50%;

        transform:
            translateX(50%);

    }


    .hero-family:hover {

        transform:
            translateX(50%) translateY(-5px);

    }


    .floating-options {

        right:
            10px;

    }


    .hero-notification {

        left:
            30px;

    }


    .match-flow {

        margin-top:
            25px;

    }


    .health-explorer {

        flex-direction:
            column;

    }


    .explorer-image,
    .explorer-content {

        width:
            100%;

    }


    .explorer-image {

        height:
            330px;

    }


    .explorer-content {

        padding:
            35px;

    }


    .library-grid {

        margin-top:
            30px;

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

    }


    .appointment-box {

        flex-direction:
            column;

        align-items:
            flex-start;

    }


    .consultation-options {

        width:
            100%;

        justify-content:
            space-around;

    }

}


@media(max-width:767px) {

    section {

        padding:
            55px 0;

    }


    .hero-copy h1 {

        font-size:
            48px;

    }


    .doctor-search {

        height:
            auto;

        min-height:
            58px;

    }


    .search-button {

        padding:
            0 13px;

    }


    .hero-trust {

        gap:
            12px;

        flex-wrap:
            wrap;

    }


    .hero-visual {

        height:
            420px;

    }


    .ring-one {

        width:
            350px;

        height:
            350px;

        right:
            50%;

        transform:
            translateX(50%);

    }


    .ring-two {

        width:
            275px;

        height:
            275px;

        right:
            50%;

        transform:
            translateX(50%);

        top:
            77px;

    }


    .medical-cross {

        right:
            50%;

        transform:
            translateX(50%);

        top:
            150px;

    }


    .hero-family {

        width:
            280px;

        height:
            300px;

        right:
            50%;

        transform:
            translateX(50%);

    }


    .floating-options {

        right:
            -5px;

        top:
            65px;

    }


    .hero-notification {

        left:
            5px;

        bottom:
            45px;

    }


    .section-title-row {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            12px;

    }


    .match-flow {

        gap:
            8px;

    }


    .match-step {

        width:
            100px;

    }


    .match-arrow {

        font-size:
            15px;

    }


    .journey-line {

        flex-direction:
            column;

        gap:
            25px;

    }


    .journey-line:before {

        left:
            27px;

        top:
            25px;

        bottom:
            25px;

        width:
            1px;

        height:
            auto;

    }


    .journey-item {

        width:
            100%;

        display:
            flex;

        align-items:
            center;

        text-align:
            left;

        gap:
            15px;

    }


    .journey-item > div {

        flex:
            0 0 55px;

        margin:
            0;

    }


    .care-flow {

        flex-wrap:
            wrap;

        margin-top:
            35px;

    }


    .care-flow > i {

        display:
            none;

    }


    .care-flow > div {

        width:
            28%;

    }


    .stat-item strong {

        font-size:
            35px;

    }


    .stat-item {

        border:
            0;

        margin-bottom:
            15px;

    }


    .story-card {

        min-height:
            150px;

    }


    .library-grid {

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

    }


    .consultation-options {

        flex-wrap:
            wrap;

    }


    .consultation-options > div {

        width:
            40%;

    }


    .footer-bottom {

        flex-direction:
            column;

        gap:
            7px;

    }

}


@media(max-width:480px) {

    .hero-copy h1 {

        font-size:
            40px;

        letter-spacing:
            -2px;

    }


    .doctor-search {

        flex-wrap:
            wrap;

        padding:
            8px;

    }


    .search-field {

        min-width:
            60%;

    }


    .search-button {

        width:
            100%;

        margin-top:
            7px;

        height:
            42px;

    }


    .hero-visual {

        height:
            370px;

    }


    .hero-family {

        width:
            240px;

        height:
            260px;

    }


    .floating-options {

        transform:
            scale(.8);

        transform-origin:
            right top;

    }


    .hero-notification {

        transform:
            scale(.8);

        transform-origin:
            left bottom;

    }


    .match-flow {

        flex-wrap:
            wrap;

        justify-content:
            space-around;

    }


    .match-arrow {

        display:
            none;

    }


    .match-step {

        width:
            45%;

    }


    .explore-grid {

        grid-template-columns:
            1fr;

    }


    .library-grid {

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

    }


    .appointment-box {

        padding:
            25px 20px;

    }


    .appointment-buttons {

        flex-direction:
            column;

    }


    .consultation-options {

        gap:
            10px;

    }

}

.health-icon svg {
    width: 42px;
    height: 42px;
    color: #c92535;
    transition: all 0.3s ease;
}

.health-icon:hover svg {
    transform: scale(1.1);
}
 
.nav-active{
    color: #fe0002 !important;
}
 
 
 
 
 
 
 
 
 
 
/*29-08-2026 */

 /* =========================================================
   NEW MEGA MENU
========================================================= */

.newmega_header {
    position: relative;
    width: 100%;
    background: #ffffff;
    z-index: 9999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.newmega_container {
    width: min(1400px, calc(100% - 50px));
    margin: 0 auto;

    min-height: 88px;

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

    position: relative;
}


/* =========================================================
   LOGO
========================================================= */

.newmega_logo {
    flex: 0 0 auto;
    position: relative;
    z-index: 20;
}

.newmega_logo a {
    display: inline-flex;
    align-items: center;

    text-decoration: none;
}

.newmega_logo img {
    max-width: 190px;
    max-height: 65px;
    width: auto;
    height: auto;
}


/* =========================================================
   NAV WRAPPER
========================================================= */

.newmega_nav_wrap {
    display: flex;
    align-items: center;
    gap: 28px;
}


/* =========================================================
   MAIN NAV
========================================================= */

.newmega_nav {
    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;

    list-style: none;
}

.newmega_nav > li {
    position: static;
    list-style: none;
}

.newmega_nav > li > a {
    position: relative;

    display: flex;
    align-items: center;

    padding: 34px 16px;

    color: #1d2630;

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

    text-decoration: none;

    transition: color 0.25s ease;
}


/* underline */

.newmega_nav > li > a::before {
    content: "";

    position: absolute;

    left: 16px;
    right: 16px;
    bottom: 22px;

    height: 2px;

    background: #e53935;

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.25s ease;
}

.newmega_nav > li:hover > a::before,
.newmega_nav > li.current-menu-item > a::before,
.newmega_nav > li.current-menu-parent > a::before {
    transform: scaleX(1);
}

.newmega_nav > li:hover > a {
    color: #e53935;
}


/* =========================================================
   CHILD ARROW
========================================================= */

.newmega_nav li.menu-item-has-children > a {
    gap: 8px;
}

.newmega_nav li.menu-item-has-children > a::after {
    content: "\f282";

    font-family: "bootstrap-icons";

    font-size: 10px;

    transition: transform 0.25s ease;
}

.newmega_nav li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}


/* =========================================================
   MEGA MENU BASE
========================================================= */

.newmega_nav > li.menu-item-has-children > .sub-menu {

    position: absolute;

    top: 100%;
    left: 50%;

    width: min(1200px, calc(100vw - 50px));

    transform: translate(-50%, 15px);

    margin: 0;
    padding: 0;

    list-style: none;

    background: #ffffff;

    border-radius: 0 0 18px 18px;

    box-shadow:
        0 25px 70px rgba(16, 24, 40, 0.14),
        0 5px 20px rgba(16, 24, 40, 0.05);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;

    z-index: 99999;

    overflow: hidden;
}


/* =========================================================
   SHOW MEGA MENU
========================================================= */

.newmega_nav > li.menu-item-has-children:hover > .sub-menu {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform: translate(-50%, 0);
}


/* =========================================================
   MEGA MENU INNER
   Works with custom walker if it creates normal nested ULs
========================================================= */

.newmega_nav > li.menu-item-has-children > .sub-menu {

    display: grid;

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

    gap: 0;

    padding: 30px;
}


/* =========================================================
   FIRST LEVEL MEGA ITEMS
========================================================= */

.newmega_nav > li.menu-item-has-children > .sub-menu > li {

    position: relative;

    list-style: none;

    padding: 0 25px;

    border-right: 1px solid #eeeeee;
}

.newmega_nav > li.menu-item-has-children > .sub-menu > li:first-child {
    padding-left: 10px;
}

.newmega_nav > li.menu-item-has-children > .sub-menu > li:last-child {
    border-right: 0;
}


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

.newmega_nav > li.menu-item-has-children > .sub-menu > li > a {

    display: flex;
    align-items: center;

    margin-bottom: 15px;

    color: #17212b;

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

    line-height: 1.3;

    text-decoration: none;

    transition: color 0.2s ease;
}

.newmega_nav > li.menu-item-has-children > .sub-menu > li > a:hover {
    color: #e53935;
}


/* =========================================================
   CATEGORY ICON
========================================================= */

.newmega_nav > li.menu-item-has-children > .sub-menu > li > a::before {

    content: "\f4f0";

    font-family: "bootstrap-icons";

    display: inline-flex;

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

    width: 38px;
    height: 38px;

    margin-right: 11px;

    border-radius: 10px;

    background: #fff1f1;

    color: #e53935;

    font-size: 17px;

    flex-shrink: 0;
}


/* =========================================================
   SECOND LEVEL
========================================================= */

.newmega_nav > li.menu-item-has-children
> .sub-menu
> li
> .sub-menu {

    display: block;

    margin: 0;
    padding: 0;

    list-style: none;
}

.newmega_nav > li.menu-item-has-children
> .sub-menu
> li
> .sub-menu
> li {

    list-style: none;
}


/* =========================================================
   SUB MENU LINKS
========================================================= */

.newmega_nav > li.menu-item-has-children
> .sub-menu
> li
> .sub-menu
> li
> a {

    position: relative;

    display: flex;
    align-items: center;

    padding: 8px 0 8px 18px;

    color: #626b75;

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

    line-height: 1.4;

    text-decoration: none;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}


/* small arrow */

.newmega_nav > li.menu-item-has-children
> .sub-menu
> li
> .sub-menu
> li
> a::before {

    content: "\f285";

    font-family: "bootstrap-icons";

    position: absolute;

    left: 0;

    font-size: 9px;

    color: #c4c9ce;

    transition: color 0.2s ease;
}


.newmega_nav > li.menu-item-has-children
> .sub-menu
> li
> .sub-menu
> li
> a:hover {

    color: #e53935;

    padding-left: 23px;
}


.newmega_nav > li.menu-item-has-children
> .sub-menu
> li
> .sub-menu
> li
> a:hover::before {

    color: #e53935;
}


/* =========================================================
   THIRD LEVEL
========================================================= */

.newmega_nav > li.menu-item-has-children
> .sub-menu
> li
> .sub-menu
> li.menu-item-has-children {

    position: relative;
}

.newmega_nav > li.menu-item-has-children
> .sub-menu
> li
> .sub-menu
> li.menu-item-has-children > .sub-menu {

    display: none;
}


/* =========================================================
   FEATURED MEGA MENU AREA
========================================================= */

.newmega_nav > li.menu-item-has-children
> .sub-menu::after {

    content: "";

    grid-column: 1 / -1;

    height: 1px;

    margin-top: 25px;

    background: #eeeeee;
}


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

.newmega_cta {

    display: inline-flex;

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

    gap: 10px;

    padding: 13px 20px;

    min-height: 48px;

    background: #e53935;

    color: #ffffff;

    border-radius: 8px;

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

    text-decoration: none;

    white-space: nowrap;

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

.newmega_cta:hover {

    color: #ffffff;

    background: #c92d2d;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(229, 57, 53, 0.25);
}

.newmega_cta i {
    font-size: 15px;

    transition: transform 0.2s ease;
}

.newmega_cta:hover i {
    transform: translate(3px, -3px);
}


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

.newmega_toggle {

    display: none;

    width: 46px;
    height: 46px;

    padding: 10px;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.newmega_toggle span {

    display: block;

    width: 25px;
    height: 2px;

    margin: 5px auto;

    background: #222;

    transition: all 0.25s ease;
}


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

@media (max-width: 1200px) {

    .newmega_container {
        width: min(100% - 30px, 1100px);
    }

    .newmega_nav > li > a {
        padding-left: 10px;
        padding-right: 10px;
    }

    .newmega_nav > li > a::before {
        left: 10px;
        right: 10px;
    }

    .newmega_nav_wrap {
        gap: 15px;
    }

    .newmega_cta {
        padding: 12px 15px;
    }

    .newmega_nav > li.menu-item-has-children > .sub-menu {
        width: min(1100px, calc(100vw - 30px));
    }
}


/* =========================================================
   MOBILE / TABLET NAV
========================================================= */

@media (max-width: 991px) {

    .newmega_header {
        position: relative;
    }

    .newmega_container {

        min-height: 75px;

        width: calc(100% - 30px);
    }


    .newmega_logo img {
        max-width: 155px;
        max-height: 55px;
    }


    .newmega_toggle {
        display: block;

        position: relative;

        z-index: 100001;
    }


    .newmega_nav_wrap {

        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        display: block;

        padding: 15px;

        background: #ffffff;

        border-top: 1px solid #eeeeee;

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

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        pointer-events: none;

        transition: all 0.25s ease;

        max-height: calc(100vh - 75px);

        overflow-y: auto;
    }


    .newmega_header.newmega_menu_open
    .newmega_nav_wrap {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

        pointer-events: auto;
    }


    .newmega_nav {

        display: block;

        width: 100%;
    }


    .newmega_nav > li {

        width: 100%;

        border-bottom: 1px solid #eeeeee;
    }


    .newmega_nav > li > a {

        width: 100%;

        padding: 15px 5px;

        justify-content: space-between;
    }


    .newmega_nav > li > a::before {
        display: none;
    }


    /* =====================================================
       MOBILE MEGA MENU
    ===================================================== */

    .newmega_nav > li.menu-item-has-children > .sub-menu {

        position: static;

        width: 100%;

        display: none;

        grid-template-columns: 1fr;

        gap: 0;

        padding: 5px 0 15px;

        background: #fafafa;

        border-radius: 0;

        box-shadow: none;

        transform: none;

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        overflow: visible;
    }


    .newmega_nav > li.newmega_submenu_open
    > .sub-menu {

        display: grid;
    }


    .newmega_nav > li.menu-item-has-children
    > .sub-menu
    > li {

        padding: 12px 10px;

        border-right: 0;

        border-bottom: 1px solid #eeeeee;
    }


    .newmega_nav > li.menu-item-has-children
    > .sub-menu
    > li:first-child {

        padding-left: 10px;
    }


    .newmega_nav > li.menu-item-has-children
    > .sub-menu
    > li:last-child {

        border-bottom: 0;
    }


    .newmega_nav > li.menu-item-has-children
    > .sub-menu
    > li
    > a {

        margin-bottom: 8px;
    }


    .newmega_nav > li.menu-item-has-children
    > .sub-menu
    > li
    > .sub-menu {

        display: block;
    }


    .newmega_nav > li.menu-item-has-children
    > .sub-menu
    > li
    > .sub-menu
    > li
    > a {

        padding: 8px 0 8px 20px;
    }


    .newmega_nav > li.menu-item-has-children
    > .sub-menu::after {

        display: none;
    }


    .newmega_cta {

        width: 100%;

        margin-top: 15px;

        min-height: 48px;
    }


    /* hamburger */

    .newmega_header.newmega_menu_open
    .newmega_toggle span:nth-child(1) {

        transform: translateY(7px) rotate(45deg);
    }

    .newmega_header.newmega_menu_open
    .newmega_toggle span:nth-child(2) {

        opacity: 0;
    }

    .newmega_header.newmega_menu_open
    .newmega_toggle span:nth-child(3) {

        transform: translateY(-7px) rotate(-45deg);
    }

}


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

@media (max-width: 575px) {

    .newmega_container {
        width: calc(100% - 20px);
    }

    .newmega_logo img {
        max-width: 135px;
    }

    .newmega_nav_wrap {
        padding: 12px;
    }

}
 
 
.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* DESKTOP */
.consultation-left {
    grid-column: 1;
    grid-row: 1;
}

.consultation-right {
    grid-column: 2;
    grid-row: 1;
}


/* MOBILE */
@media (max-width: 767px) {

    .consultation-content {
        grid-template-columns: 1fr;
    }

    .consultation-right {
        grid-column: 1;
        grid-row: 1;
    }

    .consultation-left {
        grid-column: 1;
        grid-row: 2;
    }

}
 
 .whatsAppi {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}
 
 .callnow {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 130px;
    right: 40px;
    background-color: #f66050;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    line-height: 67px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    animation: shake-animation 4.72s ease infinite;
    transform-origin: 50% 50%;
}
 
 
 
 
 
 
 
 
 
 
 
 
 