* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #2c3e50;
    line-height: 1.6;
    background: #fff;
}

h1,
h2,
h3,
h4,
.logo h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;

}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: #0d6efd;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

.main-header {
    padding: 15px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.logo h1 {
    font-size: 1.8rem;
    color: #0d6efd;
    letter-spacing: -0.5px;
}

.logo p {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Navigation */
.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: 0.3s;
    font-size: 1rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0d6efd;
}

/* Desktop appointment button */
.appointment-btn {
    background: #0d6efd;
    color: #fff;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    white-space: nowrap;
}

.appointment-btn:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #0d6efd;
    padding: 5px;
}

/* Mobile appointment link (hidden on desktop) */
.mobile-appointment-link {
    display: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background: #0d6efd;
    color: #fff;
}

.btn-primary:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: #fff;
    color: #0d6efd;
}

.btn-light {
    background: #fff;
    color: #0d6efd;
    border: 1px solid #ddd;
}

/*  ============================== Hero slider images ===========================*/
.hero-slider .slide-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Ensure slider container has correct height on all devices */
.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 500px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 450px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }
}

/* Doctor card images – fixed aspect ratio, full coverage */
.doctor-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    /* forces 4:3 box */
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Any other images that might appear (e.g., team page, gallery) */
.team-card img,
.gallery img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* For background images that might be used elsewhere */
[class*="bg"] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 500px;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 800px;
    z-index: 2;
}

.slide-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.slide-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.slide-content .btn {
    margin: 0 0.5rem;
    padding: 0.75rem 1.5rem;
}

.slide-content .btn-outline {
    border-color: #fff;
    background: transparent;
    color: #fff;
}

.slide-content .btn-outline:hover {
    background: #fff;
    color: #0d6efd;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.6);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: #0d6efd;
    opacity: 1;
}


/* ---------- RESPONSIVE ---------- */
@media (min-width: 576px) {
    .top-bar .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .insurance-logos {
        flex-direction: row;
        justify-content: center;
    }

    .insurance-item {
        width: auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .hero-slider {
        height: 80vh;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.2rem;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }

    .nav-links {
        display: flex !important;
        flex-direction: row;
        width: auto;
        gap: 1.5rem;
        border-top: none;
        margin-top: 0;
        padding: 0;
        order: 1;
    }

    .mobile-appointment-link {
        display: none;
    }

    .appointment-btn {
        display: inline-block;
        order: 2;
    }

    .main-header .container {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .highlights-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 450px;
    }

    .slide-content h1 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .slide-content .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        margin: 0 0.3rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }

    .slide-content h1 {
        font-size: 1.2rem;
    }

    .slide-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
}

.insurance-premium {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle medical pattern overlay */
.insurance-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path fill="%230d6efd" d="M50,15 L65,35 L50,55 L35,35 L50,15 Z M50,45 L65,65 L50,85 L35,65 L50,45 Z"/><circle cx="50" cy="50" r="8"/><circle cx="50" cy="50" r="15" fill="none" stroke="%230d6efd" stroke-width="1"/></svg>');
    background-repeat: repeat;
    background-size: 40px;
    pointer-events: none;
}

.insurance-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0 2.5rem;
    position: relative;
    z-index: 1;
}

.insurance-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(13, 110, 253, 0.1);
    position: relative;
    overflow: hidden;
}

.insurance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    border-color: #0d6efd;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d6efd10, #0d6efd20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: 0.3s;
}

.card-icon i {
    font-size: 2.5rem;
    color: #0d6efd;
}

.insurance-card:hover .card-icon {
    background: #0d6efd;
    transform: scale(1.05);
}

.insurance-card:hover .card-icon i {
    color: #fff;
}

.insurance-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.insurance-card p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.card-badge {
    display: inline-block;
    background: #0d6efd10;
    color: #0d6efd;
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    transition: 0.3s;
}

.insurance-card:hover .card-badge {
    background: #0d6efd;
    color: #fff;
}

.insurance-note-premium {
    background: #fff;
    border-radius: 3rem;
    padding: 1rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #2c3e50;
    border: 1px solid rgba(13, 110, 253, 0.2);
    position: relative;
    z-index: 1;
}

.insurance-note-premium i {
    color: #0d6efd;
    font-size: 1.3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .insurance-cards {
        gap: 1.5rem;
    }

    .insurance-card {
        padding: 1.5rem;
    }

    .card-icon {
        width: 70px;
        height: 70px;
    }

    .card-icon i {
        font-size: 2rem;
    }

    .insurance-card h3 {
        font-size: 1.1rem;
    }

    .insurance-note-premium {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        font-size: 0.9rem;
    }
}

.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================  Highlights ==========================*/
.highlights {
    padding: 60px 0;
    background: #f8f9fa;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.highlight-card i {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 15px;
}

.highlight-card h3 {
    margin-bottom: 10px;
}

/* Stats Counter Section */
.stats-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: #fff;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Common Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #0d6efd;
    margin: 12px auto 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-content {
    padding: 24px;
}

.card h3 {
    margin-bottom: 12px;
}

.read-more {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    transition: gap 0.3s;
}

.read-more i {
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Facilities */
.facility-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.facility-card i {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 15px;
}

.facility-card h3 {
    margin-bottom: 10px;
}

/* Doctors */
.doctor-card {
    text-align: center;
}

.doctor-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: #e9ecef;
    transition: transform 0.5s ease;
}

.doctor-card:hover img {
    transform: scale(1.05);
}

/* Insurance */
.insurance-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.insurance-item {
    background: #fff;
    padding: 12px 30px;
    border-radius: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    color: #2c3e50;
    transition: all 0.3s;
}

.insurance-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}



/* Additional styles for diagnostics page */
.diagnostics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.diag-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.diag-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.diag-card i {
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 15px;
}

.diag-card h3 {
    margin-bottom: 10px;
}

.diag-card ul {
    text-align: left;
    margin-top: 15px;
    list-style: none;
}

.diag-card ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.diag-card ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #0d6efd;
}

/* Improved Why Choose Section */
.why-choose {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 50px 40px;
    margin-top: 50px;
    text-align: center;
}

.why-choose h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #0d6efd;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.feature-item {
    background: #fff;
    border-radius: 16px;
    padding: 25px 15px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 0.9rem;
    color: #6c757d;
}

.outsource-note {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid #0d6efd;
    text-align: left;
}

@media (max-width: 768px) {
    .why-choose {
        padding: 30px 20px;
    }

    .features-grid {
        gap: 20px;
    }
}

/* Testimonials */
.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-card i {
    color: #0d6efd;
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 15px;
    display: inline-block;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    margin-top: 10px;
    color: #0d6efd;
}

/* Final CTA */
.final-cta {
    background: #0d6efd;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #2c3e50;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-grid h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid ul li {
    margin-bottom: 10px;
}

.footer-grid a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-grid a:hover {
    color: #0d6efd;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #0d6efd;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #445566;
    font-size: 0.9rem;
}

/* Sticky Buttons */
.sticky-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #28a745;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    text-decoration: none;
    transition: 0.3s;
}

.sticky-call.whatsapp {
    background: #25d366;
    bottom: 90px;
}

.sticky-call:hover {
    transform: scale(1.05);
}

/* ========== RESPONSIVE NAVBAR ========== */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
        order: 2;
    }

    .main-header .container {
        justify-content: space-between;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 0;
        background: #fff;
        border-top: 1px solid #eee;
        margin-top: 15px;
        order: 3;
    }

    .nav-links.show {
        display: flex;
    }

    /* Hide desktop appointment button on mobile */
    .appointment-btn {
        display: none;
        color: #fff;
    }

    /* Show mobile appointment link */
    .mobile-appointment-link {
        display: block;
        background: #0d6efd;
        color: #fff;
        padding: 10px 20px;
        border-radius: 40px;
        text-decoration: none;
        font-weight: 600;
        margin-top: 5px;
        text-align: center;
    }

    .mobile-appointment-link:hover {
        background: #0b5ed7;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .final-cta h2 {
        font-size: 1.6rem;
    }

    .sticky-call {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/*================ about us ==========================*/
        /* ===== ABOUT PAGE STYLES ===== */
        .about-hero {
            background: linear-gradient(135deg, #0d6efd, #0a58ca);
            color: #fff;
            padding: 4rem 0;
            text-align: center;
        }
        .about-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .about-hero p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        .about-intro {
            padding: 4rem 0;
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
        }
        .about-grid img {
            width: 100%;
            border-radius: 1rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .mission-vision {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin: 3rem 0;
        }
        .mission-card, .vision-card {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            transition: 0.3s;
        }
        .mission-card i, .vision-card i {
            font-size: 2.5rem;
            color: #0d6efd;
            margin-bottom: 1rem;
        }
        .why-choose-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .why-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }
        .why-item i {
            font-size: 1.5rem;
            color: #0d6efd;
            margin-top: 0.2rem;
        }
        .stats-about {
            background: linear-gradient(135deg, #0d6efd, #0a58ca);
            color: #fff;
            padding: 4rem 0;
            text-align: center;
        }
        .stats-grid-about {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .stat-item-about h3 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }
        .director-message {
            background: #f8f9fa;
            padding: 3rem;
            border-radius: 1rem;
            text-align: center;
            margin: 3rem 0;
        }
        .director-message i {
            font-size: 3rem;
            color: #0d6efd;
            margin-bottom: 1rem;
        }
        .final-cta-about {
            background: #0d6efd;
            color: #fff;
            text-align: center;
            padding: 4rem 0;
        }
        @media (min-width: 768px) {
            .about-grid {
                grid-template-columns: 1fr 1fr;
            }
            .mission-vision {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .about-hero h1 {
                font-size: 1.8rem;
            }
            .stats-item-about h3 {
                font-size: 2rem;
            }
            .director-message {
                padding: 1.5rem;
            }
        }
/*=============== docter ======================*/
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #0d6efd;
    margin: 12px auto 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.doctor-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    text-align: center;
}

.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.doctor-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: #e9ecef;
}

.doctor-info {
    padding: 24px;
}

.doctor-info h3 {
    margin-bottom: 5px;
}

.specialty {
    color: #0d6efd;
    font-weight: 500;
    margin-bottom: 8px;
}

.experience {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.read-more {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}

/*================== Our Team=============================*/
.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #0d6efd;
    margin: 12px auto 0;
}

.team-category {
    margin-bottom: 60px;
}

.team-category h2 {
    font-size: 1.8rem;
    color: #0d6efd;
    border-left: 4px solid #0d6efd;
    padding-left: 15px;
    margin-bottom: 30px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background: #e9ecef;
    transition: transform 0.5s ease;
}

.team-card:hover img {
    transform: scale(1.03);
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    margin-bottom: 5px;
}

.designation {
    color: #0d6efd;
    font-weight: 500;
    margin-bottom: 8px;
}

.experience {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 12px;
}


/*================== contact ===============================*/
.contact-hero {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-hero h1 span {
    color: #ffd966;
}

.contact-hero p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: -2rem 0 3rem;
}

.quick-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: #2c3e50;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border: 1px solid #eee;
}

.quick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #0d6efd;
}

.quick-icon {
    width: 70px;
    height: 70px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.quick-icon i {
    font-size: 2rem;
    color: #0d6efd;
}

.quick-card h4 {
    margin-bottom: 0.5rem;
}

.quick-card p {
    color: #6c757d;
    margin: 0;
}

.contact-info-section {
    padding: 2rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

.contact-info-card,
.contact-form-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-card h3,
.contact-form-card h3 {
    margin-bottom: 1.5rem;
    color: #0d6efd;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail-icon {
    width: 45px;
    height: 45px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon i {
    font-size: 1.2rem;
    color: #0d6efd;
}

.contact-detail-text h5 {
    margin-bottom: 0.25rem;
}

.contact-detail-text p,
.contact-detail-text a {
    color: #6c757d;
    text-decoration: none;
}

.contact-detail-text a:hover {
    color: #0d6efd;
}

.social-links-container {
    margin-top: 2rem;
}

.social-links-grid {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.social-link-item {
    width: 40px;
    height: 40px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    transition: 0.3s;
}

.social-link-item:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateY(-3px);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group label i {
    margin-right: 0.5rem;
    color: #0d6efd;
}

.form-control,
select.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
}

.form-control:focus,
select.form-control:focus {
    outline: none;
    border-color: #0d6efd;
}

textarea.form-control {
    resize: vertical;
}

.btn-submit {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    display: block;
}

.final-cta {
    background: #0d6efd;
    color: #fff;
    text-align: center;
    padding: 3rem 0;
}

.final-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 1.5rem;
    }

    .quick-card {
        padding: 1rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 1rem;
    }

    .map-container iframe {
        height: 250px;
    }

    .final-cta h2 {
        font-size: 1.4rem;
    }
}



/*============================ Appoment ========================================*/
.appointment-form {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem 1rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    display: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
}

textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

.note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

/*====================== Contact ======================================*/
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #0d6efd;
}

.contact-info p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-info i {
    width: 1.25rem;
    color: #0d6efd;
    margin-top: 0.2rem;
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.map-container iframe {
    width: 100%;
    height: 250px;
    display: block;
}

.contact-form {
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    margin-bottom: 1.25rem;
    color: #2c3e50;
}

/* Form elements already defined in global styles, but ensure they are full width */
.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0d6efd;
}

.contact-form button {
    margin-top: 0.5rem;
}

/* Tablet and up */
@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .contact-info {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

/* Large screens */
@media (min-width: 992px) {
    .map-container iframe {
        height: 350px;
    }
}

/* Ensure proper spacing on very small devices */
@media (max-width: 576px) {
    .contact-info p {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .contact-info i {
        width: auto;
    }
}
