*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

/* Base Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0 0 25px 25px;
    margin: 0 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Top Info Bar */
.top-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0 0 25px 25px;
}

.info-item {
    display: flex;
    align-items: center;
    color: rgb(0, 0, 0);
    font-size: 14px;
    gap: 10px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00A9B6, #4babb2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-weight: 600;
    margin-bottom: 2px;
}

.info-value {
    opacity: 0.8;
    font-size: 12px;
}

/* Main Nav */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    position: relative;
}

.logo img {
    width: 30%;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #000;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 5px;
    list-style: none;
}

.nav-link {
    position: relative;
}

.nav-link a {
    display: block;
    padding: 12px 20px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}

.nav-link a:hover::before {
    left: 100%;
}

.nav-link a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-link.active a {
    box-shadow: 0 1px 5px #00A9B6;
}

/* Dropdown Content */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    backdrop-filter: blur(20px);
    border-radius: 15px;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 10px;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 15px 20px;
    color: #000;
    text-decoration: none;
    font-size: 13px;
    border-radius: 10px;
    margin: 5px;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .logo img {
        width: 50%;
    }
    .navbar {
        margin: 0;
        border-radius: 0;
    }

    .top-info {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        /* FULL viewport width */
        max-width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        padding: 100px 20px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links-container.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .nav-link a {
        width: 100%;
        padding: 14px 20px;
        display: block;
        border-radius: 10px;
        font-size: 12px;
    }

    .dropdown-content {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        background: rgba(0, 0, 0, 0.05);
        margin-left: 15px;
        padding-left: 10px;
        border-left: 3px solid #00A9B6;
    }

    .dropdown-content a {
        font-size: 14px;
        padding: 10px;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    /* Hamburger animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 767px) {
    .navbar {
        margin: 0;
        border-radius: 0;
    }

    .top-info {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        /* FULL viewport width */
        max-width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        padding: 100px 20px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links-container.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .nav-link a {
        width: 100%;
        padding: 14px 20px;
        display: block;
        border-radius: 10px;
        font-size: 15px;
    }

    .dropdown-content {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        background: rgba(0, 0, 0, 0.05);
        margin-left: 15px;
        padding-left: 10px;
        border-left: 3px solid #00A9B6;
    }

    .dropdown-content a {
        font-size: 14px;
        padding: 10px;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    /* Hamburger animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 1180px) {
    .logo img {
        width: 30%;
    }
     .navbar {
        margin: 0;
        border-radius: 0;
    }

    .top-info {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        /* FULL viewport width */
        max-width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        padding: 100px 20px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links-container.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .nav-link a {
        width: 100%;
        padding: 14px 20px;
        display: block;
        border-radius: 10px;
        font-size: 15px;
    }

    .dropdown-content {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        background: rgba(0, 0, 0, 0.05);
        margin-left: 15px;
        padding-left: 10px;
        border-left: 3px solid #00A9B6;
    }

    .dropdown-content a {
        font-size: 14px;
        padding: 10px;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    /* Hamburger animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.video-text-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 70vh;
    width: 100%;
    background: #f9f9f9;
}

.video-left {
    flex: 1;
    min-width: 50%;
    position: relative;
    overflow: hidden;
}

.video-wrapper {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
}

.promo-video {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center center;
}

.video-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.107);
    /* Semi-transparent overlay */
    z-index: 1;
}

.text-right {
    flex: 1;
    padding: 60px 40px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-right h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #0e3051;
}

.text-right .highlight-1 {
    color: #00A9B6;
    font-weight: bold;
}

.text-right p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
}

.features {
    list-style: none;
    padding-left: 0;
    margin: 0 0 25px 0;
}

.features li {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #555;
}

.desc {
    font-style: italic;
    color: #666;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .video-text-section {
        flex-direction: column;
        min-height: auto;
    }

    .video-left,
    .text-right {
        min-width: 100%;
        flex: 1 1 100%;
    }

    .video-wrapper {
        aspect-ratio: 16 / 9;
        height: auto;
    }

    .promo-video {
        object-fit: cover;
        height: auto;
    }

    .text-right {
        padding: 40px 20px;
        text-align: center;
    }

    .text-right h2 {
        font-size: 1.8rem;
    }

    .text-right p {
        font-size: 1rem;
    }

    .features {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .features li {
        width: 45%;
        font-size: 0.95rem;
        text-align: left;
    }

    .desc {
        font-size: 0.95rem;
        padding-top: 10px;
    }
}

@media (max-width: 576px) {
    .text-right h2 {
        font-size: 1.6rem;
    }

    .text-right p {
        font-size: 0.95rem;
    }

    .features li {
        width: 100%;
        font-size: 0.9rem;
    }

    .desc {
        font-size: 0.9rem;
    }
}

.hero-section {
    padding: 60px 20px;
    background-color: #00aab621;
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-wrap: wrap;
}

.slider {
    width: 620px;
    height: 340px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
    /* Glowing effect */
    box-shadow: 0 0 20px rgba(0, 170, 182, 0.3);
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 20px rgba(0, 170, 182, 0.3);
    }

    100% {
        box-shadow: 0 0 30px rgba(0, 170, 182, 0.6);
    }
}

.slider-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slides img {
    width: 33.3333%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.img-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.img-dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* === Text === */
.hero-text {
    max-width: 550px;
}

.badge {
    background-color: #fff;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 14px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-text h1 {
    font-size: 45px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.4;
}

.highlight {
    color: #0576f0;
}

.sub-text {
    color: #555;
    font-size: 15px;
    margin-bottom: 20px;
}

.savings {
    color: #d72828;
    font-weight: bold;
}

.bottom-note {
    font-size: 14px;
    color: #333;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0 20px;
    }

    .slider {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .slides {
        width: 300%;
        height: 100%;
    }

    .slides img {
        height: 100%;
        object-fit: cover;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-text h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .badge {
        font-size: 13px;
        padding: 5px 14px;
    }

    .sub-text {
        font-size: 14px;
    }

    .bottom-note {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 26px;
    }

    .sub-text {
        font-size: 13px;
    }

    .bottom-note {
        font-size: 12px;
    }

    .slider {
        aspect-ratio: 16 / 10;
    }

    .img-dot {
        width: 8px;
        height: 8px;
    }

    .badge {
        font-size: 12px;
        padding: 4px 12px;
    }
}

.mri-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
    gap: 50px;
    flex-wrap: wrap;
}

.mri-content {
    flex: 1 1 500px;
}

.mri-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    line-height: 1.3;
}

.mri-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background-color: #00cfe8;
    border-radius: 2px;
}

.mri-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-top: 20px;
}

.mri-image {
    flex: 1 1 400px;
    text-align: right;
}

.mri-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.loading {
    margin-left: 500px;
    margin-top: -60px;
}

.loading svg polyline {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.loading svg polyline#back {
    fill: none;
    stroke: #ff4d5033;
}

.loading svg polyline#front {
    fill: none;
    stroke: #ff0004;
    stroke-dasharray: 48, 144;
    stroke-dashoffset: 192;
    animation: dash_682 1.4s linear infinite;
}

@keyframes dash_682 {
    72.5% {
        opacity: 0;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@media (max-width: 991px) {
    .mri-section {
        flex-direction: column-reverse;
        padding: 60px 6%;
        gap: 40px;
    }

    .mri-content {
        flex: 1 1 100%;
        text-align: center;
    }

    .mri-content h2 {
        font-size: 2.2rem;
    }

    .mri-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .mri-content p {
        font-size: 0.95rem;
    }

    .mri-image {
        flex: 1 1 100%;
        text-align: center;
    }

    .mri-image img {
        width: 100%;
        max-width: 500px;
    }

    .loading {
        margin: 20px auto 0;
        transform: scale(0.9);
    }
}

@media (max-width: 576px) {
    .mri-section {
        padding: 40px 5%;
        gap: 30px;
    }

    .mri-content h2 {
        font-size: 1.8rem;
    }

    .mri-content p {
        font-size: 0.9rem;
    }

    .loading {
        transform: scale(0.8);
    }
}

.mri-services {
    padding: 60px 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

.mri-services h1 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #111;
}

.mri-services span {
    background: 50% 100% / 50% 50% no-repeat radial-gradient(ellipse at bottom, #00A9B6, transparent, transparent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 10vw;
    font-family: "Source Sans Pro", sans-serif;
    animation: reveal 3000ms ease-in-out forwards 200ms,
        glow 2500ms linear infinite 2000ms;
}

@keyframes reveal {
    80% {
        letter-spacing: 8px;
    }

    100% {
        background-size: 300% 300%;
    }
}

@keyframes glow {
    40% {
        text-shadow: 0 0 8px #fff;
    }
}


.mri-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Base Card Styling from Uiverse.io */
.card {
    width: 420px;
    height: 250px;
    background: #07182E;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
}

/* Image inside card */
.card img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 15px;
    z-index: 0;
}

/* Card Content Reveal on Hover */
.card-content {
    position: absolute;
    bottom: 0;
    padding: 20px;
    width: 100%;
    background: rgba(7, 24, 46, 0.8);
    color: #fff;
    opacity: 0;
    transition: 0.3s ease;
    z-index: 2;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.card:hover .card-content {
    opacity: 1;
}

.card-content h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.card-content p {
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .mri-services {
        padding: 40px 15px;
    }

    .mri-services h1 {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .mri-services span {
        font-size: 12vw;
    }

    .mri-cards {
        gap: 20px;
    }

    .card {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        height: 240px;
    }

    .card-content h3 {
        font-size: 18px;
    }

    .card-content p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .mri-services h1 {
        font-size: 30px;
    }

    .mri-services span {
        font-size: 14vw;
    }

    .card {
        height: 220px;
    }

    .card-content {
        padding: 15px;
    }

    .card-content h3 {
        font-size: 16px;
    }

    .card-content p {
        font-size: 12px;
    }
}

.counter-section {
    padding: 80px 20px;
    background: linear-gradient(to right, #0a828a, #005366);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    font-family: 'Arial', sans-serif;
    position: relative;
}

.glass-container {
    display: flex;
    gap: 40px;
    padding: 40px;
    border-radius: 25px;
    position: relative;
    backdrop-filter: blur(20px);
    background: #00A9B6;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.651);
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
}

.counter-box {
    width: 340px;
    text-align: center;
    color: #fff;
    position: relative;
}

.counter-box i {
    font-size: 46px;
    margin-bottom: 15px;
}

.counter-box h2 {
    font-size: 40px;
    margin-bottom: 8px;
}

.counter-box p {
    font-size: 16px;
    color: #d8eaff;
}

/* Shine Effect */
.shine-effect {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.1) 100%);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
    z-index: 1;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    50% {
        left: 125%;
    }

    100% {
        left: 125%;
    }
}

.counter-box,
.counter-box * {
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .counter-section {
        padding: 60px 15px;
    }

    .glass-container {
        gap: 30px;
        padding: 30px;
    }

    .counter-box {
        width: 280px;
    }

    .counter-box i {
        font-size: 38px;
        margin-bottom: 10px;
    }

    .counter-box h2 {
        font-size: 32px;
    }

    .counter-box p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .glass-container {
        flex-direction: column;
        padding: 25px 15px;
        gap: 20px;
    }

    .counter-box {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .counter-box i {
        font-size: 32px;
    }

    .counter-box h2 {
        font-size: 26px;
    }

    .counter-box p {
        font-size: 14px;
    }

    .shine-effect {
        display: none;
        /* Optional: hide shine animation on very small devices */
    }
}

.why-choose-us {
    padding: 60px 20px;
    background: #f7fafd;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.choose-header h1 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 0.4rem;
}

.choose-header p {
    color: #36ABB3;
    font-weight: 500;
    font-size: 1.1rem;
}

.choose-cards {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.choose-card {
    width: 200px;
    height: 170px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease-in-out;
    border-top: 4px solid transparent;
}

.choose-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* Icon styling */
.choose-card i {
    font-size: 32px;
    margin-bottom: 12px;
}

/* Card text */
.choose-card h2 {
    margin: 0;
    font-size: 1.4rem;
    color: #1c1c1c;
}

.choose-card p {
    margin: 4px 0 0;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 3px solid;
    padding-bottom: 2px;
}

/* Color-specific classes */
.card-red i,
.card-red p {
    color: #f07800;
    border-color: #f07800;
}

.card-purple i,
.card-purple p {
    color: #2730b0;
    border-color: #2730b0;
}

.card-blue i,
.card-blue p {
    color: #0a920a;
    border-color: #0a920a;
}

.card-green i,
.card-green p {
    color: #00d0ff;
    border-color: #00d0ff;
}

@media (max-width: 991px) {
    .choose-header h1 {
        font-size: 2rem;
    }

    .choose-header p {
        font-size: 1rem;
    }

    .choose-card {
        width: 180px;
        height: 160px;
        padding: 18px 10px;
    }

    .choose-card i {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .choose-card h2 {
        font-size: 1.2rem;
    }

    .choose-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .choose-cards {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .choose-card {
        width: 90%;
        max-width: 300px;
        height: auto;
        padding: 20px;
    }

    .choose-card i {
        font-size: 26px;
    }

    .choose-card h2 {
        font-size: 1.1rem;
    }

    .choose-card p {
        font-size: 0.85rem;
    }

    .choose-header h1 {
        font-size: 1.8rem;
    }

    .choose-header p {
        font-size: 0.95rem;
    }
}

.testimonial-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
}

.testimonial-section h1 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: #000000;
    margin-bottom: 70px;
}

.testimonial-slider {
    width: 800px;
    overflow: hidden;
    position: relative;
}

.slide-row {
    display: flex;
    width: 3200px;
    transition: transform 1s ease-in-out;
}

.slide-col {
    position: relative;
    width: 800px;
    height: 400px;
}

.testimonial-img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

.testimonial-img img {
    height: 100%;
    width: 320px;
    object-fit: cover;
    border-radius: 10px;
    pointer-events: none;
    user-select: none;
}

.content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 270px;
    color: #4d4352;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.5px);
    -webkit-backdrop-filter: blur(4.5px);
    border-radius: 10px;
    padding: 45px;
    z-index: 2;
    user-select: none;
}

.content p {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.3;
}

.content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 35px;
    color: #4d4352;
}

.indicator {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.indicator .btn {
    height: 15px;
    width: 15px;
    margin: 4px;
    border-radius: 15px;
    background: #191818;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.indicator .btn.active {
    width: 30px;
}

@media (max-width: 991px) {
    .testimonial-slider {
        width: 100%;
        max-width: 90vw;
    }

    .slide-row {
        width: 400%;
    }

    .slide-col {
        width: 100%;
        max-width: 90vw;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-bottom: 30px;
    }

    .testimonial-img {
        position: static;
        height: auto;
        width: 100%;
        max-width: 300px;
    }

    .testimonial-img img {
        width: 100%;
        height: auto;
    }

    .content {
        position: static;
        transform: none;
        width: 100%;
        max-width: 500px;
        height: auto;
        padding: 25px;
        text-align: center;
    }

    .content h2 {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .testimonial-section {
        padding: 40px 15px;
    }

    .testimonial-section h1 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .slide-col {
        width: 100%;
        max-width: 100%;
    }

    .testimonial-img img {
        border-radius: 8px;
    }

    .content {
        padding: 20px;
        font-size: 0.95rem;
    }

    .content p {
        font-size: 1.05rem;
    }

    .content h2 {
        font-size: 1.25rem;
    }

    .indicator {
        margin-top: 20px;
    }

    .indicator .btn {
        height: 12px;
        width: 12px;
    }

    .indicator .btn.active {
        width: 24px;
    }
}

.mri-section-1 {
    background-image: url('images/modern-hospital-machinery-illuminates-blue-mri-scanner-generated-by-ai\ \(1\).avif');
    /* Replace with actual image path */
    background-size: cover;
    background-position: center;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: 'Segoe UI', sans-serif;
}

.mri-overlay-1 {
    background: rgba(0, 0, 0, 0.716);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mri-content-1 {
    text-align: center;
    color: #ffffff;
}

.mri-content-1 h2 {
    font-size: 4.5rem;
    margin-bottom: 10px;
}

.mri-content-1 p {
    font-size: 2.1rem;
    margin-bottom: 20px;
}

.call-button {
    background-color: #00b894;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.4);
    display: inline-block;
}

.call-button:hover {
    background-color: #019875;
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 184, 148, 0.6);
}

@media (max-width: 991px) {
    .mri-section-1 {
        height: 220px;
        padding: 20px;
    }

    .mri-content-1 h2 {
        font-size: 3.2rem;
    }

    .mri-content-1 p {
        font-size: 1.6rem;
    }

    .call-button {
        font-size: 0.95rem;
        padding: 10px 22px;
    }
}

@media (max-width: 576px) {
    .mri-section-1 {
        height: auto;
        padding: 40px 20px;
        text-align: center;
    }

    .mri-content-1 h2 {
        font-size: 2.5rem;
    }

    .mri-content-1 p {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .call-button {
        font-size: 0.9rem;
        padding: 10px 20px;
        width: 100%;
        max-width: 320px;
    }
}

.google-review-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    color: #000000;
    border: 1px solid #ddd;
    border-right: none;
    padding: 10px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 9999;
    transition: width 0.3s ease, padding 0.3s ease;
    overflow: hidden;
    width: 80px;
    /* Only image visible by default */
}

.google-review-btn img {
    width: 70px;
    flex-shrink: 0;
}

.google-review-btn span {
    white-space: nowrap;
    opacity: 0;
    margin-left: 10px;
    transition: opacity 0.3s ease;
    color: #444;
    font-size: 14px;
}

.google-review-btn:hover {
    width: 220px;
    padding: 10px 15px;
    background-color: #f8f8f8;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.google-review-btn:hover span {
    opacity: 1;
}

/* Floating Button Container */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

/* Button Style */
.floating-button {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 40px;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp {
    background-color: #25D366;
}

.book-now {
    background-color: #007bff;
}

/* Icon Styling */
.floating-button svg {
    margin-right: 8px;
    width: 20px;
    height: 20px;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.floating-button i {
    margin-right: 8px;
    animation: pulse 2s infinite;
    flex-shrink: 0;
    font-size: 20px;
}

/* Icon Animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

@media (max-width: 768px) {
    .google-review-btn {
        top: auto;
        bottom: 100px;
        right: 10px;
        width: 60px;
        padding: 8px;
        border-radius: 50%;
        border-top-left-radius: 50%;
        border-bottom-left-radius: 50%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .google-review-btn:hover {
        width: 180px;
        padding: 10px 12px;
        border-radius: 30px;
    }

    .google-review-btn img {
        width: 50px;
    }

    .google-review-btn span {
        display: none;
    }

    .google-review-btn:hover span {
        display: inline;
        opacity: 1;
        font-size: 13px;
    }

    .floating-buttons {
        right: 10px;
        bottom: 20px;
        gap: 12px;
    }

    .floating-button {
        padding: 8px 14px;
        font-size: 13px;
        max-width: 240px;
        width: fit-content;
        white-space: nowrap;
    }

    .floating-button svg,
    .floating-button i {
        width: 18px;
        height: 18px;
        font-size: 18px;
        margin-right: 6px;
    }
}

@media (max-width: 480px) {
    .floating-button {
        font-size: 12.5px;
        padding: 8px 12px;
        max-width: 220px;
    }

    .floating-button svg,
    .floating-button i {
        width: 16px;
        height: 16px;
        font-size: 16px;
        margin-right: 5px;
    }

    .google-review-btn {
        right: 8px;
        bottom: 90px;
        width: 55px;
        padding: 6px;
    }

    .google-review-btn:hover {
        width: 160px;
        padding: 8px 10px;
    }

    .google-review-btn img {
        width: 45px;
    }

    .google-review-btn span {
        font-size: 12px;
    }
}

.footer {
    background-color: #12191f;
    color: #fff;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
    margin-top: 10px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-column {
    flex: 1 1 230px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    border-bottom: 2px solid #00A9B6;
    display: flex;
    align-items: center;
    padding-bottom: 5px;
}

.footer-column h3 i {
    margin-right: 8px;
    color: #00A9B6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin: 6px 0;
    font-size: 0.95rem;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-column ul li a i {
    margin-right: 8px;
    color: #00A9B6;
    min-width: 18px;
}

.footer-column ul li a:hover {
    color: #00A9B6;
}

.footer-column a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
}

.footer-link:hover,
.footer-column a:hover {
    color: #00A9B6;
}

.footer-column a i {
    margin-right: 8px;
    color: #00A9B6;
}

.footer-column p {
    margin: 8px 0;
    font-size: 0.95rem;
}

.footer-social {
    text-align: center;
    margin: 30px 0 10px;
}

.social-icon {
    display: inline-block;
    margin: 0 4px;
    background-color: #1e2a34;
    color: white;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-align: center;
}

.social-icon:hover {
    background-color: #00A9B6;
    transform: scale(1.1);
    color: #12191f;
}

.footer-bottom {
    text-align: center;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid #1f2a34;
    font-size: 0.9rem;
}

.footer-bottom span {
    color: #00A9B6;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .footer-top {
        justify-content: center;
        gap: 40px;
    }

    .footer-column iframe {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 16px 16px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-column {
        width: 100%;
    }

    .footer-column h3 {
        font-size: 1.1rem;
        padding-bottom: 4px;
    }

    .footer-column p,
    .footer-column ul li {
        font-size: 0.95rem;
    }

    .footer-column ul li a span,
    .footer-column a span {
        font-size: 0.9rem;
    }

    .footer-column iframe {
        width: 100%;
        height: 180px;
    }

    .footer-social {
        margin: 25px 0 10px;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 12px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 24px 12px 12px;
    }

    .footer-column h3 {
        font-size: 1rem;
    }

    .footer-column p,
    .footer-column ul li {
        font-size: 0.9rem;
    }

    .footer-column ul li a span,
    .footer-column a span {
        font-size: 0.85rem;
    }

    .footer-column iframe {
        height: 160px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 1rem;
        margin: 0 3px;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}