:root {
    --primary: #0bb6a8;
    --dark-blue: #0f4c81;
    --light-bg: #f3f6f7;
    --text-muted: #6c757d;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light-bg);
    color: #1c1c1c;
    line-height: 1.6;
    overflow-x: hidden;
}

body.sticky-active {
    padding-top: 90px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

.section-padding {
    padding: 80px 0;
}

.section-padding-sm {
    padding: 50px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.radius-lg {
    border-radius: 20px;
}

.radius-md {
    border-radius: 12px;
}

.shadow-soft {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.transition {
    transition: all 0.4s ease;
}

.btn-custom {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-custom {
    border: 1px solid #0066ff;
    color: #0066ff;
    background: transparent;
}

.btn-outline-custom:hover {
    background: #0066ff;
    color: #fff;
}

.card-custom {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-custom:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.svg-bg {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.svg-animate {
    position: absolute;
    animation: float 8s ease-in-out infinite;
    opacity: 0.15;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-shadow:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

#mainHeader {
    position: relative;
    z-index: 1000;
}

@media (max-width: 992px) {
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.top-info-bar {
    background: linear-gradient(90deg, #0b2c44, #1e6f7a);
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
    transition: all 0.4s ease;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-navbar {
    background: #f2f2f2;
    padding: 18px 0;
    transition: all 0.4s ease;
    z-index: 999;
}

.main-navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo-img {
    height: 55px;
    width: auto;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
    padding: 8px 18px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #1e6f7a;
}

.navbar-nav .nav-link.active {
    background: #e6edf2;
    border-radius: 30px;
    padding: 8px 18px;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #1e6f7a, var(--primary));
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 111, 122, 0.3);
}

@media (max-width: 992px) {

    .top-info-bar {
        display: none;
    }

    .main-navbar {
        padding: 12px 0;
    }

    .navbar-collapse {
        background: var(--light-bg);
        padding: 20px;
        border-radius: 12px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .navbar-nav {
        align-items: flex-start;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding: 10px 0;
        width: 100%;
    }

    .navbar-nav .nav-link.active {
        background: #e6edf2;
        border-radius: 8px;
        padding-left: 15px;
    }

    .btn-primary-custom {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

.hero-section {
    position: relative;
    height: 80vh;
    min-height: 650px;
    overflow: hidden;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8, 40, 70, 0.75), rgba(8, 40, 70, 0.55));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 50px;
    border-radius: 25px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-tag {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 54px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.hero-content p {
    color: #e9ecef;
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-light-custom {
    background: #ffffff;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 500;
    border: none;
}

.carousel-control-prev,
.carousel-control-next {
    display: none !important;
}

.carousel-indicators {
    bottom: 25px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 0.5;
}

.carousel-indicators .active {
    opacity: 1;
    width: 25px;
    border-radius: 20px;
}

@media (max-width: 992px) {

    .hero-section {
        height: 80vh;
        min-height: 600px;
    }

    .hero-content {
        padding: 30px;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

.hero-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.3s ease;
}



.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

.hero-control:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 992px) {
    .hero-control {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .hero-prev {
        left: 15px;
    }

    .hero-next {
        right: 15px;
    }
}

.about-section {
    background: linear-gradient(135deg, #e9f2f4, #ffffff, #e9f2f4);
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 25px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge h3 {
    font-size: 32px;
    color: var(--primary);
    margin: 0;
}

.experience-badge p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
}

.section-tag {
    color: var(--primary);
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
}

.about-content h2 {
    font-size: 48px;
    font-weight: 600;
    margin: 20px 0;
}

.about-content p {
    color: #5c6b73;
    margin-bottom: 20px;
    line-height: 1.8;
}

.stat-card {
    background: #f3f5f6;
    padding: 40px 20px;
    text-align: center;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.stat-card i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 15px;
}

.stat-card h4 {
    font-size: 28px;
    font-weight: 600;
}

.stat-card p {
    color: var(--text-muted);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 992px) {

    .about-content h2 {
        font-size: 32px;
    }

    .experience-badge {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        margin-top: -30px;
    }
}

.specialities-section {
    background: var(--light-bg);
}

.section-title-lg {
    font-size: 42px;
    font-weight: 600;
    margin-top: 8px;
    margin-bottom: 12px;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 15px;
}

.speciality-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 18px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.speciality-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1e6f7a, var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.icon-box i {
    color: #fff;
    font-size: 18px;
}

.speciality-card h4 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
}

.speciality-card p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 14px;
}

.learn-more {
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.learn-more:hover {
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .section-title-lg {
        font-size: 28px;
    }

    .speciality-card {
        padding: 22px;
    }
}

.doctors-section {
    background: var(--light-bg);
}

.highlight-text {
    color: var(--primary);
    ;
}

.doctor-card {
    display: flex;
    gap: 30px;
    background: #ffffff;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.doctor-img {
    flex: 0 0 38%;
    max-width: 38%;
    border-radius: 20px;
    overflow: hidden;
}

.doctor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.doctor-info {
    flex: 1;
}

@media (max-width: 992px) {

    .doctor-card {
        flex-direction: column;
        padding: 22px;
    }

    .doctor-img {
        flex: unset;
        max-width: 100%;
        height: 320px;
    }

    .doctor-img img {
        height: 100%;
    }
}

.facilities-section {
    background: var(--light-bg);
}

/* ================= FACILITIES GALLERY ================= */

.facilities-gallery {
    background: linear-gradient(180deg, #f8fafc 0%, #eef3f6 100%);
}

.facility-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

.facility-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facility-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.08);
}

.facility-card:hover img {
    transform: scale(1.08);
}

.facility-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.15));
    opacity: 0;
    transition: all 0.3s ease;
}

.facility-overlay h5 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.facility-card:hover .facility-overlay {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .facility-card img {
        height: 200px;
    }
}

.facility-large,
.facility-small {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    height: 100%;
}

.facility-large img,
.facility-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.facility-large {
    height: 520px;
}

.facility-small {
    height: 245px;
}

.facility-large::after,
.facility-small::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.1));
}

.facility-label {
    position: absolute;
    bottom: 18px;
    left: 20px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    z-index: 2;
}

.facility-large:hover img,
.facility-small:hover img {
    transform: scale(1.08);
}

@media (max-width: 992px) {

    .facility-large {
        height: 380px;
    }

    .facility-small {
        height: 200px;
    }
}

@media (max-width: 768px) {

    .facility-large,
    .facility-small {
        height: 260px;
    }
}

.testimonials-section {
    background: linear-gradient(135deg,
            hsl(var(--secondary)),
            hsl(var(--background)),
            hsl(var(--secondary)));
}

.testimonial-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 22px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.quote-icon {
    margin-bottom: 18px;
}

.quote-svg {
    width: 36px;
    height: 36px;
    color: rgba(11, 182, 168, 0.25);
}

.testimonial-card:hover .quote-svg {
    transform: scale(1.05);
    transition: 0.3s ease;
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #5c6b73;
    margin-bottom: 18px;
}

.stars {
    color: #f5a623;
    font-size: 14px;
    margin-bottom: 12px;
}

.testimonial-card h6 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-card span {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .testimonial-card {
        padding: 22px;
    }
}

.testimonialSwiper .swiper-slide {
    height: auto;
}

.testimonialSwiper {
    padding-bottom: 40px;
}

.visit-section {
    background: linear-gradient(135deg,
            hsl(var(--secondary)),
            hsl(var(--background)),
            hsl(var(--secondary)));
}

.map-wrapper {
    height: 420px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-card h4 {
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
}

.icon-box-sm {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #e8f5f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item strong {
    font-size: 14px;
    display: block;
}

.contact-item p {
    font-size: 14px;
    color: #5c6b73;
    margin: 3px 0 0;
    line-height: 1.6;
}

@media (max-width: 992px) {

    .map-wrapper {
        height: 320px;
    }

    .contact-card {
        padding: 24px;
    }
}

.cta-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--dark-blue), #1ca39c);
    color: #ffffff;
    overflow: hidden;
}

.cta-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}

.cta-section h2 {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 18px;
}

.cta-section p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: #ffffff;
    color: var(--dark-blue);
    padding: 16px 38px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-cta-outline {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    padding: 16px 38px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

@media (max-width: 768px) {

    .cta-section {
        padding: 70px 20px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-section p {
        font-size: 15px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-cta-primary,
    .btn-cta-outline {
        width: 100%;
        text-align: center;
    }
}

.footer-section {
    background: linear-gradient(135deg, var(--dark-blue), #1ca39c);
    color: #ffffff;
    padding: 80px 0 30px;
}

.footer-logo img {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 320px;
}

.footer-section h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact-item i {
    font-size: 18px;
    opacity: 0.9;
}

.footer-contact-item span {
    font-size: 14px;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 60px 20px 30px;
    }

    .footer-desc {
        max-width: 100%;
    }
}




/* ====================================
   COMPACT INNER HERO (35vh)
==================================== */

.inner-hero {
    position: relative;
    padding-top: 7rem;
    padding-bottom: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1b6fa8 0%, #2da79f 100%);
    overflow: hidden;
    color: #fff;
}

/* Soft background circle */
.inner-hero::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

/* Content */
.inner-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 15px;
}

.inner-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 12px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.inner-hero h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
}

.inner-hero p {
    font-size: 16px;
    opacity: 0.95;
}

/* Bottom wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* Responsive */
@media (max-width: 768px) {
    .inner-hero {
        height: 30vh;
        min-height: 220px;
    }

    .inner-hero h1 {
        font-size: 26px;
    }

    .inner-hero p {
        font-size: 14px;
    }
}

























/* ==========================================
   ABOUT STORY SECTION
========================================== */

.about-story-section {
    padding: 100px 0;
    background: linear-gradient(180deg,
            hsl(210 30% 98%) 0%,
            hsl(195 40% 96%) 100%);
}

.about-story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.about-story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content */
.about-story-content h2 {
    font-size: 34px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.about-story-content p {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-story-section {
        padding: 70px 0;
    }

    .about-story-content h2 {
        font-size: 28px;
    }
}






























/* ======================================
   MISSION / VISION SECTION (COMPACT)
====================================== */

.mission-section {
    background: var(--light-bg);
    padding: 70px 0;
    /* pehle zyada tha */
}

.mission-card {
    background: #ffffff;
    padding: 30px 25px;
    /* reduced */
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
}

/* Icon Box Smaller */

.mission-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
            var(--dark-blue),
            var(--primary));
}

.mission-icon i {
    color: #fff;
    font-size: 20px;
    /* smaller */
}

/* Text Smaller */

.mission-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.mission-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}



















/* ======================================
   COMPACT JOURNEY SECTION
====================================== */

.journey-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8fbfc, #eef7f8);
}

.journey-bg-svg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.08;
    /* softer */
}

.blob {
    fill: var(--primary);
    animation: floatBlob 10s ease-in-out infinite alternate;
}

.blob-2 {
    fill: var(--dark-blue);
    animation-delay: 3s;
}

@keyframes floatBlob {
    0% {
        transform: translateY(0px) scale(1);
    }

    100% {
        transform: translateY(-20px) scale(1.05);
    }
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    /* thinner line */
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--dark-blue));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 15px 30px;
    /* reduced */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
}

.timeline-content {
    background: #fff;
    padding: 18px;
    /* smaller card */
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.timeline-content .year {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 6px;
}

.timeline-content h5 {
    font-size: 16px;
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 25px;
    width: 14px;
    height: 14px;
    background: linear-gradient(45deg, var(--primary), var(--dark-blue));
    border-radius: 50%;
    left: calc(100% - 7px);
    z-index: 2;
}

.timeline-item.right::after {
    left: -7px;
}

.timeline-item.show {
    opacity: 1;
    transform: translateY(0);
}

@media(max-width:768px) {
    .timeline::before {
        left: 8px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 30px;
        text-align: left;
        left: 0 !important;
    }

    .timeline-item::after {
        left: 1px !important;
    }
}




/* ======================================
   INFRASTRUCTURE SECTION (COMPACT)
====================================== */

.infrastructure-section {
    background: var(--light-bg);
    padding: 60px 0;
}

.infra-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.infra-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.infra-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.infra-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.infra-card:hover img {
    transform: scale(1.06);
}

@media(max-width:768px) {
    .infra-card img {
        height: 200px;
    }
}

/* Overlay Title */
.infra-card {
    position: relative;
}

.infra-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
    color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
}

.infra-overlay h5 {
    font-size: 15px;
    margin: 0;
}

.infra-card:hover .infra-overlay {
    opacity: 1;
}


/* ================= GALLERY MODAL ================= */

.infra-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
}

.infra-modal-img {
    max-width: 85%;
    max-height: 75vh;
    border-radius: 14px;
    transition: all 0.4s ease;
}

.infra-modal-caption {
    margin-top: 18px;
    color: #fff;
    font-size: 16px;
}

.infra-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
}

.infra-prev,
.infra-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    user-select: none;
}

.infra-prev {
    left: 30px;
}

.infra-next {
    right: 30px;
}

.infra-prev:hover,
.infra-next:hover {
    color: var(--primary);
}

/* Overlay Title */
.infra-card {
    position: relative;
}

.infra-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
    color: #fff;
    opacity: 0;
    transition: .3s ease;
}

.infra-overlay h5 {
    font-size: 15px;
    margin: 0;
}

.infra-card:hover .infra-overlay {
    opacity: 1;
}




























/* ================= DOCTOR DETAIL SECTION ================= */

.doctor-detail-section {
    background: linear-gradient(180deg, hsl(210 30% 98%) 0%, hsl(195 40% 96%) 100%);
}

/* LEFT PROFILE CARD */
.doctor-profile-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.doctor-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.doctor-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* INFO SECTION */
.doctor-info {
    padding: 26px;
}

.doctor-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.designation {
    display: block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

/* META */
.doctor-meta {
    list-style: none;
    padding: 0;
    margin: 0;
}

.doctor-meta li {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.doctor-meta i {
    color: var(--primary);
    font-size: 15px;
}

/* RIGHT CONTENT */
.doctor-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.doctor-content h5 {
    font-size: 16px;
    font-weight: 600;
}

.doctor-content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
}

/* EXPERTISE TAGS */
.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.expertise-tags span {
    background: #eef3f7;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--dark-blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s ease;
}

.expertise-tags span i {
    color: var(--primary);
    font-size: 13px;
}

.expertise-tags span:hover {
    background: var(--primary);
    color: #fff;
}

.expertise-tags span:hover i {
    color: #fff;
}

/* PHILOSOPHY BOX */
.philosophy-box {
    background: #ffffff;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.philosophy-box p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0;
}

/* BUTTON */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary));
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.3s ease;
}

.btn-primary-custom:hover {
    opacity: 0.9;
}






















/* ================= SPECIALITIES SECTION ================= */

.specialities-section {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f5 100%);
}

.speciality-card-page {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.speciality-card-page:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

/* Icon Box */
.speciality-icon {
    min-width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

/* Content */
.speciality-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.speciality-content p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.speciality-content h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Procedure Tags */
.procedure-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.procedure-tags span {
    background: #e8edf3;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    color: var(--dark-blue);
    font-weight: 500;
    transition: all 0.3s ease;
}

.procedure-tags span:hover {
    background: var(--primary);
    color: #fff;
}

/* Consult Link */
.consult-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--dark-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.consult-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}

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

@media (max-width: 992px) {
    .speciality-card-page {
        flex-direction: column;
        padding: 22px;
    }

    .speciality-icon {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }

    .speciality-content h3 {
        font-size: 18px;
    }
}



















/* ================= CONTACT SECTION ================= */

.contact-section {
    background: var(--light-bg);
}

/* LEFT INFO CARD */

.contact-info-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    border: 1px solid #e9eef2;
    box-shadow: 0 10px 30px rgba(15, 76, 129, 0.05);
    height: 100%;
}

.contact-info-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
}

.contact-item i {
    font-size: 18px;
    color: var(--primary);
    background: rgba(11, 182, 168, 0.12);
    padding: 9px;
    border-radius: 10px;
    min-width: 38px;
    text-align: center;
}

.contact-item strong {
    display: block;
    font-size: 14px;
    color: var(--dark-blue);
    margin-bottom: 3px;
}

.contact-item p {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}


/* RIGHT FORM CARD */

.contact-form-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    border: 1px solid #e9eef2;
    box-shadow: 0 10px 30px rgba(15, 76, 129, 0.05);
}

.contact-form-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 25px;
}

/* FORM FIELDS */

.contact-form-card .form-control {
    height: 46px;
    border-radius: 10px;
    border: 1px solid #dde5ec;
    font-size: 13px;
    padding: 10px 14px;
    transition: all 0.25s ease;
}

.contact-form-card textarea.form-control {
    height: auto;
}

.contact-form-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.15rem rgba(11, 182, 168, 0.15);
}

/* BUTTON MATCH WEBSITE STYLE */

.contact-form-card .btn-primary-custom {
    background: var(--primary);
    border: none;
    padding: 11px 26px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s ease;
}

.contact-form-card .btn-primary-custom:hover {
    background: var(--dark-blue);
}


/* ================= MAP ================= */

.contact-map {
    margin-top: 60px;
}

.map-container iframe {
    width: 100%;
    height: 380px;
    border: none;
    display: block;
    filter: grayscale(20%);
}