/* Root Variables */
:root {
    --saffron: #FF9933;
    --green: #138808;
    --blue: #000080;
    --white: #FFFFFF;
    --dark: #2c3e50;
    --light: #f8f9fa;
    --gray: #6c757d;
    --font-family: 'Segoe UI', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

/* Custom Color Classes */
.text-saffron { color: var(--saffron) !important; }
.text-green { color: var(--green) !important; }
.text-blue { color: var(--blue) !important; }
.bg-saffron { background-color: var(--saffron) !important; }
.bg-green { background-color: var(--green) !important; }
.bg-blue { background-color: var(--blue) !important; }

/* Button Styles */
.btn-primary {
    background-color: var(--saffron);
    border-color: var(--saffron);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #e8822e;
    border-color: #e8822e;
}

.btn-outline-primary {
    border-color: var(--saffron);
    color: var(--saffron);
}

.btn-outline-primary:hover {
    background-color: var(--saffron);
    border-color: var(--saffron);
}

/* Top Strip */
.top-strip {
    background: linear-gradient(135deg, var(--saffron), #ff8c1a);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.top-strip .offer-text {
    font-weight: 500;
}

.top-strip .contact-info {
    font-size: 13px;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark) !important;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.brand-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.tagline {
    font-size: 0.75rem;
    color: var(--gray);
    font-style: italic;
    margin-top: -2px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--saffron);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--saffron);
}


.dropdown-menu {
    display: none;
}

.dropdown.show .dropdown-menu {
    display: block;
}



//hero section 

.hero-carousel {
    position: relative;
    width: 100%;
    height: auto; /* Let height adjust automatically */
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (min-width: 768px) {
    .hero-carousel {
        height: 600px; /* Set height for larger screens only */
    }

    .carousel-item img {
        height: 600px;
    }
}


.carousel-caption {
    position: absolute;
    bottom: 15%;
    left: 5%;
    background: rgba(255, 255, 255, 0.2); /* glass effect */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #333;
    max-width: 450px;
    z-index: 2; /* ensures it doesn’t cover arrows */
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 3; /* bring arrows above the card */
}

.carousel-caption h1 {
    font-size: 2.8rem;
    color: #ff6600; /* saffron theme color */
    margin-bottom: 10px;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #444;
}

.carousel-caption .btn {
    background-color: #ff6600;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 600;
    color: #fff;
    border: none;
}

.carousel-caption .btn:hover {
    background-color: #e65c00;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}





/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--saffron), var(--green));
    border-radius: 2px;
}

.section-title.text-start::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--saffron), var(--green));
    color: var(--white);
    font-size: 2rem;
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Specialities Section */
.specialities-section {
    padding: 80px 0;
}

.speciality-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.speciality-card i {
    font-size: 3rem;
    color: var(--saffron);
    margin-bottom: 1rem;
}

.speciality-card h5 {
    font-weight: 600;
    color: var(--dark);
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1), rgba(19, 136, 8, 0.1));
}

.why-choose-content {
    padding: 2rem 0;
}

.feature-list {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Hospital Cards */
.hospital-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.hospital-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hospital-card img {
    height: 200px;
    object-fit: cover;
}

.hospital-card .card-body {
    padding: 1.5rem;
}

.hospital-card h5 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

/* Lab Booking Section */
.lab-booking-section {
    padding: 80px 0;
}

.lab-booking-form {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--saffron);
    box-shadow: 0 0 0 0.2rem rgba(255, 153, 51, 0.25);
}

/* Home Care Section */
.home-care-section {
    padding: 80px 0;
}

.home-care-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.home-care-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.home-care-card img {
    height: 200px;
    object-fit: cover;
}

.home-care-card .card-body {
    padding: 1.5rem;
}

.home-care-card h5 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

/* Ambulance Section */
.ambulance-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-tabs {
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.service-tab {
    background: transparent;
    border: none;
    padding: 12px 20px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #6c757d;
}

.service-tab:hover {
    background: #f8f9fa;
    color: #495057;
}

.service-tab.active {
    background: #dc3545;
    color: white;
    box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
}

.service-tab i {
    font-size: 18px;
}

.service-content {
    display: none;
    margin-top: 2rem;
}

.service-content.active {
    display: block;
}

.ambulance-service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.ambulance-image img {
    border-radius: 15px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-title {
    color: #dc3545;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-description {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-item i {
    color: #dc3545;
    font-size: 16px;
    width: 20px;
    text-align: center;
}



@media (max-width: 768px) {
    .service-tabs {
        padding: 5px;
    }
    
    .service-tab {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .service-tab span {
        display: none;
    }
    
    .ambulance-service-card {
        padding: 1.5rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.ambulance-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.ambulance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.ambulance-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: var(--white);
    font-size: 2rem;
}

.ambulance-card h5 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

/* Footer */
/* .footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-brand h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--saffron);
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-item i {
    margin-right: 0.5rem;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--saffron);
    color: var(--white);
    transform: translateY(-2px);
} */

/* Modern Footer Design */
.footer {
    background: linear-gradient(135deg, #1a252f, #2c3e50, #34495e);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grain" width="100" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="30" cy="15" r="0.3" fill="rgba(255,255,255,0.03)"/><circle cx="60" cy="5" r="0.4" fill="rgba(255,255,255,0.04)"/><circle cx="80" cy="12" r="0.6" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="20" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-brand h4 {
    font-weight: 800;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
}

.footer-brand h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--green));
    border-radius: 2px;
}

.footer-brand p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--saffron);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
    position: relative;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1rem;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--saffron);
    padding-left: 1.5rem;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-signature {
    position: absolute; /* now relative to footer only */
    bottom: 10px;
    right: 10px;
    width: 120px; /* adjust size as needed */
    opacity: 0.8;
    pointer-events: none; /* non-clickable */
    user-select: none; /* prevent selecting */
}


.contact-info {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.contact-icon {
    background: var(--saffron);
    color: #fff;
    font-size: 1.2rem;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    min-width: 40px;
    min-height: 40px;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}



.contact-item span,
.contact-item .text-dark {
    color: #ecf0f1 !important;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.social-link:hover {
    background: var(--saffron);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 153, 51, 0.3);
}

.social-link:hover::before {
    left: 100%;
}

.footer hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 3rem 0 2rem;
}

.footer .text-center p {
    color: #95a5a6;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-brand {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Service Page Styles */
.service-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1), rgba(19, 136, 8, 0.1));
}

.service-hero-content h1 {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-hero-content .lead {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.service-overview {
    padding: 80px 0;
}

.service-features .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.service-features .feature-item i {
    font-size: 2rem;
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.service-features .feature-item h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-widget h4 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.info-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

/* Specialty Items */
.specialty-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.specialty-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.specialty-item i {
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.specialty-item span {
    font-weight: 500;
    color: var(--dark);
}

/* Appointment Booking */
.appointment-booking {
    padding: 80px 0;
}

.booking-form {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Test Categories */
.test-categories {
    padding: 80px 0;
}

.test-category-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.test-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--saffron), var(--green));
    color: var(--white);
    font-size: 2rem;
}

.test-category-card h5 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.test-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.test-list li {
    margin-bottom: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.test-list li::before {
    content: '•';
    color: var(--saffron);
    margin-right: 0.5rem;
}

/* Package Cards */
.package-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.package-card.featured {
    border: 2px solid var(--saffron);
    transform: scale(1.05);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.package-ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--saffron);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 1;
}

.package-header {
    background: linear-gradient(135deg, var(--saffron), var(--green));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.package-header h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.package-price .currency {
    font-size: 1.2rem;
}

.package-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
}

.package-price .original-price {
    font-size: 1rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.package-body {
    padding: 2rem;
}

.package-includes {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.package-includes li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.package-includes li i {
    margin-right: 0.75rem;
}

/* Contact Page Styles */
.contact-hero {
    padding: 80px 0;
}

.emergency-contact .row {
    margin-top: 2rem;
}

.emergency-btn {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s ease;
    width: 100%;
}

.emergency-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    color: var(--dark);
}

.emergency-btn i {
    font-size: 2rem;
    margin-right: 1rem;
    color: var(--saffron);
}

.emergency-btn div {
    text-align: left;
}

.emergency-btn strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.emergency-btn small {
    color: var(--gray);
}

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

.contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info .contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), var(--green));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-info .contact-content h5 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.contact-info .contact-content p {
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

.social-contact .social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-contact .social-link {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s ease;
}

.social-contact .social-link:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    color: var(--dark);
}

.social-contact .social-link i {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 30px;
}

.social-contact .social-link.facebook i { color: #1877f2; }
.social-contact .social-link.instagram i { color: #e4405f; }
.social-contact .social-link.youtube i { color: #ff0000; }
.social-contact .social-link.linkedin i { color: #0077b5; }

/* Map Section */
.map-section {
    padding: 80px 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1), rgba(19, 136, 8, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.map-content h4 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.map-content p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.map-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: var(--white);
    border: none;
    font-weight: 600;
    color: var(--dark);
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--saffron);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    background: var(--white);
    color: var(--gray);
    line-height: 1.6;
}

/* Health Tips Styles */
.health-tips-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1), rgba(19, 136, 8, 0.1));
}

.tips-categories {
    padding: 80px 0;
}

.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--saffron);
    background: transparent;
    color: var(--saffron);
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--saffron);
    color: var(--white);
}

.tip-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tip-card img {
    height: 200px;
    object-fit: cover;
}

.tip-card .card-body {
    padding: 1.5rem;
}

.tip-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--saffron);
    color: var(--white);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.tip-card h5 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.tip-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tip-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card,
    .speciality-card,
    .ambulance-card {
        margin-bottom: 2rem;
    }
    
    .lab-booking-form,
    .booking-form,
    .contact-form {
        padding: 2rem;
    }
    
    .top-strip {
        text-align: center;
    }
    
    .top-strip .row > div {
        margin-bottom: 0.5rem;
    }
    
    .logo-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .emergency-contact .row {
        flex-direction: column;
    }
    
    .map-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .category-filter {
        justify-content: center;
    }
    
    .social-contact .social-links {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card,
    .lab-booking-form,
    .booking-form,
    .contact-form {
        padding: 1.5rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .brand-text {
        font-size: 1.2rem;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-5px);
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.rounded-4 {
    border-radius: 20px !important;
}

.shadow-lg {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--saffron);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e8822e;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}