/* ================= HEADER ================= */
.red-hedr {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;



    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);


    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

.red-hedr#mainHeader {
    font-family: 'Manrope', sans-serif !important;
}

a {
    text-decoration: none;
}


.red-hedr__inner {
    height: 64px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ================= LOGO ================= */
.red-hedr__logo {
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
}

.red-hedr__logo span {
    color: #ff2d2d;
}

/* ================= NAV DESKTOP ================= */
.red-hedr__nav {
    display: flex;
    align-items: center;
    gap: 80px;
}

.red-hedr__nav-item {
    position: relative;
}

.red-hedr__nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 200;
    display: block;
    padding: 20px 0;
    cursor: pointer;
    transition: color 0.3s;
    font-size: 16px;
}

.red-hedr__nav-link:hover {
    color: #fff;
}

/* ================= MEGA MENU ================= */
.red-hedr__mega {
    position: fixed;
    left: 0;
    right: 0;
    top: 64px;

    background-color: #212126;
    background-image: url("./megaMenuBg.jpg");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
    /* KEY FIX */

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 80vh;
    overflow-y: auto;
}



.red-hedr__nav-item:hover .red-hedr__mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* When nav is hovered — ONLY if NOT light-bg */
.red-hedr:not(.light-bg):has(.red-hedr__nav-item:hover) {
    background-color: #212126;
}


.red-hedr__mega-inner {
    max-width: 90%;
    margin: 0 auto;
    padding: 40px 20px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;

    justify-content: center;
    /* centers when items < full row */
    position: relative;
}




/* Separator between cards */
.red-hedr__mega-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #ffffff00;
    height: 100%;
    opacity: 0.5;
}

.red-hedr__mega-col {
    position: relative;
}

.red-hedr__mega-col {
    display: flex;
    flex-direction: column;
    /* overflow: hidden; */
    transition: transform 0.3s ease;
    position: relative;
}

.red-hedr__mega-col:hover {
    transform: translateY(-4px);
}


/* Move ONLY the hovered link */
.red-hedr__mega-link:hover {
    transform: translateX(6px);
}

.red-hedr__mega-img-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.red-hedr__mega-title-overlay {
    /* background: #7C0202; */
    padding: 6px 20px 10px 20px;
    font-size: 30px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    line-height: 51px;
    padding-left: 0px;
}


.red-hedr__mega-img {
    width: 100%;
    /* height: 200px; */
    /* object-fit: cover; */
    transition: transform 0.3s ease;
    display: block;
}

.red-hedr__mega-content {
    padding: 14px 0px;
}

.red-hedr__mega-list {
    display: flex;
    flex-direction: column;
}

.red-hedr__mega-link {
    color: #ffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    transition: all 0.2s;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: block;
    position: relative;
}

.red-hedr__mega-link {
    position: relative;
}

/* LIGHT base line (always visible) */
.red-hedr__mega-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(205, 205, 205, 0.4) 0%,
            rgba(75, 0, 234, 0.4) 100%);
}

/* DARK fill line (animated) */
.red-hedr__mega-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            #CDCDCD 0%,
            #4B00EA 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

/* Hover → fill left to right */
.red-hedr__mega-link:hover::before {
    transform: scaleX(1);
}


/* remove underline from last link */
.red-hedr__mega-link:last-child::after {
    display: none;
}

.red-hedr__mega-link:last-child {
    border-bottom: none;
}

.red-hedr__mega-link:hover {
    color: #fff;
    border-bottom-color: rgba(255, 45, 45, 0.3);
}

/* ================= CTA ================= */
.red-hedr__cta {
    font-size: 16px;
    font-weight: 200;
    padding: 10px 22px;
    color: #fff;
    background: linear-gradient(#2a2a2a, #2a2a2a) padding-box, linear-gradient(90deg, #CDCDCD 0%, #4B00EA 100%) border-box;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.red-hedr__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(75, 0, 234, 0.3);
}

/* ================= HAMBURGER ================= */
.red-hedr__menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
    background: none;
    border: none;
    padding: 8px;
}

.red-hedr__menu-btn span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s ease;
}

.red-hedr__menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.red-hedr__menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.red-hedr__menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.red-hedr__nav-arrow {
    display: none;
    font-size: 20px;
    transition: transform 0.3s ease;
}

@media (max-width:1450px) {


    .red-hedr__mega-inner {
        max-width: 95%;
    }

    .red-hedr__mega-title-overlay {
        font-size: 17px;
        padding: 11px 20px;
    }


}

.red-hedr.light-bg .red-hedr__logo,
.red-hedr.light-bg .red-hedr__nav-link {
    color: #000;
}

/* ================= LIGHT HEADER MODE ================= */
.red-hedr.light-bg {
    background-color: #EFEFEF !important;
}

/* Logo & top nav links (already present but keeping complete) */
.red-hedr.light-bg .red-hedr__logo,
.red-hedr.light-bg .red-hedr__nav-link {
    color: #000 !important;
}

/* Mega menu background stays dark */
.red-hedr.light-bg .red-hedr__mega-inner {
    background-color: #EFEFEF !important;
}

.red-hedr.light-bg .red-hedr__mega {
    background-color: #EFEFEF !important;
}

.red-hedr.light-bg .red-hedr__mega-title-overlay {
    color: #DD2827 !important;
}

/* Mega menu links text color */
.red-hedr.light-bg .red-hedr__mega-link {
    color: #000 !important;
}

/* Optional: hover clarity */
.red-hedr.light-bg .red-hedr__mega-link:hover {
    color: #000 !important;
}


.red-hedr.light-bg .red-hedr__logo span {
    color: #ff2d2d;
}





.mainBanner {
    position: relative;
}

.mainBanner img {
    width: 100%;
    display: block;
}

.PrimarryBannerText {
    font-family: 'Exo 2', sans-serif;
    font-weight: 200;
    /* Exo 2 Light */
    font-size: 40px;
    line-height: 50px;

    color: #fff;
}

.secondaryBnrText {
    font-family: 'Manrope', sans-serif;
    font-weight: 200;
    color: #fff;
    ;
    font-size: 20px;
    line-height: 24px;
    margin-top: 20px;
}


.bannerText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.bannerBtns {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.bannerBtns a {
    min-width: 220px;

    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 16px;

    line-height: 47px;
    border-radius: 2px;
}

/* Base button */
.Red-bnr-btn {
    min-width: 230px;
    height: 40px;

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

    color: #000;
    text-decoration: none;

    position: relative;
    background: rgba(255, 255, 255, 0.6);
    /* white bg 60% */
    z-index: 1;
}

/* Gradient border using ::before */
.demo-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    /* top right bottom left = 0 */
    padding: 1px;
    /* border thickness */

    background: linear-gradient(90deg, #CDCDCD 0%, #4B00EA 100%);
    border-radius: 0px;
    /* add if you want rounded corners */

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

    z-index: -1;
}

.demo-btn.fixTheWhiteBg {
    background: #fff;
}

/* Glow */
.demo-btn {
    box-shadow: 0 0 10px rgba(75, 0, 234, 0.35);
    background: #ffffff57;
    color: #fff;
}

/* Hover */
.demo-btn:hover {
    box-shadow: 0 0 14px rgba(75, 0, 234, 0.55);
}

/* Know More (text only) */
.knowMore-link {
    color: #ffffff;
    text-decoration: none;
    position: relative;
}

.knowMore-link:hover::after {
    width: 100%;
}





@media (max-width:1166px) {
    .red-hedr__mega-inner {
        max-width: 90%;
        margin: 0 auto;
        padding: 40px 20px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        position: relative;
    }
}

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

    /* Enhanced mobile version with nested accordions and professional styling */
    .red-hedr__mega-img {
        display: none;
    }

    .red-hedr__nav-arrow {
        display: block;
        color: #ff2d2d;
        font-size: 14px;
        font-weight: 600;
    }

    .red-hedr__nav-item.active .red-hedr__nav-arrow {
        transform: rotate(180deg);
    }

    .red-hedr__menu-btn {
        display: flex;
    }

    .red-hedr__cta {
        display: none;
    }

    .red-hedr__nav {
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        height: calc(100vh - 64px);
        background: linear-gradient(180deg, #0d0f18 0%, #1a1a1f 100%);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .red-hedr__nav.open {
        transform: translateX(0);
    }

    .red-hedr__nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        background: rgba(0, 0, 0, 0.2);
        transition: background 0.2s ease;
    }

    .red-hedr__nav-item.active {
        background: rgba(255, 45, 45, 0.05);
    }

    .red-hedr__nav-link {
        padding: 20px 24px;
        font-size: 16px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #e6e6e6;
        letter-spacing: 0.3px;
    }

    /* Mobile Submenu - Outer Accordion */
    .red-hedr__mega {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: linear-gradient(180deg, #1a1a1f 0%, #212126 100%);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: none;
        box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .red-hedr__nav-item.active .red-hedr__mega {
        max-height: 3000px;
    }

    .red-hedr__mega-inner {
        grid-template-columns: 1fr;
        padding: 16px;
        gap: 12px;
        max-width: 100%;
    }

    .red-hedr__mega-col {
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 3px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }

    .red-hedr__mega-col:not(:last-child)::after {
        display: none;
    }



    .red-hedr__mega-img-wrapper {
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .red-hedr__mega-col.active .red-hedr__mega-img-wrapper {
        max-height: 200px;
    }

    .red-hedr__mega-img {
        height: 160px;
        width: 100%;
        object-fit: cover;
    }

    .red-hedr__mega-title-overlay {
        font-size: 15px;
        font-weight: 500;
        padding: 10px 20px;
        background: linear-gradient(135deg, #7C0202 0%, #a00303 100%);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0;
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
    }

    .red-hedr__mega-title-overlay::after {
        content: '▼';
        font-size: 12px;
        transition: transform 0.3s ease;
        color: rgba(255, 255, 255, 0.7);
    }

    .red-hedr__mega-col.active .red-hedr__mega-title-overlay {
        background: linear-gradient(135deg, #a00303 0%, #c40404 100%);
    }

    .red-hedr__mega-col.active .red-hedr__mega-title-overlay::after {
        transform: rotate(180deg);
    }

    .red-hedr__mega-content {
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: rgba(0, 0, 0, 0.2);
    }

    .red-hedr__mega-col.active .red-hedr__mega-content {
        max-height: 500px;
        padding: 8px 0;
    }

    .red-hedr__mega-list {
        gap: 0;
    }

    .red-hedr__mega-link {
        padding: 14px 20px;
        font-size: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
        position: relative;
        padding-left: 36px;
    }

    .red-hedr__mega-link::before {
        content: '›';
        position: absolute;
        left: 20px;
        color: #ff2d2d;
        font-size: 18px;
        font-weight: 600;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .red-hedr__mega-link:hover::before {
        /* opacity: 1; */
        display: none;
    }

    .red-hedr__mega-link:last-child {
        border-bottom: none;
    }

    .red-hedr__mega-link:hover {
        background: rgba(255, 45, 45, 0.08);
        color: #fff;
        padding-left: 40px;
        border-bottom-color: rgba(255, 45, 45, 0.2);
    }

    .red-hedr__mega-link:active {
        background: rgba(255, 45, 45, 0.15);
    }
}

@media (max-width: 900px) {
    .demo-content h1 {
        font-size: 32px;
    }

    .demo-content p {
        font-size: 16px;
    }

    .red-hedr {
        background-color: #000;
    }
}

@media (max-width: 550px) {
    .red-hedr__mega-img-wrapper {
        display: none;
    }
}


/* Newly added Css here  start*/


.sectionContainer {
    max-width: 80%;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    /* top & bottom equal */

    background-image: url('/wp-content/uploads/2026/01/secContaiunerBG.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 350px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    position: relative;
    margin-top: -80px;
    gap: 50px;
}

.LogoImageScondSec {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.lastLogos {
    width: 150px;
}

.gridTop {
    display: flex;
    flex-direction: row;
    gap: 55px;
    justify-content: center;
    align-items: center;
    position: relative;
}

.gridTop::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 1px;
    height: 80%;
    background-color: #6B6B6B;
}

.gridBottom {
    display: grid;
    grid-template-columns: 1fr;
    padding: 40px;
    padding-left: 0px;
}

.MainText {
    font-family: 'Manrope', sans-serif;
    font-weight: 200;
    font-size: 34.71px;
    line-height: 54.8px;

    color: #ffffff;
}

.SecondryText {
    font-family: 'Manrope', sans-serif;
    font-weight: 200;
    font-size: 17.09px;
    color: #D6D6D6;
}

.firstContentSec,
.SecondContentSec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
}


.firstContentSec {
    position: relative;
}

.firstContentSec::after {
    content: "";
    position: absolute;
    left: 44%;
    top: 100%;
    transform: translate(-50%, -50%);
    width: 88%;
    height: 1px;
    background: linear-gradient(357deg, #CDCDCD 0%, #4B00EA 100%);
}

.buldForSpeedSec {
    padding-top: 200px;
    padding-bottom: 170px;
}

.buildForSpeedGrid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    width: 965px;
    max-width: 90%;
    margin: 0 auto;
}

.textSection {
    font-family: 'Exo 2', sans-serif;
    font-weight: 300;
    font-size: 32px;
    line-height: 54px;
    position: relative;
}

.textSection::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #222222;
}

.paraTextBuild {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 22px;
    color: #222222;
    display: flex;
    align-items: center;
    padding: 0px 20px;
}

.bgColorProduct {
    background-color: #eeee;
}

.threCardSliderSec {
    padding-bottom: 200px;
}

/* ================= RH SLIDER WRAPPER ================= */
.rh-slider {
    max-width: 965px;
    width: 100%;
    margin: 0 auto;
    background: #eeee;
}

.rh-slider__track {
    padding: 40px 0 80px;
}

.rh-slider__slide {
    outline: none;
    transition: all 0.4s ease;
}

/* ================= CARD ================= */
.rh-slider .card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    opacity: 0.7;
    transform: scale(0.85);
}

.rh-slider .card-image {
    padding: 5px;
    padding-bottom: 0px;
}

.rh-slider .card-image img {
    width: 100%;
    display: block;
}

.rh-slider .card-content {
    padding: 30px 25px;
    text-align: center;
    background: #fff;
    position: relative;
    padding-top: 15px;
}

.rh-slider .card-title {
    font-size: 16px;
    font-weight: 500;
    color: #222222;
    margin-bottom: 25px;
}


.rh-slider .card-title::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 0.3px;
    background-color: #4E4E4E;
}


.rh-slider .card-description {
    font-size: 13px;
    color: #999;
    line-height: 1.8;
    margin-top: 30px;
}

.rh-slider .card-button {
    display: none;
    margin-top: 20px;
    padding: 7px 50px;
    background: transparent;
    color: #5a7cff;
    border: 2px solid #5a7cff;
    border-radius: 3px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.rh-slider .card-button:hover {
    background: #5a7cff;
    color: #fff;
}

/* ================= CENTER SLIDE ================= */
.rh-slider .slick-center .card {
    opacity: 1;
    transform: scale(1);
    background: #2d2d2d;
}

.rh-slider .slick-center .card-content {
    background: #313131;
    padding: 35px 10px;
    padding-top: 15px;
}

.rh-slider .slick-center .card-title {
    color: #fff;
    font-size: 18px;
}

.rh-slider .slick-center .card-title::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 24%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 0.3px;

    background-color: #4E4E4E;
}


.rh-slider .slick-center .card-description {
    color: #bbb;
    font-size: 14px;
    margin-top: 40px;
}

.rh-slider .slick-center .card-button {
    display: inline-block;
    color: #ffffff;

    /* gradient border */
    border: 1px solid transparent;
    background:
        linear-gradient(#000000, #000000) padding-box,
        linear-gradient(90deg, #CDCDCD 0%, #4B00EA 100%) border-box;

    border-radius: 4px;
    /* keep same as button */
}


/* ================= DOTS ================= */
.custom-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

/* reset button if present */
.custom-dots li button {
    display: none;
}

/* dot */
.custom-dots li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #bbb;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* active */
.custom-dots li.active {
    background: #7E7E7E;
}

/* Hide arrows ONLY for this slider */
.rh-slider .slick-prev,
.rh-slider .slick-next {
    display: none !important;
}

.hospiTalsSection {
    background: #343434;
    padding-top: 100px;
    padding-bottom: 200px;

}

.hospitalNewCardGrid {
    display: grid;
    grid-template-columns: 366px 1.3fr;
    width: 965px;
    max-width: 90%;
    margin: 0 auto;
    gap: 30px;

}

/* ================= SECTION ================= */
.hospiTalsSection {
    background: #343434;
    padding-top: 100px;
    padding-bottom: 200px;
    overflow: visible;
    /* required for sticky */
}

/* ================= GRID ================= */
.hospitalNewCardGrid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    width: 965px;
    max-width: 90%;
    margin: 0 auto;
    gap: 30px;
    align-items: flex-start;
    overflow: visible;
    /* IMPORTANT for sticky */
}

/* ================= LEFT (STICKY) ================= */


.firest-sec {
    position: sticky;
    top: 120px;
}

/* ================= TEXT ================= */
.firest-sec h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 25.94px;
    line-height: 34.6px;
    color: #ECECEC;
    margin-bottom: 50px;
}

.first-sec-discription {
    font-family: 'Manrope', sans-serif;
    font-weight: 200;
    font-size: 20px;
    line-height: 29.5px;
    color: #ECECEC;
    margin-bottom: 50px !important;
}

.hospitalBtn {
    width: max-content;
    color: #222222 !important;
    border-radius: 2px;
    background: #f3f3ffa2;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    padding: 10px 18px;
    display: inline-block;
    text-align: center;
}

/* ================= RIGHT ================= */
.secNd-sec {
    position: relative;
}

.Secnd-sec-cardGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.card-Secnd-sec {
    border-radius: 5.17px;
    background-color: #cccccc;
    height: 370px;
    width: 269px;
    ;
    padding: 10px;
    display: flex;
    flex-direction: column;
    padding-top: 0px;

    /* additions */
    position: relative;
    overflow: hidden;

}

.card-Secnd-sec::before {
    content: "";
    position: absolute;
    top: var(--y, 50%);
    left: var(--x, 50%);
    width: 280px;
    height: 280px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle,
            rgba(255, 52, 52, 0.35),
            rgba(255, 52, 52, 0.18),
            transparent 70%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.card-Secnd-sec:hover::before {
    opacity: 1;
}


/* ================= CARD HEADER ================= */
.card-Header {
    display: flex;
    gap: 15px;
    padding: 15px;
    align-items: center;
    position: relative;
    padding-top: 46px;
    padding-bottom: 37px;
}

.card-Header p {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 20.68px;
    line-height: 24.8px;
    color: #222222;
}

.card-Header img {
    height: 33px;
    width: 61px;
    object-fit: contain;
}

.card-Header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #4A4A4A;
}

/* ================= CARD CONTENT ================= */
.card-content {
    /* margin-top: 10px; */
    padding: 10px;
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    line-height: 24px;
    color: #222222;
    font-size: 16px;
    margin-top: 17px;
    text-align: justify;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .hospitalNewCardGrid {
        grid-template-columns: 1fr;
    }

    .firest-sec {
        position: static;
    }


}

.whyRedSec {
    padding-top: 130px;
    padding-bottom: 215px;
}

.whyRedHeading {
    font-family: 'Exo 2', sans-serif;
    font-weight: 300;
    font-size: 38px;
    line-height: 42px;
    margin-bottom: 70px;
    text-align: center;
}

.smallcardSection {
    background-image: url('/wp-content/uploads/2026/01/circleCenterImage.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    min-height: 446.83px;
    width: 717px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 20px; */
    padding: 110px 0px;
    max-width: 90%;

    column-gap: 32px;
}

.main-small-cards {
    border-radius: 4px;
    background-color: #FCFCFC;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    display: flex;
    align-items: center;
    padding: 15px 15px 15px 30px;
    gap: 20px;
    position: relative;
    height: 121px;
}

.imgSeccard {
    position: relative;
}


.imgSeccard::after {
    content: "";
    position: absolute;
    right: -18px;
    top: -11px;
    width: 1px;
    height: 140%;
    background: linear-gradient(180deg,
            /* top → bottom */
            #CDCDCD 0%,
            #4B00EA 100%);
}

.cardSecContent {
    padding-left: 15px;
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    /* Manrope Light */
    font-size: 18px;
    line-height: 24px;
    color: #222222;
}

.card_PostionCont {
    position: relative;
    width: 965px;
    max-width: 90%;
    margin: 0 auto;
    padding: 250px 0px;
    padding-bottom: 0px;
}

.imageStackSe {
    line-height: 0;
}

.imageStackSe img {
    width: 678px;
    height: 557px;
    z-index: 1;
    position: relative;
}

.builtForContentSect {
    height: 742px;
    width: 615px;
    z-index: 2;
    padding: 100px 50px;

    background: linear-gradient(180deg, #2D2D2D 0%, #656565 100%);
    border-radius: 5px;

    position: absolute;
    bottom: 0;
    right: 0;

    box-shadow:
        rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em,
        rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em,
        rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;

    overflow: hidden;
}

/* IMAGE LAYER */
.builtForContentSect::before {
    content: "";
    position: absolute;
    top: 24px;
    right: 24px;

    width: 324px;
    height: auto;
    aspect-ratio: 1 / 1;
    /* keeps image ratio */

    background: url(/wp-content/uploads/2026/01/builtFordesignCIrcle.png) no-repeat center / contain;
    opacity: 0.4;
    /* 👈 image opacity only */

    pointer-events: none;
}




.builtForContentSect h3 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 300;
    /* Exo 2 Light */
    font-size: 35px;
    line-height: 54px;
    margin-bottom: 70px;
    color: #fff;
}

.hrImgeSep {
    margin-bottom: 40px;
    width: 100%;
}

.stackCaRdDecription {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    text-align: justify;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    margin-bottom: 36px;
}

.mapContainSection {
    padding-top: 463px;
    padding-bottom: 322px;
    background-color: #000000;
    /* background-color: #343434; */
    position: relative;
    margin-top: -180px;
}

.formSection-product {
    padding-top: 130px;
    background: #EFEFEF;
    padding-bottom: 130px;
    overflow-x: hidden;
}

.formCotainer {
    width: 965px;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
}

.formCotainer .formSeprator {
    margin-bottom: 40px;
}

.formCotainer h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    /* Manrope Light */
    font-size: 32px;
    line-height: 32px;
    color: #252525;
    margin-bottom: 30px;
}

.formCotainer .formDiscription {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    /* Manrope Light */
    font-size: 16px;
    line-height: 24px;
    color: #252525;
    margin-bottom: 40px;
}

.faqMainSec {
    background-color: #343434;
    padding-top: 110px;
    padding-bottom: 140px;
}

/* ================= RH FAQ ================= */
.rh-faq {
    width: 965px;
    margin: 0 auto;
    max-width: 90%;
}

.rh-faq__item {
    position: relative;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 15px;
}

/* Gradient top border */
.rh-faq__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(270deg, #CDCDCD 0%, #4B00EA 100%);
}

/* Header */
.rh-faq__header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 8px;
    cursor: pointer;
    transition: background 0.25s ease;
}

/* Active header background */
.rh-faq__item.active .rh-faq__header {
    background: #262626;
}

/* Plus icon */
.rh-faq__icon img {
    /* width: 18px; */
    height: auto;
    display: block;
}

/* Question text */
.rh-faq__question {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    /* Manrope Light */
    font-size: 20px;
    line-height: 24px;
    color: #ffffff;
}


/* Content */
.rh-faq__content {
    display: none;
    border: 1px solid #626262;
    border-radius: 5px;
    position: relative;

}

/* Minus image */
.rh-faq__content::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 48px;
    width: 35px;
    height: 18px;
    background: url('./minus.png') no-repeat center / contain;
}

/* Answer text */
.rh-faq__content p {
    padding: 34px 24px 34px 62px;
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    /* Manrope Light */
    font-size: 20px;
    line-height: 24px;
    color: #ffffff;
}

.FaqHeading {
    font-family: 'Exo 2', sans-serif;
    font-weight: 300;
    /* Exo 2 Light */
    font-size: 38px;
    line-height: 42px;
    color: #DDDDDD;
    margin-bottom: 120px;
    text-align: center;
}

/* ================= PRODUCT FORM ================= */
.product-form {
    background: #dfdfdf;
    padding: 32px 36px;
    border-radius: 6px;
    width: 620px;
    max-width: 90%;
    display: block;
    margin: 0 auto;
}

/* Input wrapper */
.product-form__field {
    margin-bottom: 18px;
}

/* Inputs */
.product-form__input {
    width: 100%;
    height: 40px;
    background: #4a2626;
    border: none;
    padding: 0 14px;

    color: #ffffff;
    font-size: 14px;
    font-weight: 400;

    outline: none;
}

/* Placeholder */
.product-form__input::placeholder {
    color: #e6e6e6;
    font-weight: 300;
}

/* Button wrapper */
.product-form__btn-wrapper {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

/* Button */
.product-form__btn {
    min-width: 220px;
    height: 44px;

    background:
        linear-gradient(#0f0f0f, #0f0f0f) padding-box,
        linear-gradient(90deg, #cdcdcd 0%, #4b00ea 100%) border-box;

    border: 1px solid transparent;
    border-radius: 3px;

    color: #ffffff;
    font-size: 14px;
    font-weight: 400;

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

/* Hover */
.product-form__btn:hover {
    box-shadow: 0 0 12px rgba(75, 0, 234, 0.5);
    transform: translateY(-1px);
}

/* ===== UNIQUE CLASSES ===== */
.health-carousel-container {
    max-width: 96%;
    margin-left: auto;
    margin-right: 0;
    margin-top: 100px;
    margin-bottom: 100px;
}

/* Hide both sections by default */
.health-desktop-slider,
.health-mobile-slider {
    display: none;
}

/* Show desktop slider above 1024px */
@media(min-width: 1024px) {
    .health-desktop-slider {
        display: block;
    }
}

/* Show mobile slider below 1024px */
@media(max-width: 1023px) {
    .health-mobile-slider {
        display: block;
        margin-top: 120px;
    }

    .health-carousel-container {
        width: 90%;
        max-width: 100%;
        margin: 50px auto !important;
    }
}

/* ===== DESKTOP SLIDER STYLES (Original with unique classes) ===== */
.health-slides-wrapper {
    overflow: hidden;
    margin-bottom: 60px;
}

.health-slides-container {
    display: flex;
    transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1);
}

.health-slide {
    flex: 0 0 100%;
    display: flex;
}

.health-slide-item {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    transition: .3s ease;
    margin: 0 7.5px;
}

.health-slide-item:hover {
    transform: translateY(-4px);
}

.health-slide-image-wrapper {
    height: 300px;
    overflow: hidden;
}

.health-slide-image {
    width: 100%;
    height: 100%;
}

.health-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 5px;
}

.health-slide-content {
    background: #313131;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* gap: 20px; */
    border-radius: 5px;
    transition:
        background-color 0.35s ease,
        transform 0.35s ease,
        color 0.35s ease;
    transform-origin: center;
}

.health-slide-item:hover .health-slide-content {
    background: #dd2827;
    transform: scale(1.06);
    color: #ffffff;
}

.health-slide-item:hover .health-slide-content *,
.health-slide-item:hover .health-slide-content .health-source,
.health-slide-item:hover .health-slide-content .health-date {
    color: #ffffff;
}

.health-slide-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #FBFBFB;
    min-height: 65px;
}

.health-slide-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.health-source {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 13px;
    line-height: 21px;
    color: #D8D8D8;
    letter-spacing: 0.5px;
}

.health-date {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 13px;
    line-height: 21px;
    color: #D8D8D8;
    letter-spacing: 0.5px;
}

/* Desktop – 4 cards */
@media(min-width:1200px) {
    .health-slide-item {
        flex: 0 0 calc(25% - 15px);
        margin: 0 7.5px;
    }
}

@media(min-width:1400px) {
    .health-slide-item {
        flex: 0 0 calc(25% - 18px);
        margin: 0 9px;
    }
}

/* Tablet – 2 cards */
@media(max-width:1199px) and (min-width:1024px) {
    .health-slide-item {
        flex: 0 0 calc(50% - 15px);
        margin: 0 7.5px;
    }
}

/* ===== THUMB SLIDER (Desktop only) ===== */
.health-thumb-slider-wrapper {
    display: flex;
    justify-content: center;
    padding: 30px 0;
    margin-top: 60px;
}

.health-thumb-track-container {
    width: 100px;
    position: relative;
}

.health-thumb-track {
    height: 8px;
    background: #ddd;
    position: relative;
    border-radius: 5px;
    cursor: pointer;
    overflow: visible;
}

.health-thumb-progress {
    position: absolute;
    height: 100%;
    width: 0;
    /* background:#4B00EA; */
    border-radius: 5px;
    transition: width 0.3s ease;
}

.health-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 16px;
    border-radius: 15px;
    background: linear-gradient(275deg, #C5C5C5 0%, #4B00EA 100%);
    cursor: grab;
    transition: all 0.3s ease;
    z-index: 2;
}

.health-thumb.dragging {
    transform: translate(-50%, -50%) scale(1);
}

.health-thumb:active {
    cursor: grabbing;
}

/* Hide extra spacing on edges */
.health-slides-wrapper {
    margin: 0 0px;
}

@media(min-width:1200px) {
    .health-slides-wrapper {
        margin: 0 -20px;
    }
}

/* ===== MOBILE SLICK SLIDER STYLES ===== */
.health-slick-slider {
    padding: 0 15px;
}

.health-slick-slide {
    padding: 0 10px;
}

.health-slick-slide .health-slide-item {
    margin: 0;
    height: 100%;
}

.health-slick-slide .health-slide-item:hover {
    transform: none;
}

.health-slick-slide .health-slide-item:hover .health-slide-content {
    transform: none;
    background: #313131;
}

.health-slick-slide .health-slide-item:hover .health-slide-content * {
    color: inherit;
}

/* Slick slider arrows */
.health-slick-slider .slick-prev,
.health-slick-slider .slick-next {
    width: 40px;
    height: 40px;
    background: #FF3434;
    border-radius: 50%;
    z-index: 1;
}

.health-slick-slider .slick-prev:before,
.health-slick-slider .slick-next:before {
    color: white;
    font-size: 20px;
}

.health-slick-slider .slick-prev:hover,
.health-slick-slider .slick-next:hover {
    background: #FF3434;
}

.health-slick-slider .slick-prev {
    left: -15px;
}

.health-slick-slider .slick-next {
    right: -15px;
}

/* Slick slider dots */
.health-slick-slider .slick-dots {
    bottom: -40px;
}

.health-slick-slider .slick-dots li button:before {
    font-size: 10px;
    color: #ddd;
}

.health-slick-slider .slick-dots li.slick-active button:before {
    color: #FF3434;
}

/* 1280px → 1440px : height auto */
@media (min-width: 1280px) and (max-width: 1440px) {
    .health-slide-image-wrapper {
        height: auto;

    }

    .health-slide-title {
        font-size: 15px;
    }
}

@media(max-width: 870px) {
    .card-Secnd-sec {
        width: 100%;
    }

    .textSection {
        font-size: 32px;
        line-height: 40px;
        margin-right: 10px;
    }

    .fixFlexMargin .map-card-value {
        margin-bottom: 0px !important;
    }

    .map-card-label {
        text-align: center;
        font-size: 15px !important;
    }

    .map-card-value {
        font-size: 18px !important;
        line-height: 1 !important;
    }
}

/* Mobile responsive adjustments */
@media(max-width: 767px) {
    .health-slick-slider {
        padding: 0 10px;
    }

    .health-slick-slide {
        padding: 0 5px;
    }

    .health-slide-image-wrapper {
        height: 200px;
    }

    .health-slide-content {
        padding: 20px;
    }

    .health-slide-title {
        font-size: 16px;
        line-height: 1.35;
    }

    .health-slick-slider .slick-prev {
        left: -10px;
    }

    .health-slick-slider .slick-next {
        right: -10px;
    }
}

/* Small Mobile */
@media(max-width: 480px) {
    .health-slide-content {
        padding: 15px;
    }

    .health-slide-title {
        font-size: 15px;
        min-height: 55px;
    }

    .health-slide-image-wrapper {
        height: 180px;
    }
}




@media (max-width:1450px) {
    .LogoImageScondSec {
        width: 70px;
    }

    .lastLogos {
        width: 125px;
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .rh-slider .card-content {
        padding: 10px;
    }

    .rh-slider .slick-center .card-content {
        padding: 10px 10px 20px;
    }

    .PrimarryBannerText {
        font-size: 30px;
        line-height: 30px;
    }

    .sectionContainer {
        grid-template-columns: 1fr;
        background-image: url('/wp-content/uploads/2026/01/secContaiunerBG.png');
        height: auto;
        padding: 40px;
        margin-top: -57px;
    }

    .gridTop::after {
        display: none;
    }

    .gridBottom {
        gap: 26px;
    }

    .firstContentSec::after {
        top: 120%;
    }

    .buldForSpeedSec {
        padding-top: 200px;
    }

    .textSection {
        font-size: 26px;
        line-height: 33px;
    }

    .hospitalNewCardGrid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .imageStackSe img {
        width: 534px;
        height: 457px;
    }

    .builtForContentSect {
        height: 606px;
        width: 489px;
    }

    .mapContainSection {
        padding-bottom: 0;
    }
}

.desktopViewPRD {
    display: block !important;
}

.mobileViewPRD {
    display: none !important;
}

@media (max-width:550px) {
    .desktopViewPRD {
        display: none !important;
    }

    .mobileViewPRD {
        display: block !important
    }

    .mainBanner {
        position: relative;
        top: 64px;
    }

    .PrimarryBannerText {
        font-size: 17px;
        line-height: 25px;
    }

    .secondaryBnrText {
        font-family: 'Manrope', sans-serif;
        font-weight: 200;
        color: #fff;
        font-size: 10px;
        line-height: 16px;
        margin-top: 5px;
    }

    .sectionContainer {
        grid-template-columns: 1fr;
        background-image: url('/wp-content/uploads/2026/01/secContaiunerBG.png');
        height: auto;
        padding: 40px;
        margin-top: 34px;
        max-width: 90%;
    }

    .buildForSpeedGrid .paraTextBuild br {
        display: none;
    }

    .bannerBtns {
        display: flex;
        gap: 32px;
        align-items: center;
        justify-content: center;
        margin-top: 14px;
    }

    .bannerBtns a {
        min-width: 135px;
        font-family: 'Manrope', sans-serif;
        font-weight: 500;
        font-size: 10px;
        line-height: 40px;
        border-radius: 2px;
        margin-bottom: 30px;
    }

    .Red-bnr-btn {
        min-width: 230px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        text-decoration: none;
        position: relative;
        background: rgba(255, 255, 255, 0.6);
        z-index: 1;
        margin-bottom: 30px;
    }

    .LogoImageScondSec {
        width: 50px;
    }

    .lastLogos {
        width: 75px;
    }

    .gridBottom {
        padding: 0px;
    }

    .buldForSpeedSec {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .buildForSpeedGrid {
        grid-template-columns: 1fr;
    }

    .paraTextBuild {
        padding: 0px;
        margin-top: 20px;
    }

    .textSection::after {
        display: none;
    }

    .rh-slider .slick-center .card-title {
        color: #fff;
        font-size: 14px;
    }

    .rh-slider .slick-center .card-description {
        color: #bbb;
        font-size: 10px;
        margin-top: 20px;
    }

    .formSection-product {
        padding-bottom: 0px;
    }

    .threCardSliderSec {
        padding-bottom: 100px;
    }

    .firest-sec h2 {
        font-size: 19.94px;
        line-height: 24.6px;
    }

    .first-sec-discription {
        font-size: 15.29px;
        line-height: 25.5px;
        margin-bottom: 30px;
    }

    .card-Header img {
        height: 26px;
        width: 43px;
    }

    .card-Header p {
        font-size: 14.68px;
        line-height: 19.8px;
    }

    .card-Secnd-sec {
        height: auto;
        width: auto;
        padding-top: 20px;
    }

    .card-content {
        line-height: 19px;
    }

    .Secnd-sec-cardGrid {
        grid-template-columns: 1fr 1fr;
    }

    .hospiTalsSection {
        padding-bottom: 100px;
    }

    .whyRedSec {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .whyRedHeading {
        font-size: 27px;
        line-height: 33px;
    }

    .whyRedHeading br {
        display: none;
    }

    .smallcardSection {
        grid-template-columns: 1fr;
    }

    .imageStackSe img {
        width: 100%;
        height: 457px;
    }

    .builtForContentSect {
        height: 606px;
        width: 100%;
    }

    .formCotainer .formSeprator {
        width: 100%;
    }

    .builtForContentSect {
        padding: 30px;
    }

    .builtForContentSect h3 {
        font-family: 'Exo 2', sans-serif;
        font-weight: 300;
        font-size: 21px;
        line-height: 25px;
        margin-bottom: 27px;
        color: #fff;
    }

    .stackCaRdDecription {
        font-family: 'Manrope', sans-serif;
        font-weight: 300;
        font-size: 12px;
        line-height: 20px;
        color: #ffffff;
        margin-bottom: 31px;
    }

    .imageStackSe img {
        width: 100%;
        height: auto;
        margin-bottom: -196px;
    }

    .rh-faq__question {
        font-size: 15px;
    }

    .rh-faq__content p {
        font-size: 15px;
    }

    .whyRedSec {
        padding-top: 100px;
        padding-bottom: 400px;
    }

    .card-content {
        margin-top: 10px;
        padding: 10px;
        font-size: 10px;
    }

    .card-Header {
        padding: 0px;
        padding-bottom: 10px;
    }

    .mapContainSection {
        padding-top: 302px !important;
    }
}



.rh-slider__track .slick-dots li {
    margin: 0px;
}

/* your old CSS stays same */
.mapContainSection {
    padding-top: 109%;
    /* padding-bottom: 322px;
    background-color: #000000;
    position: relative;
    margin-top: -240px;
    overflow: hidden; */
}

/* ===== BACKGROUND IMAGE (BOTTOM LAYER) ===== */
.mapMainBg {
    position: absolute;
    inset: 0;
    z-index: 1;

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

    pointer-events: none;
}

.mapMainBg img {
    width: 100%;
    /* max-width: 1200px; */
    height: auto;
    object-fit: contain;
}

/* ===== GIF SECTION (MIDDLE LAYER – 965px) ===== */
.mapGifSection {
    position: absolute;
    top: 463px;
    /* matches padding-top */
    left: 50%;
    transform: translateX(-50%);

    width: 761px;
    max-width: 90%;
    z-index: 2;

    display: flex;
    justify-content: center;
}

.mapGifSection img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ===== TOP UI (UPPER LAYER) ===== */
.mapTopUI {
    position: absolute;
    top: 120px;
    /* adjust freely */
    left: 50%;
    transform: translateX(-50%);

    width: 965px;
    max-width: 90%;
    z-index: 3;
}

.card_PostionCont {
    margin-bottom: 100px;
}

.map-cards {
    position: absolute;
    width: 255px;
    height: 211px;

    /* 🔥 Gradient border setup */
    border: 1px solid transparent;
    background:
        linear-gradient(#000000, #000000) padding-box,
        linear-gradient(90deg, #CDCDCD 0%, #4B00EA 100%) border-box;

    border-radius: 5px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;

    padding-bottom: 19px;

    box-shadow:
        0 0 0 1px rgba(110, 90, 255, 0.45),
        0 12px 28px rgba(0, 0, 0, 0.7);

    color: #fff;
    pointer-events: auto;
}


/* NUMBER */
.map-card-value {
    font-size: 36px;
    font-weight: 200;
    color: #eaeaea;
    line-height: 48px;
    text-align: center;
}

.fixFlexMargin .map-card-value {
    margin-bottom: 30px;
}

/* SEPARATOR LINE */
.map-card-separator {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    margin: 12px 0;
}

/* LABEL */
.map-card-label {
    font-size: 20px;
    color: #bcbcbc;
    letter-spacing: 0.5px;
}

.map-card-1 {
    top: 217px;
    left: -10%;
}

.map-card-2 {
    top: -46px;
    left: 33%;
}


.map-card-3 {
    top: 217px;
    right: -10%;
}

.map-card-4 {
    top: 426px;
    right: 34%;
}

.map-card-5 {
    top: 594px;
    right: -10%;
}

.map-card-6 {
    top: 591px;
    left: -10%;
}

.map-card-7 {
    bottom: -60px;
    right: 35%;
}

@media (max-width: 1099px) {
    .mapContainSection {
        padding-bottom: 62%;
    }
}

@media (max-width: 860px) {
    .map-cards {
        width: 130px;
        height: 130px;
    }

    .mapGifSection {

        width: 505px;

    }

    .map-card-3,
    .map-card-1 {
        top: 146px;

    }

    .map-card-4 {
        top: 276px;
        right: 37%;
    }

    .map-card-5,
    .map-card-6 {
        top: 395px;
        right: 0%;
    }

    .mapGifSection {
        top: 403px;
    }
}

@media (max-width: 560px) {
    /* Neww Added */
    .mapContainSection.fixMobilePadding{
        padding-bottom: 10%;
    }
    .mapContainSection.fixMobilePadding  .mapGifSection{
       top: 441px;
    }
    .formCotainer.fixMarginGap{
            margin-top: 131px;
    }
    .mapGifSection img {
        display: none;
    }

    .mapMainBg {
        height: 100vh;
        position: relative;
    }

    .mapGifSection {
        position: absolute;
    }

    .mapGifSection {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;

        justify-content: center;
        /* centers grid from left-right */
        justify-items: center;
        /* centers items inside each column */
    }

    .map-cards {
        position: unset;
    }

    .mapContainSection {
        padding-bottom: 0%;
    }

    .map-card-value {
        font-size: 16px;
    }
}


/* Footer css start hete  */

.footerContainer {
    background-image: url("/wp-content/uploads/2026/01/footerBG.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding-top: 108px;
    /* padding-bottom: 108px; */
}

.footerPara {
    font-family: 'Exo 2', sans-serif;
    font-weight: 300;
    /* Light */
    font-size: 48px;
    line-height: 54px;
    color: #E2E2E2;
    text-align: center;
    margin-bottom: 48px;
}

.mainCarouselWrapper {
    max-width: 90%;
    margin: 0 auto;
    border-radius: 5px;
    background-color: #252525a8;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 50px 28px;

}

.footerAmbulaceIcon {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-items: center;
    width: 90%;
    max-width: 60%;
    margin: 0 auto;
    margin-bottom: 65px;
}


.footer-carousel {
    padding: 40px 20px;
    color: #e2e2e2;
    font-family: Manrope, sans-serif;
    padding-top: 0px;

}

/* Tabs */
.footer-tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px
}

.footer-tab {
    padding: 10px 16px;
    color: #cfcfcf;
    transition: background 0.3s ease, color 0.3s ease;

    /* Typography */
    font-family: 'Exo 2', sans-serif;
    font-weight: 300;
    /* Light */
    font-size: 19.07px;
    line-height: 40.5px;
    cursor: pointer;
    border-bottom: 1px solid #555353;
}


/* ACTIVE STATE */
.footer-tab.active {
    color: #ffffff;
    background: linear-gradient(183deg, #5e5d5d 0%, #c2c2c291 100%);
    border-radius: 5px;
}


/* Content */
.footer-tab-content {
    margin-top: 24px;
}

.tab-panel {
    display: none;
    font-size: 13px;
}

.tab-panel.active {
    display: block;
}

/* Slick fixes */
.footer-tabs .slick-slide {
    width: auto !important;
}

.footer-tabs .slick-track {
    display: flex;
}

.tabPannerGrdi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
}

.tabPannerGrdi p {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    /* Light */
    font-size: 12.72px;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
    margin-bottom: 10px;
}

.tabPannerGrdi {
    margin-top: 45px;
    padding-bottom: 0px;
}

.lineimage {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
}

.ambulanceNearMemaieeeen {
    margin: 40px 0px;
    max-width: 90%;
    margin: 0 auto;

}

.nearMeHeading p {
    font-family: 'Exo 2', sans-serif;
    font-weight: 300;
    /* Light */
    font-size: 48px;
    line-height: 54px;
    color: #e2e2e2;
    margin: 0;
    margin-top: 85px;
    margin-bottom: 60px;
}

.stateBox {
    width: 304px;
    height: 360px;
    padding: 20px 18px 20px 10px;
    border-radius: 5px;
    background: linear-gradient(180deg, #8a8a8a80 0%, #cfcfcf21 100%);
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
}

/* Title */
.stateTitle {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 14px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-left: 8px;
}

/* Scrollable list */
.stateList {
    height: calc(100% - 60px);
    overflow-y: auto;

    /* LEFT scrollbar trick */
    direction: rtl;
    padding-left: 12px;
    overflow-x: hidden;
}

/* Reset text direction */
.stateList p {
    direction: ltr;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
    margin-top: 15px;
    cursor: pointer;
}

/* Hover */
.stateList p:hover {
    opacity: 0.85;
}

/* Optional: custom scrollbar */
.stateList::-webkit-scrollbar {
    width: 3px;
}

.stateList::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.stateList::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
}

/* CITY LIST – SAME SCROLLBAR AS STATE LIST */
.cityList::-webkit-scrollbar {
    width: 6px;
}

.cityList::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.cityList::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
}


.wrapperMainFOoter {
    display: grid;
    grid-template-columns: 1fr 2fr;
    max-width: 90%;
    margin: 0 auto;
    gap: 50px;
    justify-content: center;
    align-items: center;
}

.lineimage img {
    width: 100%;
    height: 1px;
}

.leftmgSection img {
    max-width: 100%;
}

.red-ftr-wrapper {
    padding: 60px 20px;
    color: #e2e2e2;
    font-family: 'Manrope', sans-serif;
}

.red-ftr-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

/* Titles */
.red-ftr-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Address text */
.red-ftr-text {
    /* today font chnage  */
    font-size: 12px;
    line-height: 20px;
    color: #d0d0d0;
    margin-bottom: 16px;
}

/* Lists */
.red-ftr-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.red-ftr-list li {
    margin-bottom: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.red-ftr-list li:last-child {
    border-bottom: none;
}

.red-ftr-list a {
    text-decoration: none;
    font-size: 13px;
    color: #cfcfcf;
    transition: color 0.3s ease;
}

.red-ftr-list a:hover {
    color: #ffffff;
}

/* Highlighted link (company) */
.red-ftr-highlight {
    color: #e53935 !important;
}

/* Wrapper */
.stateCityWrapper {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    position: relative;
}

/* Arrow on active state */
.stateList p {
    position: relative;
    padding-right: 20px;
}

.stateList p.active::after {
    content: "›";
    position: absolute;
    right: 0;
    top: 0;
    color: #ffffff;
    font-size: 18px;
}

/* CITY BOX */
.cityBox {
    width: 260px;
    height: 260px;
    padding: 16px;
    border-radius: 5px;
    background: #00000040;
    color: #ffffff;
    display: none;
    font-family: 'Manrope', sans-serif;
    position: absolute;
    left: 290px;
    bottom: 0px;
}

/* Header */
.cityHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.cityClose {
    cursor: pointer;
    font-size: 18px;
}

/* Scrollable city list */
.cityList {
    height: calc(100% - 40px);
    overflow-y: auto;
    direction: rtl;
    padding-left: 8px;
}

.cityList p {
    direction: ltr;
    font-size: 14px;
    margin-bottom: 10px;
}

.amb-types-wrapper {
    width: 100%;
    max-width: 360px;
    padding: 32px 28px;
    border-radius: 6px;

    color: #e2e2e2;
    font-family: 'Manrope', sans-serif;
}

/* Title */
.amb-types-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

/* List */
.amb-types-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amb-types-list li {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.amb-types-list li:last-child {
    margin-bottom: 0;
}

.amb-types-list li:hover {
    opacity: 0.85;
}

.mainCityFixWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.red-top-strip {
    width: 100%;
    background: linear-gradient(180deg, #0d0d0d 0%, #141414 100%);

}

.red-top-inner {
    /* max-width: 1400px;  today chnaged*/
    
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 200px;
}

/* ICONS */
.red-top-icons {
    display: flex;
    align-items: center;
    gap: 22px;
}

.red-top-icons img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* CONTACT */
.red-top-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: #cfcfcf;
    white-space: nowrap;
}

.red-top-call,
.red-top-email {
    letter-spacing: 0.3px;
}

.red-top-sep {
    opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 860px) {
    .red-top-inner {
        flex-direction: column;
        gap: 12px;
    }

    .red-top-icons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .tabPannerGrdi p {
        font-size: 10px;
    }
}



/* Responsive */
@media (max-width: 1024px) {
    .red-ftr-container {
       
        gap: 40px;
    }
    .red-top-inner {
   /* today changed */
    gap: 40px;
    flex-wrap: wrap;
}

    .footer-tab {
        font-size: 15.07px;
    }

    .footerAmbulaceIcon img {
        height: 70px;
        object-fit: contain;
        width: 70px;
    }

    .amb-types-wrapper {
        max-width: 260px;
    }

 

    .cityBox {
        width: 217px;
        height: 260px;
        padding: 16px;
        border-radius: 5px;
        background: #00000040;
        color: #ffffff;
        display: none;
        font-family: 'Manrope', sans-serif;
        position: absolute;
        left: 257px;
        bottom: 0px;
    }
}

/* MOBILE STATE SELECT */
@media (max-width: 869px) {

    .footer-tabs {
        display: none;
    }

    .footer-state-select {
        margin-bottom: 16px;
    }

    #footerStateSelect {
        width: 100%;
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 8px;
        border: 1px solid #ddd;
        background: #fff;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        background-size: 12px;
    }
}

/* DESKTOP */
@media (min-width: 870px) {
    .footer-state-select {
        display: none;
    }
}


@media (max-width: 768px) {
    .footerPara {
        font-size: 32px;
        line-height: 38px;
    }


    .mainCityFixWrapper {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 100px;
    }

    .amb-types-wrapper {
        max-width: unset;
    }

    .amb-types-list {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
    }

    .amb-types-title {
        margin-bottom: 40px;
    }


}



@media (max-width: 649px) {
    .red-ftr-container {
        grid-template-columns: 1fr;
    }

    .wrapperMainFOoter {
        grid-template-columns: 1fr;
    }

    .footerPara {
        font-size: 23px;
        line-height: 38px;
        max-width: 80%;
        margin: 0 auto;
        margin-bottom: 0px;
        margin-bottom: 60px;
    }

    .footerAmbulaceIcon {
        max-width: 100%;
    }

    .footerAmbulaceIcon img {
        height: 60px;
        object-fit: contain;
        width: 60px;
    }

    .mainCarouselWrapper {
        padding: 50px 0px;
    }

    .nearMeHeading p {
        margin-top: 40px;
        font-size: 33px;
        text-align: center;
    }

    .tabPannerGrdi {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stateCityWrapper {
        position: relative;
        flex-direction: column;
    }

    .cityBox {
        color: #FF3434 !important;
    }

    /* CITY BOX AS BOTTOM SHEET */
    .cityBox {
        position: fixed;
        left: 0;
        bottom: -100%;
        width: 100%;
        height: 70vh;
        background: #fff;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
        display: block;
        transition: bottom 0.35s ease;
        z-index: 9999;
    }

    .cityBox.active {
        bottom: 0;
    }

    .cityHeader {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 18px;
        border-bottom: 1px solid #eee;
        font-weight: 600;
    }

    .cityClose {
        font-size: 26px;
        cursor: pointer;
    }

    .cityList {
        padding: 16px 18px;
        overflow-y: auto;
        height: calc(70vh - 60px);
    }

    .cityList p {
        padding: 12px 0;
        border-bottom: 1px solid #f1f1f1;
        font-size: 15px;
    }

    /* Optional dim background */
    body.city-open::after {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 9998;
    }

    .selectedCityLabel {
        margin: 10px 0 14px;
        padding: 10px 14px;
        background: #eef7ff;
        border-left: 4px solid #FF3434;
        font-size: 14px;
        color: #333;
        border-radius: 6px;
        width: 100%;
    }

    .selectedCityLabel span {
        font-weight: 600;
        color: #000000;
    }

    .cityList p {
        cursor: pointer;
    }

    .cityList p.active {
        color: #FF3434;
        font-weight: 600;
    }

    .stateBox {
        max-width: 100%;
        width: 327px;
    }

    .cardSecContent {
        font-size: 15px;
        line-height: 21px;


    }

    .smallcardSection {
        padding: 00px 0px;
    }
}

/* Hide selected city label on tablet & desktop */
@media (min-width: 769px) {
    .selectedCityLabel {
        display: none !important;
    }
}

/* Show selected city label on mobile */


.faqMainSec {
    display: none;
}

.health-carousel-container {
    display: none;
}

.linkFlexWrap{
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    margin-right: 100px;
}

.AdreeesSectionMain{
        display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width: 868px) {
    .selectedCityLabel {
        display: block;
    }
    .linkFlexWrap{
  
    margin-right: 100px;
}
.nearMeHeading p{
    font-size: 32px ;
    text-align: center;
    margin-top: 30px ;
    margin-bottom: 30px;
}
}
@media (max-width: 868px) {
  .nearMeHeading p{
font-size: 23px;
  }
    .linkFlexWrap {
    margin-right: 0px;
  }
  .wrapperMainFOoter{
    margin-top: 50px;
  }
  .red-ftr-wrapper{
    padding-top: 0px;
  }
}

.stateList p a{
    color: #fff;
}
.red-ftr-list li a:hover{
    color: #FF3434;
}