html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.container {
    max-width: 1100px;
}

.text-primary {
    color: #007bff;
}

.rounded-circle {
    border: 3px solid #007bff;
}

.shadow {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/*Style for menu start*/
.navbar {
    background: linear-gradient(135deg, #004d99, #0099cc); /* Professional blue gradient */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .navbar .navbar-brand,
    .navbar .nav-link {
        color: white !important;
        font-weight: 600;
    }

        .navbar .nav-link:hover {
            color: #ffcc00 !important; /* Gold on hover */
        }

.navbar-toggler {
    border: 1px solid white;
}

.navbar-toggler-icon {
    filter: invert(1); /* Makes toggle icon white */
}
/*Style for menu end*/




.footer {
    background: linear-gradient(135deg, #00264d, #004d99);
    color: white;
    padding: 50px 0;
    font-family: 'Poppins', sans-serif;
}

    .footer h5 {
        font-weight: bold;
        color: #ffcc00; /* Gold color */
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .footer p, .footer a {
        color: #dddddd;
        font-size: 14px;
    }

    .footer a {
        text-decoration: none;
        transition: color 0.3s ease-in-out;
    }

        .footer a:hover {
            color: #ffcc00;
            text-decoration: underline;
        }

.social-icon {
    font-size: 20px;
    margin: 0 10px;
    color: #ffcc00;
    transition: transform 0.3s;
}

    .social-icon:hover {
        color: white;
        transform: scale(1.1);
    }

.footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer .col-md-4 {
    padding: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer .col-md-4 {
        text-align: center;
        margin-bottom: 20px;
    }
}




/* Hero Section */
/*.hero {
    background: url('/images/homepage.webp') no-repeat center center/cover;
    padding: 100px 0;
    color: white;
    text-align: center;
}

    .hero h1 {
        font-size: 3rem;
        font-weight: bold;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .hero .btn {
        padding: 12px 25px;
        font-size: 1.1rem;
        border-radius: 30px;
    }*/

/* Services Section */
.services {
    padding: 60px 0;
    background: #f8f9fa;
}

    .services h2 {
        margin-bottom: 30px;
        font-weight: bold;
    }

.card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

    .card:hover {
        transform: translateY(-5px);
    }

    .card img {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

/* Testimonials */
.testimonials {
    background: #00264d;
    color: white;
    padding: 60px 0;
}

    .testimonials h2 {
        margin-bottom: 30px;
        font-weight: bold;
    }

.testimonial-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin: 10px 0;
}

    .testimonial-box p {
        font-style: italic;
    }

    .testimonial-box h5 {
        margin-top: 15px;
    }

/* CTA */
.cta {
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    padding: 50px 0;
    color: white;
}

    .cta h2 {
        font-size: 2rem;
        font-weight: bold;
    }

    .cta .btn {
        font-size: 1.2rem;
        padding: 12px 30px;
        border-radius: 30px;
        background: #00264d;
        color: white;
    }

        .cta .btn:hover {
            background: #001a33;
        }

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .services .col-md-4, .testimonials .col-md-6 {
        margin-bottom: 20px;
    }
}


.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/doctor_compressed.webp') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
    font-family: 'Poppins', sans-serif;
}

    .hero-section h1 {
        font-size: 3rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    }

    .hero-section p {
        font-size: 1.5rem;
        font-weight: 300;
        max-width: 800px;
        margin: 20px auto;
        line-height: 1.6;
        opacity: 0.9;
    }

    .hero-section .btn {
        font-size: 1.2rem;
        font-weight: 600;
        padding: 12px 30px;
        border-radius: 30px;
        transition: 0.3s ease-in-out;
    }

    .hero-section .btn-primary {
        background: #007bff;
        border: none;
    }

        .hero-section .btn-primary:hover {
            background: #0056b3;
        }




.btn {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    border: none;
}

    .btn-primary:hover {
        background-color: #0056b3; /* Darker shade of blue */
        color: white !important; /* Ensures text remains visible */
        text-shadow: none;
    }




.qr-container {
    position: relative;
    width: 60px;
}

.qr-container img {
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.qr-container:hover img {
    transform: scale(2);
    z-index: 10;
}

.about-section {
    background-color: #f9f9f9;
    padding: 40px 0;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.doctor-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.doctor-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 30px;
}

.doctor-details {
    max-width: 600px;
}

    .doctor-details h3 {
        font-size: 1.5rem;
        color: #007bff;
        margin-bottom: 10px;
    }

    .doctor-details p {
        font-size: 1rem;
        color: #555;
        line-height: 1.6;
    }

    .doctor-details ul {
        list-style-type: disc;
        margin-left: 20px;
    }

        .doctor-details ul li {
            font-size: 1rem;
            color: #555;
        }

.appointment-hero {
    padding: 28px 12px;
}

.container {
    max-width: 980px;
    margin: 0 auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 20px;
    align-items: start;
}

@media(max-width:900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
}

.card {
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    background: #fff;
}

.form-group {
    margin-bottom: 12px;
}

.btn-block {
    width: 100%;
    padding: 12px;
}

.lead {
    font-size: 16px;
    color: #333;
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

    .trust-list li {
        margin-bottom: 6px;
    }

/* Mobile view (screens below 600px) */
@media (max-width: 600px) {

    /* Header height smaller */
    header, .site-header, .navbar {
        padding: 5px 10px !important;
        height: auto !important;
    }

        /* Logo smaller */
        header img,
        .site-header img,
        .navbar img {
            height: 40px !important; /* adjust to 35 if needed */
            width: auto !important;
        }

    /* Menu icon smaller */
    .menu-toggle, .mobile-menu-icon {
        transform: scale(0.8);
        margin-right: 5px;
    }

    /* Reduce space below header */
    .header-spacing {
        margin-bottom: 5px !important;
    }
}
.call-btn {
    background: #28a745; /* green */
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

    .call-btn:hover {
        background: #218838;
    }
.wp-btn {
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

    .wp-btn:hover {
        background: #1ebe5d;
    }

.flatpickr-calendar {
    z-index: 10050 !important;
}

.price-card {
    width: 100%;
    max-width: 720px;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 4px solid var(--accent);
}
/* header */
.price-header {
    background: var(--accent);
    color: white;
    padding: 20px 18px;
    text-align: center;
}

/* the "table" */
.grid-table {
    display: grid;
    grid-template-columns: 1fr 140px;
    gap: 0;
    background: transparent;
}

/* last row border-bottom */
.cell:last-child {
    border-bottom: 4px solid var(--accent);
}
.rowTest {
    display: contents; /* allow grid children to align with columns */
}
.cell {
    padding: 18px;
    border-top: 1px solid rgba(148,27,27,0.12);
    display: flex;
    align-items: center;
    min-height: 56px;
    background: transparent;
}
/* responsive: stack columns on narrow screens */
@media (max-width:520px) {
    .grid-table {
        grid-template-columns: 1fr;
    }

    .cell.price {
        justify-content: flex-start;
        padding-left: 22px;
    }

    .cell.item {
        background: transparent;
    }
}
.TestRateHeading {
   text-align:center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #941b1b;
    margin: 20px 0;
}

/* print friendly */
@media print {
    body {
        margin: 0
    }

    .price-card {
        box-shadow: none;
        border: 2px solid #000
    }

    .clinic-title {
        font-size: 18px
    }
}