/* ===== ROOT VARIABLES - Logo Color Combination ===== */
:root {
    --primary-navy: #003E7E;
    --primary-red: #E31E24;
    --primary-magenta: #A5195D;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --border-color: #E0E0E0;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ===== TOP HEADER BAR ===== */
.top-header {
    background: var(--primary-navy);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.9rem;
}

.header-contact {
    display: flex;
    gap: 25px;
    align-items: center;
}

.header-link {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-link:hover {
    color: var(--primary-red);
}

.header-link i {
    font-size: 1rem;
}

.header-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.follow-text {
    margin-right: 10px;
    font-weight: 500;
}

.social-icon {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.social-icon:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

/* Mobile view - Hide text, show only icons */
@media (max-width: 768px) {
    .contact-text {
        display: none;
    }

    .follow-text {
        display: none;
    }

    .header-contact {
        gap: 15px;
        justify-content: flex-start;
    }

    .header-social {
        gap: 8px;
        justify-content: flex-end;
    }

    .header-link i {
        font-size: 1.1rem;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    background: var(--white);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar.scrolled {
    padding: 0.7rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-navy);
    letter-spacing: 1px;
}

.cross {
    color: var(--primary-red);
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--primary-magenta);
    font-style: italic;
    margin-top: -5px;
}

.navbar-nav .nav-link {
    color: var(--primary-navy);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-red);
}

/* ===== HERO SECTION WITH OWL CAROUSEL ===== */
.hero-section {
    position: relative;
    margin-top: 0;
}

.hero-slide {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(0 62 126 / 72%), rgb(0 86 179 / 55%));
    z-index: 2;
}

.hero-slide .container {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.95);
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Owl Carousel Custom Navigation */
.hero-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.hero-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background: var(--primary-red) !important;
    color: var(--white) !important;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.hero-carousel .owl-nav button:hover {
    background: var(--primary-navy) !important;
    transform: scale(1.1);
}

.hero-carousel .owl-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 10;
}




/* ===== BUTTONS ===== */
.btn-primary-custom {
    background: var(--primary-red);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: #b31018;
    transform: translateY(-2px);
    color: var(--white);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    border: 2px solid var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary-navy);
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--primary-navy);
    color: var(--white);
    padding: 60px 0;
    position: relative;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    border: 2px solid rgba(255,255,255,0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

/* ===== SECTION STYLES ===== */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background: var(--light-bg) !important;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ===== ABOUT FEATURES ===== */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    color: var(--primary-red);
    font-size: 1.3rem;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
}

/* ===== SERVICE CARDS - NO SHADOW ===== */
.service-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-navy);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-navy), #0056b3);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-red);
    transform: rotateY(360deg);
}

.service-card h4 {
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 15px;
}

/* ===== HEALTH CARDS - NO SHADOW ===== */
.health-card {
    background: var(--white);
    border-radius: 15px;
    transition: all 0.4s ease;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.health-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-magenta);
}

.health-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.health-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.health-card:hover .health-img-wrapper img {
    transform: scale(1.1);
}

.health-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,62,126,0.9), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.health-card:hover .health-overlay {
    opacity: 1;
}

.overlay-btn {
    background: var(--primary-red);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.overlay-btn:hover {
    background: var(--white);
    color: var(--primary-navy);
}

.health-content {
    padding: 25px;
}

.health-content h4 {
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 10px;
}

/* ===== DOCTOR CARDS - NO SHADOW ===== */
.doctor-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.doctor-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-navy);
}

.doctor-img {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.doctor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.doctor-card:hover .doctor-img img {
    transform: scale(1.1);
}

.doctor-social {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.doctor-card:hover .doctor-social {
    opacity: 1;
}

.doctor-social a {
    width: 35px;
    height: 35px;
    background: var(--primary-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.doctor-social a:hover {
    background: var(--white);
    color: var(--primary-navy);
}

.doctor-info {
    padding: 25px;
    text-align: center;
}

.doctor-info h5 {
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 5px;
}

.specialization {
    color: var(--primary-magenta);
    font-weight: 500;
    margin-bottom: 5px;
}

.experience {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== BLOG CARDS - NO SHADOW ===== */
.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.blog-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-content h5 {
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.blog-link:hover {
    gap: 10px;
}

/* ===== CONSULT CARDS - NO SHADOW ===== */
.consult-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    height: 100%;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-red);
}

.consult-card h4 {
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 20px;
}

.consult-card i {
    color: var(--primary-red);
    margin-right: 10px;
}

.consult-card ul {
    list-style: none;
    padding: 0;
}

.consult-card li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.consult-card li:hover {
    padding-left: 10px;
    color: var(--primary-red);
}

.consult-card li:before {
    content: "✓ ";
    color: var(--primary-red);
    font-weight: bold;
    margin-right: 10px;
}

/* ===== MYTH CARDS - NO SHADOW ===== */
.myth-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.myth-card:hover {
    border-color: var(--primary-magenta);
}

.myth-header {
    margin-bottom: 20px;
}

.myth-header h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 10px;
}

.reality-content {
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

/* ===== PODCAST & VIDEO CARDS - NO SHADOW ===== */
.podcast-card, .video-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.podcast-card:hover, .video-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-magenta);
}

.podcast-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-magenta);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.podcast-card:hover .podcast-icon {
    background: var(--primary-red);
    transform: scale(1.1) rotate(360deg);
}

.video-thumbnail {
    position: relative;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.video-thumbnail img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.4s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.2);
    background: var(--primary-navy);
}

/* ===== TESTIMONIAL CAROUSEL ===== */
.testimonial-carousel {
    padding: 20px 0;
}

/* .testimonial-item {
    padding: 0 15px;
} */

.testimonial-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    border: 1px solid var(--border-color);
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-red);
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-footer img {
    width: 60px !important;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-navy);
}

.patient-info h6 {
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 5px;
}

.stars {
    color: #FFD700;
}

.testimonial-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.testimonial-carousel .owl-dot {
    width: 12px;
    height: 12px;
    background: var(--border-color) !important;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary-red) !important;
    width: 30px;
    border-radius: 10px;
}

/* ===== FEATURE BOX - NO SHADOW ===== */
.feature-box {
    text-align: center;
    padding: 35px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
    background: var(--primary-navy);
    transform: rotateY(360deg);
}

.feature-box h5 {
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 10px;
}

/* ===== ACCORDION (FAQ) ===== */
.accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: var(--white);
    color: var(--primary-navy);
    font-weight: 600;
    padding: 20px 25px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-navy);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 20px 25px;
}

/* ===== CONTACT INFO - NO SHADOW ===== */
.contact-info {
    text-align: center;
    padding: 35px;
    background: var(--white);
    border-radius: 15px;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.contact-info:hover {
    transform: translateY(-5px);
    border-color: var(--primary-magenta);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-magenta);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.contact-info:hover .contact-icon {
    background: var(--primary-red);
    transform: rotateY(360deg);
}

.contact-info h5 {
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 15px;
}

/* ===== FORMS ===== */
.contact-form .form-control, .newsletter-form .form-control {
    padding: 14px 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus, .newsletter-form .form-control:focus {
    border-color: var(--primary-navy);
    box-shadow: none;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 50px 0 30px;
}

.footer h5, .footer h6 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--primary-red);
    font-style: italic;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer hr {
    border-color: rgba(255,255,255,0.2);
    margin: 30px 0;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-navy);
    transform: translateY(-5px);
}

/* ===== UTILITY CLASSES ===== */
.highlight-text {
    color: var(--primary-magenta);
    font-weight: 600;
    font-style: italic;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: 500px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Stats 2-2 grid on mobile */
    .stats-section .row {
        margin: 0 -8px;
    }

    .stats-section .col-6 {
        padding: 0 8px;
    }
}

@media (max-width: 576px) {
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        padding: 12px 25px;
    }

    .hero-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}