
.navbar {
    background: #0d6efd;
    padding: 10px 0;
    color: white;
     border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
     position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-size: 18px;
    font-weight: bold;
}

/* Navigation */
nav {
    position: relative;
}

/* Hide menu by default on mobile */
.nav-links {
    list-style: none;
    display: none;
    flex-direction: column;
    background: #0d6efd;
    position: absolute;
    top: 50px;
    right: 0;
    width: 200px;
    padding: 10px;
    border-radius: 8px;
}

.nav-links li {
    margin: 10px 0;
}

.nav-links li a {
    color: white;
    text-decoration: none;
}

/* Show menu when active */
.nav-links.active {
    display: flex;
}

/* Hamburger */
.hamburger {
    font-size: 22px;
    cursor: pointer;
    display: block;
}

/* Desktop View */
@media (min-width: 768px) {

    .hamburger {
        display: none;
    }

    .nav-links {
        display: flex !important;
        position: static;
        flex-direction: row;
        background: none;
        width: auto;
    }

    .nav-links li {
        margin-left: 20px;
    }
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #e6f7ff, #ffffff);
    padding: 80px 0;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 36px;
    color: #0a3d62;
    margin-bottom: 10px;
}

.hero-text h2 {
    font-size: 22px;
    color: #1e3799;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

.badge {
    background: #dff9fb;
    color: #0984e3;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-primary {
    background: #0984e3;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #0652dd;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #0984e3;
    color: #0984e3;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #0984e3;
    color: #fff;
}

.timing {
    font-size: 14px;
    color: #333;
}

/* IMAGE */
.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }
}




.about {
    padding: 80px 0;
    background: #f8fbff;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
    color: #0a3d62;
}

/* Wrapper */
.doctor-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* Individual Profile */
.doctor-profile {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

/* Circular Image */
.doctor-image img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #0984e3;
    margin-bottom: 25px;
}

/* Info */
.doctor-info h3 {
    font-size: 22px;
    color: #1e3799;
    margin-bottom: 8px;
}

.qualification {
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.doctor-info p {
    color: #444;
    font-size: 15px;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .doctor-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
}



.services {
    padding: 80px 0;
    background: var(--light);
}

.services .container {
    display: block;   /* Force vertical layout */
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    border-bottom: 4px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.testimonials {
    padding: 80px 0;
    background: #f8fbff;
}

.testimonials .container {
    display: block; /* Ensures vertical layout */
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

/* Horizontal scroll */
.testimonial-scroll {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.testimonial-scroll::-webkit-scrollbar {
    display: none;
}

/* Card */
.test-card {
    min-width: 320px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    flex-shrink: 0;
    border-top: 4px solid var(--primary);
    transition: 0.3s;
}

.test-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Circular image */
.patient-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--primary);
}

.stars {
    color: #f1c40f;
    margin-bottom: 10px;
}









.appointment-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #e6f7ff, #ffffff);
    border-radius: 60px 60px 0 0;
}

/* IMPORTANT FIX */
.appointment-section .container {
    display: block !important;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.appointment-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    max-width: 1000px;
    margin: auto;
}








/* Modern Footer */
.modern-footer {
    background: linear-gradient(135deg, #0a3d62, #1e3799);
    color: #ffffff;
    padding: 70px 0 20px;
    border-radius: 60px 60px 0 0;
}

/* Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Logo */
.footer-col .logo {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Headings */
.footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
}

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

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #00d2ff;
    padding-left: 5px;
}

/* Social Icons */
.socials {
    margin-top: 15px;
}

.socials a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    color: white;
    margin-right: 10px;
    transition: 0.3s;
}

.socials a:hover {
    background: #00d2ff;
    color: #0a3d62;
}

/* Copyright */
.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .socials a {
        margin: 5px;
    }
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    font-size: 26px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}