
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/ 
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/


/*** Navbar Start ***/

   /* ===== NAVBAR ===== */
/* ===== Topbar ===== */
.topbar {
    transition: all 0.4s ease;
}

/* ===== Navbar Wrapper ===== */
.nav-bar {
    width: 100%;
    transition: all 0.4s ease;
    z-index: 9999;
}

/* When scrolled */
.nav-bar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    background: #ffffff;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

/* Hide topbar on scroll */
.topbar.hide {
    transform: translateY(-100%);
    opacity: 0;
}

  
.nav-bar {
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    z-index: 999;
}

/* Logo size control */
.navbar-brand img {
    height: 56px;
    width: auto;
}

/* Nav links */
.navbar-light .navbar-nav .nav-link {
    color: #1F2933;
    font-weight: 600;
    padding: 22px 16px;
    transition: 0.3s ease;
}

/* Hover + Active */
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #0B8F7A;
}

/* Phone button */
.navbar .btn-lg-square {
    background: #0B8F7A;
    color: #ffffff;
    border: none;
}

.navbar .btn-lg-square i {
    color: #ffffff;
}

/* Comment icon badge */
.navbar .fa-comment-dots {
    color: #D32F2F;
}

/* Call text */
.navbar span {
    font-size: 14px;
    color: #6B7280;
}

.navbar a span.text-dark {
    color: #1F2933;
    font-weight: 700;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 15px 0;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 10px 18px;
    }
}
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}
/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
  background: linear-gradient(
    rgba(26, 163, 111, 0.88),
    rgba(10, 30, 25, 0.55)
), url(../img/bg-breadcrumb2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-light);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-white);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/


  html, body {
    max-width: 100%;
    overflow-x: hidden !important;
}

        
     /* ===== HERO PREMIUM ===== */
.hospital-hero-premium {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(135deg, #E8FFF6, #FFF2F2);
    overflow: hidden;
}

/* Decorative blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.blob-green {
    width: 260px;
    height: 260px;
    background: #0B8F7A;
    top: -80px;
    left: -80px;
}

.blob-pink {
    width: 300px;
    height: 300px;
    background: #F87171;
    bottom: -100px;
    right: -100px;
}

/* Glass card */
.hero-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 24px 120px 24px 24px;
    padding: 46px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
    border-left: 6px solid #0B8F7A;
}

/* Chip */
.hero-chip {
    display: inline-block;
    background: linear-gradient(135deg, #0B8F7A, #14B8A6);
    color: #fff;
    padding: 7px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Heading */
.hero-card h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #1F2933;
    margin-bottom: 18px;
}

/* Text */
.hero-card p {
    font-size: 16.5px;
    line-height: 1.75;
    color: #4B5563;
    margin-bottom: 30px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary-hero {
    background: linear-gradient(135deg, #D32F2F, #F87171);
    color: #fff;
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(211,47,47,0.35);
}

.btn-primary-hero:hover {
    opacity: 0.9;
    color: #fff;
}

.btn-outline-hero {
    border: 2px solid #0B8F7A;
    color: #0B8F7A;
    padding: 11px 26px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

.btn-outline-hero:hover {
    background: #0B8F7A;
    color: #fff;
}

/* Image box */
.hero-image-box {
    position: relative;
    padding-left: 40px;
}

.hero-image-box img {
    width: 100%;
    border-radius: 26px;
    box-shadow: 0 35px 80px rgba(0,0,0,0.2);
}

/* Image badge */
.image-badge {
    position: absolute;
    bottom: -18px;
    left: 30px;
    background: #0B8F7A;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hospital-hero-premium {
        padding: 30px 0;
    }

    .hero-card {
        text-align: center;
        border-radius: 24px;
        padding: 34px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-box {
        padding-left: 0;
        margin-top: 40px;
    }

    .hero-card h1 {
        font-size: 30px;
    }
}
   
    /* ===== TRUST SECTION ===== */
.trust-section {
    padding: 50px 0;
    background: linear-gradient(180deg, #ffffff, #F6FFFB);
}

/* Header */
.section-header {
    max-width: 720px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    background: rgba(11,143,122,0.12);
    color: #0B8F7A;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1F2933;
    margin-bottom: 14px;
}

.section-header p {
    font-size: 16px;
    color: #5F6C72;
    line-height: 1.7;
}

/* Cards */
.trust-card {
    background: #ffffff;
    padding: 38px 28px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.15);
}

/* Icon */
.icon-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
}

/* Icon Colors */
.icon-circle.green { background: linear-gradient(135deg, #0B8F7A, #14B8A6); }
.icon-circle.blue  { background: linear-gradient(135deg, #2563EB, #60A5FA); }
.icon-circle.pink  { background: linear-gradient(135deg, #DB2777, #F472B6); }
.icon-circle.orange{ background: linear-gradient(135deg, #EA580C, #FDBA74); }

.trust-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1F2933;
}

.trust-card p {
    font-size: 14.8px;
    color: #5F6C72;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }
}
    /* ===== Insurance Section ===== */
.insurance-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #ECFEFF, #F0FDFA);
}

/* Header */
.insurance-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.insurance-header span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #0F766E;
    text-transform: uppercase;
}

.insurance-header h2 {
    font-size: 38px;
    font-weight: 800;
    margin: 12px 0;
    color: #064E3B;
}

.insurance-header p {
    font-size: 16px;
    color: #475569;
}

/* Grid */
.insurance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Tile */
.insurance-tile {
    background: #ffffff;
    border-radius: 26px;
    padding: 34px 26px 28px;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.insurance-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    background: linear-gradient(135deg, #14B8A6, #22C55E);
    opacity: 0;
    transition: 0.4s ease;
    z-index: -1;
}

.insurance-tile:hover {
    transform: translateY(-10px);
}

.insurance-tile:hover::before {
    opacity: 1;
}

.insurance-tile h5 {
    font-size: 18px;
    font-weight: 700;
    color: #064E3B;
    margin-bottom: 8px;
}

.insurance-tile p {
    font-size: 14px;
    color: #475569;
    margin-bottom: 22px;
    line-height: 1.6;
}

/* Logo Bottom */
.insurance-tile img {
    max-height: 55px;
    max-width: 140px;
    object-fit: contain;
    margin-top: auto;
}

/* Footer Button */
.insurance-footer {
    margin-top: 60px;
    text-align: center;
}

.insurance-btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    background: linear-gradient(135deg, #14B8A6, #22C55E);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.insurance-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(34,197,94,0.35);
}

/* Responsive */
@media (max-width: 992px) {
    .insurance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .insurance-grid {
        grid-template-columns: 1fr;
    }

    .insurance-header h2 {
        font-size: 28px;
    }
}
/* ===== Facilities Showcase ===== */
.facility-showcase {
    padding: 50px 0;
    background: linear-gradient(180deg, #FFFFFF, #F8FFFD);
}

/* Header */
.facility-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 80px;
}

.facility-header span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #0F766E;
    text-transform: uppercase;
}

.facility-header h2 {
    font-size: 38px;
    font-weight: 800;
    margin: 14px 0;
    color: #064E3B;
}

.facility-header p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}

/* Row */
.facility-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 90px;
}

.facility-row.reverse {
    flex-direction: row-reverse;
}

/* Image */
.facility-image {
    flex: 1;
}

.facility-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 35px 80px rgba(0,0,0,0.18);
}

/* Content */
.facility-content {
    flex: 1;
    position: relative;
}

/* Glass box */
.facility-glass {
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(16px);
    border-radius: 26px;
    padding: 40px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.12);
    border-left: 6px solid #0F766E;
}

.facility-glass h4 {
    font-size: 24px;
    font-weight: 700;
    color: #064E3B;
    margin-bottom: 12px;
}

.facility-glass p {
    font-size: 15.5px;
    color: #475569;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
    .facility-row,
    .facility-row.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .facility-image img {
        height: 300px;
    }

    .facility-glass {
        padding: 30px;
        text-align: center;
        border-left: none;
        border-top: 5px solid #0F766E;
    }
}

@media (max-width: 576px) {
    .facility-header h2 {
        font-size: 28px;
    }
}
/* Google Reviews Section */
.google-reviews-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #e8f7f1, #ffffff);
}

/* LEFT SUMMARY */
.review-summary h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0b5f4a;
    margin-bottom: 20px;
}

.rating-box {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.rating {
    font-size: 64px;
    font-weight: 900;
    color: #16a085;
}

.stars {
    font-size: 24px;
    color: #f4c430;
    margin: 10px 0;
}

.btn-review {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background: #16a085;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* REVIEW CARDS */
.review-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.review-card {
    background: rgba(255,255,255,0.85);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-6px);
}

.review-head {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.avatar {
    width: 45px;
    height: 45px;
    background: #16a085;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.review-card h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.review-card small {
    color: #888;
}

.review-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* Mobile */
@media (max-width: 768px) {
    .review-summary h2 {
        font-size: 28px;
    }
    .rating {
        font-size: 48px;
    }
}
/* Footer */
.hospital-footer {
    background: #0f3d2e;
    color: #e5f5ef;
    padding: 70px 0 30px;
}

.footer-about img {
    max-width: 180px;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 15px;
    line-height: 1.7;
    color: #d8efe6;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-links li a {
    color: #d8efe6;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #5ad3b2;
}

.footer-contact li {
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-contact i {
    color: #5ad3b2;
    margin-right: 10px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #cdeee3;
}

/* Mobile */
@media (max-width: 768px) {
    .hospital-footer {
        text-align: center;
    }

    .footer-contact li i {
        display: block;
        margin-bottom: 5px;
    }
}

   /* Emergency Call - Hidden by default (Desktop) */
.emergency-call-mobile {
    display: none;
}

/* Mobile Only */
@media (max-width: 768px) {
    .emergency-call-mobile {
        position: fixed;
        left: 15px;
        bottom: 32px; /* Above browser UI, not touching scroll-up */
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, #0f9d58, #0b6e3e);
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        z-index: 9999;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
        animation: pulse-call 1.5s infinite;
        text-decoration: none;
    }

    .emergency-call-mobile:hover {
        transform: scale(1.05);
    }
}

/* Pulse Animation */
@keyframes pulse-call {
    0% {
        box-shadow: 0 0 0 0 rgba(15, 157, 88, 0.6);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(15, 157, 88, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(15, 157, 88, 0);
    }
}
 /* =========================
   About - Who We Are
========================= */
.about-who-we-are {
    padding: 50px 0;
    background: #ffffff;
}

/* Tag */
.about-tag {
    display: inline-block;
    background: rgba(26, 163, 111, 0.12);
    color: #1aa36f;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 14px;
}

/* Heading */
.about-who-we-are h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
    line-height: 1.25;
}

/* Lead paragraph */
.about-lead {
    font-size: 17px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 14px;
}

/* Paragraphs */
.about-who-we-are p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 14px;
}

/* Highlight Box */
.about-highlight-box {
    background: linear-gradient(135deg, #e9f7f1, #ffffff);
    border-left: 6px solid #1aa36f;
    border-radius: 22px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.about-highlight-box h4 {
    font-size: 22px;
    font-weight: 700;
    color: #064e3b;
    margin-bottom: 18px;
}

/* List */
.about-highlight-box ul {
    padding-left: 18px;
    margin: 0;
}

.about-highlight-box li {
    font-size: 15px;
    color: #334155;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .about-who-we-are {
        padding: 70px 0;
        text-align: center;
    }

    .about-who-we-are h2 {
        font-size: 28px;
    }

    .about-highlight-box {
        margin-top: 30px;
        padding: 30px;
        text-align: left;
    }
}
   
    /* =========================
   About - Vision & Mission
========================= */
.about-vision-mission {
    padding: 50px 0;
    background: linear-gradient(180deg, #f9fffd, #ffffff);
}

/* Box */
.vm-box {
    height: 100%;
    background: #ffffff;
    border-radius: 24px;
    padding: 45px 40px;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

/* Soft accent background */
.vm-box::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: rgba(26, 163, 111, 0.12);
    border-radius: 50%;
}

/* Icon */
.vm-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1aa36f, #22c55e);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}

/* Headings */
.vm-box h3 {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

/* Text */
.vm-box p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #475569;
}

/* Mission slight variation */
.mission-box {
    background: linear-gradient(135deg, #ffffff, #ecfdf5);
}

/* Responsive */
@media (max-width: 768px) {
    .about-vision-mission {
        padding: 70px 0;
    }

    .vm-box {
        padding: 35px 30px;
        text-align: center;
    }

    .vm-icon {
        margin-left: auto;
        margin-right: auto;
    }
}
    /* =========================
   Doctor Profile Section
========================= */
.doctor-profile-section {
    padding: 50px 0;
    background: linear-gradient(180deg, #ffffff, #f9fffd);
}

/* Image Box */
.doctor-image-box {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.18);
}

.doctor-image-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content */
.doctor-content {
    padding-left: 20px;
}

/* Tag */
.doctor-tag {
    display: inline-block;
    background: rgba(26, 163, 111, 0.12);
    color: #1aa36f;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 14px;
}

/* Name */
.doctor-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

/* Qualification */
.doctor-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: #059669;
    margin-bottom: 22px;
}

/* Message */
.doctor-message {
    font-size: 15.8px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .doctor-profile-section {
        padding: 80px 0;
        text-align: center;
    }

    .doctor-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .doctor-content h2 {
        font-size: 28px;
    }
}
   /* =========================
   Facilities - Overview
========================= */
.facilities-overview {
    padding: 50px 0;
    background: linear-gradient(180deg, #ffffff, #f9fffd);
}

/* Header */
.facilities-header {
    max-width: 760px;
    margin: 0 auto 50px;
}

.facilities-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    margin: 12px 0;
}

.facilities-header p {
    font-size: 16px;
    color: #475569;
}

/* Facility Box */
.facility-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    text-align: center;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.facility-box i {
    font-size: 42px;
    color: #1aa36f;
    margin-bottom: 18px;
}

.facility-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.facility-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
}

/* Hover */
.facility-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 768px) {
    .facilities-overview {
        padding: 80px 0;
    }

    .facilities-header h2 {
        font-size: 28px;
    }
}

        
        
        /* =========================
   Hospital Gallery
========================= */
.hospital-gallery {
    padding: 50px 0;
    background: #ffffff;
}

.gallery-header {
    max-width: 760px;
    margin: 0 auto 50px;
}

.gallery-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    margin: 12px 0;
}

.gallery-header p {
    font-size: 16px;
    color: #475569;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.12);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Responsive */
@media (max-width: 768px) {
    .hospital-gallery {
        padding: 80px 0;
    }

    .gallery-header h2 {
        font-size: 28px;
    }

    .gallery-item img {
        height: 220px;
    }
}
      
    /* =========================
   Gallery Lightbox
========================= */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.gallery-lightbox.active {
    display: flex;
}

.gl-image {
    max-width: 90%;
    max-height: 85%;
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

/* Controls */
.gl-close,
.gl-prev,
.gl-next {
    position: absolute;
    color: #ffffff;
    font-size: 36px;
    cursor: pointer;
    user-select: none;
    padding: 12px;
}

.gl-close {
    top: 20px;
    right: 30px;
    font-size: 40px;
}

.gl-prev {
    left: 20px;
}

.gl-next {
    right: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .gl-prev,
    .gl-next {
        font-size: 28px;
    }

    .gl-close {
        font-size: 32px;
    }
}
    /* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, #e6f7f5, #ffffff);
    padding: 50px 15px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #0f3d3e;
}

.contact-hero p {
    font-size: 17px;
    max-width: 700px;
    margin: 15px auto 0;
    color: #555;
}

/* Contact Section */
.contact-section {
    padding: 20px 0;
    background: #ffffff;
}

/* Info Card */
.contact-info-card {
    background: #f8fffe;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-info-card h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #0f3d3e;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.info-item i {
    font-size: 20px;
    color: #1aa6a6;
    margin-top: 5px;
}

/* Form Card */
.contact-form-card {
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.1);
    backdrop-filter: blur(8px);
}

.contact-form-card h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #0f3d3e;
}

.form-control {
    border-radius: 12px;
    padding: 14px 16px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: #1aa6a6;
    box-shadow: none;
}

.btn-submit {
    background: #1aa6a6;
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #148c8c;
}

/* Map */
.contact-map iframe {
    width: 100%;
    height: 420px;
    border: none;
}

/* Emergency Strip */
.emergency-strip {
    background: #0f3d3e;
    padding: 35px 0;
    color: #fff;
}

.emergency-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.emergency-box i {
    font-size: 40px;
}

.emergency-box a {
    background: #ffffff;
    color: #0f3d3e;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 30px;
    }
    .contact-info-card,
    .contact-form-card {
        padding: 30px;
    }
}
      
 .insurance-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f2fdfb, #fff7f2);
}

.insurance-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
}

.insurance-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f3d3e;
    margin-bottom: 15px;
}

.insurance-header p {
    font-size: 17px;
    color: #555;
}

.insurance-title {
    font-size: 26px;
    font-weight: 600;
    color: #0f3d3e;
    margin-bottom: 30px;
}

.insurance-block {
    margin-bottom: 60px;
}

/* Insurance Card */
.insurance-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    backdrop-filter: blur(6px);
}

.insurance-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.insurance-card img {
    max-height: 60px;
    margin-bottom: 12px;
}

.insurance-card span {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

/* Govt Highlight */
.insurance-card.govt {
    border-left: 4px solid #1aa6a6;
}

/* Note */
.insurance-note {
    text-align: center;
    margin-top: 40px;
}

.insurance-note p {
    font-size: 15px;
    color: #555;
}

/* Mobile */
@media (max-width: 768px) {
    .insurance-header h2 {
        font-size: 28px;
    }
    .insurance-title {
        font-size: 22px;
    }
}
            
