﻿/* ============================================
   Himwanti Healthcare - MAIN STYLES
   Color Theme: Forest Green (#1B5E20)
                Gold (#C9A227)
                Light Green (#43A047)
                Off White (#F8F8F5)
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #1B5E20;
    --primary-dark: #0D3B0E;
    --primary-light: #43A047;
    --secondary: #C9A227;
    --secondary-light: #F5E6A3;
    --background: #F8F8F5;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --text-muted: #6C757D;
    --border-color: #E0E0E0;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-primary: 'Segoe UI', Arial, sans-serif;
    --font-heading: 'Georgia', serif;
}

/* ---------- Global Styles ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--background);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

    a:hover {
        color: var(--secondary);
    }

img {
    max-width: 100%;
    height: auto;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: var(--secondary);
    }

    .section-title.text-center:after {
        left: 50%;
        transform: translateX(-50%);
    }

/* ---------- Header / Navigation ---------- */
.top-header {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 8px 0;
    font-size: 0.85rem;
}

    .top-header a {
        color: var(--text-light);
    }

        .top-header a:hover {
            color: var(--secondary);
        }

    .top-header .contact-info i {
        color: var(--secondary);
        margin-right: 5px;
    }

.main-header {
    background: #FFFFFF;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-custom {
    padding: 10px 0;
}

    .navbar-custom .navbar-brand img {
        max-height: 60px;
    }

    .navbar-custom .nav-link {
        color: var(--text-dark);
        font-weight: 500;
        padding: 10px 18px !important;
        position: relative;
        transition: var(--transition);
    }

        .navbar-custom .nav-link:hover,
        .navbar-custom .nav-link.active {
            color: var(--primary);
        }

        .navbar-custom .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
        }

        .navbar-custom .nav-link:hover:after,
        .navbar-custom .nav-link.active:after {
            width: 60%;
        }

/* Mega Menu */
.mega-menu {
    position: static !important;
}

    .mega-menu .dropdown-menu {
        width: 100%;
        padding: 20px 30px;
        border: none;
        border-radius: 0;
        box-shadow: var(--shadow-hover);
        margin-top: 0 !important;
    }

        .mega-menu .dropdown-menu h6 {
            color: var(--primary);
            font-weight: 600;
            border-bottom: 2px solid var(--secondary);
            padding-bottom: 8px;
            margin-bottom: 12px;
        }

        .mega-menu .dropdown-menu .list-unstyled li {
            padding: 4px 0;
        }

        .mega-menu .dropdown-menu .list-unstyled a {
            color: var(--text-dark);
            font-size: 0.9rem;
            transition: var(--transition);
        }

            .mega-menu .dropdown-menu .list-unstyled a:hover {
                color: var(--primary);
                padding-left: 5px;
            }

/* ---------- Hero Section ---------- */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--text-light);
    overflow: hidden;
}

    .hero-section .hero-content {
        position: relative;
        z-index: 2;
    }

    .hero-section h1 {
        color: var(--text-light);
        font-size: 3.5rem;
        font-weight: 700;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .hero-section .highlight {
        color: var(--secondary);
    }

    .hero-section p {
        font-size: 1.2rem;
        opacity: 0.9;
        margin-bottom: 30px;
    }

    .hero-section .btn-hero {
        padding: 12px 35px;
        border-radius: 50px;
        font-weight: 600;
        transition: var(--transition);
    }

    .hero-section .btn-primary-custom {
        background: var(--secondary);
        color: var(--text-dark);
    }

        .hero-section .btn-primary-custom:hover {
            background: #B8921E;
            color: var(--text-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(201, 162, 39, 0.4);
        }

    .hero-section .btn-outline-custom {
        border: 2px solid var(--text-light);
        color: var(--text-light);
    }

        .hero-section .btn-outline-custom:hover {
            background: var(--text-light);
            color: var(--primary);
            transform: translateY(-3px);
        }

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

    .hero-slider .slide {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

/* ---------- Buttons ---------- */
.btn-primary-custom {
    background: var(--primary);
    color: var(--text-light);
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
}

    .btn-primary-custom:hover {
        background: var(--primary-dark);
        color: var(--text-light);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(27, 94, 32, 0.3);
    }

.btn-secondary-custom {
    background: var(--secondary);
    color: var(--text-dark);
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
}

    .btn-secondary-custom:hover {
        background: #B8921E;
        color: var(--text-dark);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(201, 162, 39, 0.3);
    }

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
}

    .btn-outline-custom:hover {
        background: var(--primary);
        color: var(--text-light);
        transform: translateY(-2px);
    }

/* ---------- Cards ---------- */
.card-custom {
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

    .card-custom:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

    .card-custom .card-img-top {
        height: 200px;
        object-fit: cover;
    }

    .card-custom .card-body {
        padding: 20px;
    }

    .card-custom .card-title {
        color: var(--primary);
        font-weight: 600;
    }

/* ---------- Sections ---------- */
.section-padding {
    padding: 80px 0;
}

.section-padding-sm {
    padding: 50px 0;
}

.bg-primary-custom {
    background: var(--primary);
    color: var(--text-light);
}

.bg-secondary-custom {
    background: var(--secondary);
    color: var(--text-dark);
}

.bg-light-custom {
    background: var(--background);
}

/* ---------- Why Choose Us ---------- */
.why-choose-us .feature-box {
    text-align: center;
    padding: 30px 20px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

    .why-choose-us .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

    .why-choose-us .feature-box .icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
        text-align: center;
        background: var(--primary);
        color: var(--text-light);
        border-radius: 50%;
        font-size: 30px;
        margin: 0 auto 15px;
        transition: var(--transition);
    }

    .why-choose-us .feature-box:hover .icon {
        background: var(--secondary);
        transform: rotate(10deg) scale(1.1);
    }

    .why-choose-us .feature-box h5 {
        color: var(--primary);
        font-weight: 600;
    }

/* ---------- Treatment Cards ---------- */
.treatment-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

    .treatment-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: var(--transition);
    }

    .treatment-card .overlay {
        position: absolute;
        bottom: -100%;
        left: 0;
        width: 100%;
        padding: 20px;
        background: linear-gradient(to top, rgba(27, 94, 32, 0.95), rgba(27, 94, 32, 0.7));
        color: var(--text-light);
        transition: var(--transition);
    }

    .treatment-card:hover .overlay {
        bottom: 0;
    }

    .treatment-card:hover img {
        transform: scale(1.1);
    }

    .treatment-card .overlay h5 {
        color: var(--text-light);
        font-weight: 600;
    }

/* ---------- Doctor Cards ---------- */
.doctor-card {
    text-align: center;
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

    .doctor-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

    .doctor-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

    .doctor-card .doctor-info {
        padding: 20px;
    }

        .doctor-card .doctor-info h5 {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 5px;
        }

        .doctor-card .doctor-info .specialization {
            color: var(--secondary);
            font-weight: 500;
        }

/* ---------- Testimonials ---------- */
.testimonial-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    margin: 15px;
    transition: var(--transition);
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

    .testimonial-card .client-image {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto 15px;
        border: 3px solid var(--secondary);
    }

    .testimonial-card .rating {
        color: var(--secondary);
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .testimonial-card .client-name {
        color: var(--primary);
        font-weight: 600;
    }

/* ---------- Appointment Form ---------- */
.appointment-form {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

    .appointment-form .form-control {
        border: 1px solid var(--border-color);
        border-radius: 5px;
        padding: 10px 15px;
        transition: var(--transition);
    }

        .appointment-form .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(27, 94, 32, 0.15);
        }

    .appointment-form .form-label {
        font-weight: 500;
        color: var(--text-dark);
    }

/* ---------- Blog Cards ---------- */
.blog-card {
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

    .blog-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .blog-card .blog-content {
        padding: 20px;
    }

        .blog-card .blog-content .meta {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .blog-card .blog-content h5 {
            color: var(--primary);
            font-weight: 600;
        }

/* ---------- Gallery ---------- */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

    .gallery-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: var(--transition);
    }

    .gallery-item .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(27, 94, 32, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: var(--transition);
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .gallery-item .gallery-overlay i {
        color: var(--text-light);
        font-size: 2rem;
    }

/* ---------- FAQ ---------- */
.faq-section .accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 5px !important;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-section .accordion-header {
    background: #FFFFFF;
    padding: 0;
}

.faq-section .accordion-button {
    padding: 15px 20px;
    font-weight: 500;
    color: var(--text-dark);
    background: #FFFFFF;
    border: none;
}

    .faq-section .accordion-button:not(.collapsed) {
        color: var(--primary);
        background: #FFFFFF;
        box-shadow: none;
    }

    .faq-section .accordion-button:focus {
        box-shadow: none;
        border-color: var(--primary);
    }

.faq-section .accordion-body {
    padding: 20px;
    background: #F8F9FA;
}

/* ---------- Contact Section ---------- */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

    .contact-info-item .icon {
        width: 50px;
        height: 50px;
        background: var(--primary);
        color: var(--text-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .contact-info-item .content h6 {
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 3px;
    }

    .contact-info-item .content p {
        margin-bottom: 0;
        color: var(--text-muted);
    }

/* ---------- Footer ---------- */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 60px 0 0;
}

    .footer h5 {
        color: var(--secondary);
        font-weight: 600;
        margin-bottom: 20px;
    }

    .footer a {
        color: rgba(255, 255, 255, 0.8);
        transition: var(--transition);
    }

        .footer a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

    .footer .social-links a {
        display: inline-block;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        margin-right: 8px;
        color: var(--text-light);
        transition: var(--transition);
    }

        .footer .social-links a:hover {
            background: var(--secondary);
            color: var(--text-dark);
            transform: translateY(-3px);
        }

    .footer .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 0;
        margin-top: 40px;
        text-align: center;
        font-size: 0.9rem;
    }

/* ---------- Stats Counter ---------- */
.stat-counter {
    text-align: center;
    padding: 30px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

    .stat-counter:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

    .stat-counter .number {
        font-size: 3rem;
        font-weight: 700;
        color: var(--primary);
    }

    .stat-counter .label {
        color: var(--text-muted);
        font-weight: 500;
    }

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

    .whatsapp-float a {
        display: block;
        width: 60px;
        height: 60px;
        background: #25D366;
        color: #FFFFFF;
        border-radius: 50%;
        text-align: center;
        line-height: 60px;
        font-size: 30px;
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
        transition: var(--transition);
    }

        .whatsapp-float a:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 35px rgba(37, 211, 102, 0.6);
        }

/* ---------- Emergency Call Button ---------- */
.emergency-call {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

    .emergency-call a {
        display: block;
        width: 60px;
        height: 60px;
        background: #D32F2F;
        color: #FFFFFF;
        border-radius: 50%;
        text-align: center;
        line-height: 60px;
        font-size: 30px;
        box-shadow: 0 5px 25px rgba(211, 47, 47, 0.4);
        animation: pulse 2s infinite;
        transition: var(--transition);
    }

        .emergency-call a:hover {
            transform: scale(1.1);
        }

@keyframes pulse {
    0% {
        box-shadow: 0 5px 25px rgba(211, 47, 47, 0.4);
    }

    50% {
        box-shadow: 0 5px 45px rgba(211, 47, 47, 0.8);
    }

    100% {
        box-shadow: 0 5px 25px rgba(211, 47, 47, 0.4);
    }
}

/* ---------- Scroll to Top ---------- */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

    .scroll-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .scroll-top a {
        display: block;
        width: 45px;
        height: 45px;
        background: var(--primary);
        color: var(--text-light);
        border-radius: 50%;
        text-align: center;
        line-height: 45px;
        font-size: 20px;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

        .scroll-top a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }

/* ---------- Preloader ---------- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ---------- Dark Mode ---------- */
.dark-mode {
    --background: #1A1A1A;
    --text-dark: #F8F8F5;
    --border-color: #333333;
}

    .dark-mode .main-header,
    .dark-mode .card-custom,
    .dark-mode .doctor-card,
    .dark-mode .testimonial-card,
    .dark-mode .appointment-form,
    .dark-mode .stat-counter,
    .dark-mode .blog-card {
        background: #2D2D2D;
    }

    .dark-mode .footer {
        background: #0D0D0D;
    }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .mega-menu .dropdown-menu {
        padding: 15px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 60vh;
    }

        .hero-section h1 {
            font-size: 2rem;
        }

        .hero-section p {
            font-size: 1rem;
        }

    .section-title {
        font-size: 1.5rem;
    }

    .appointment-form {
        padding: 20px;
    }

    .top-header .contact-info {
        text-align: center;
        margin-bottom: 5px;
    }

    .footer {
        padding: 40px 0 0;
    }

    .whatsapp-float,
    .emergency-call {
        bottom: 15px;
    }

        .whatsapp-float a,
        .emergency-call a {
            width: 50px;
            height: 50px;
            line-height: 50px;
            font-size: 24px;
        }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }

    .stat-counter .number {
        font-size: 2rem;
    }
}

/* ---------- Accessibility ---------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Focus states for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --primary: #0D3B0E;
        --secondary: #A88A20;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   INNER PAGES STYLES
   ============================================ */

/* Page Banner */
.page-banner {
    position: relative;
    overflow: hidden;
}

    .page-banner .breadcrumb {
        background: transparent;
        padding: 0;
        margin-top: 10px;
    }

    .page-banner .breadcrumb-item a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
    }

        .page-banner .breadcrumb-item a:hover {
            color: var(--secondary);
        }

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* Contact Info Items */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

    .contact-info-item .icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .contact-info-item .content h6 {
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 3px;
    }

    .contact-info-item .content p {
        margin-bottom: 0;
        color: var(--text-muted);
    }

/* Treatment Cards */
.treatment-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 300px;
}

    .treatment-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .treatment-card .overlay {
        position: absolute;
        bottom: -100%;
        left: 0;
        width: 100%;
        padding: 25px;
        background: linear-gradient(to top, rgba(27,94,32,0.95), rgba(27,94,32,0.7));
        color: var(--text-light);
        transition: var(--transition);
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .treatment-card:hover .overlay {
        bottom: 0;
    }

    .treatment-card:hover img {
        transform: scale(1.1);
    }

    .treatment-card .overlay .badge {
        font-size: 0.75rem;
        padding: 5px 12px;
        width: fit-content;
    }

    .treatment-card .overlay h5 {
        color: var(--text-light);
        font-weight: 600;
        margin: 10px 0 5px;
    }

    .treatment-card .overlay p {
        font-size: 0.9rem;
        opacity: 0.9;
        margin-bottom: 10px;
    }

/* FAQ Items */
.faq-item {
    cursor: pointer;
    transition: var(--transition);
}

    .faq-item:hover {
        box-shadow: var(--shadow-hover);
    }

    .faq-item .fa-chevron-down,
    .faq-item .fa-chevron-up {
        transition: var(--transition);
    }

/* Procedure Steps */
.step-number {
    background: var(--primary);
    color: #fff;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Doctor Cards */
.doctor-card {
    text-align: center;
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

    .doctor-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

    .doctor-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

    .doctor-card .doctor-info {
        padding: 20px;
    }

        .doctor-card .doctor-info h5 {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 5px;
        }

        .doctor-card .doctor-info .specialization {
            color: var(--secondary);
            font-weight: 500;
        }

/* Timeline */
.timeline .card-custom {
    border-left: 4px solid var(--secondary);
    transition: var(--transition);
}

    .timeline .card-custom:hover {
        transform: translateX(5px);
    }

/* Card Shadow Hover */
.shadow-hover {
    transition: var(--transition);
}

    .shadow-hover:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

/* Transition */
.transition {
    transition: var(--transition);
}

/* Min Heights */
.min-vh-75 {
    min-height: 75vh;
}

/* Blog Content Styling */
.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

    .blog-content h1, .blog-content h2, .blog-content h3 {
        color: var(--primary);
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .blog-content p {
        margin-bottom: 1.2rem;
    }

    .blog-content img {
        max-width: 100%;
        height: auto;
        border-radius: 5px;
        margin: 1.5rem 0;
    }

    .blog-content blockquote {
        border-left: 4px solid var(--secondary);
        padding-left: 20px;
        margin: 1.5rem 0;
        font-style: italic;
        color: #555;
    }

    .blog-content ul, .blog-content ol {
        margin-bottom: 1.2rem;
        padding-left: 25px;
    }

        .blog-content ul li, .blog-content ol li {
            margin-bottom: 0.5rem;
        }

/* Responsive */
@media (max-width: 768px) {
    .treatment-card {
        height: 250px;
    }

    .doctor-card img {
        height: 200px;
    }

    .page-banner h1 {
        font-size: 2rem;
    }

    .blog-content {
        font-size: 1rem;
    }
}
