 /* Hero Section Styling */
    .hero-section {
        padding: 40px 0;
        background: linear-gradient(180deg, var(--cream-light) 0%, #ffffff 100%);
        text-align: center;
        display: flex;
        align-items: center;
        min-height: 60vh;
    }

    .hero-content {
        max-width: 1100px;
        margin: 0 auto;
    }

    /* Badge Style */
    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 8px 20px;
        background: white;
        border: 1px solid #e0e0e0;
        border-radius: 50px;
        color: var(--text-light);
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 30px;
        box-shadow: var(--shadow-sm);
    }

    .hero-badge i {
        color: #a87cc3; /* Purple shade from image */
    }

    /* Title Style */
    .hero-title {
        font-family: 'Playfair Display', serif;
        font-size: 64px;
        font-weight: 800;
        color: #2C2C2C;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .hero-title .highlight {
        color: #8c274c; /* Matching the purple in your image */
    }

    /* Description Style */
    .hero-description {
        font-size: 18px;
        color: var(--text-light);
        line-height: 1.6;
        margin-bottom: 40px;
        padding: 0 50px;
    }

    /* Buttons Style */
    .hero-btns {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .btn-primary-custom {
        background: #8c274c;
        color: white;
        padding: 15px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: 0.3s;
    }

    .btn-primary-custom:hover {
        background: #8e62ab;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(168, 124, 195, 0.3);
    }

    .btn-outline-custom {
        background: transparent;
        color: var(--text-dark);
        padding: 15px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        border: 1px solid #e0e0e0;
        transition: 0.3s;
    }

    .btn-outline-custom:hover {
        background: #f8f8f8;
        border-color: #ccc;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero-title { font-size: 38px; }
        .hero-description { font-size: 16px; padding: 0 10px; }
        .hero-btns { flex-direction: column; align-items: center; }
        .btn-primary-custom, .btn-outline-custom { width: 100%; max-width: 300px; justify-content: center; }
        .hero-section { padding: 60px 0; }
    }

    /* meet */
    :root { --maroon: #800020; --gold: #c5a059; --light-text: #666; }

/*.medical-stats { padding: 20px 20px; background: #fff; }*/
.container { max-width: 1200px; margin: 0 auto; }

/* Section Title Styling */
.section-title { text-align: center; margin-bottom: 70px; }
.section-title h2 { font-size: 38px; color: #333; margin-bottom: 10px; font-weight: 700; }
.section-title span { color: var(--maroon); }
.title-line { width: 80px; height: 4px; background: var(--maroon); margin: 0 auto; border-radius: 2px; }

/* Layout Grid */
.stat-row { 
    display: flex; 
    align-items: center; 
    gap: 80px; 
    margin-bottom: 20px; 
    opacity: 0; 
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}
.stat-row.show { opacity: 1; transform: translateY(0); }
.stat-row.reverse { flex-direction: row-reverse; }

/* Image Container */
.stat-image { flex: 1.2; position: relative; }
.stat-image img { 
    width: 70%; 
    border-radius: 30px 0 30px 0; /* Premium asymmetrical border */
    box-shadow: 20px 20px 60px rgba(0,0,0,0.08);
}

/* Content & Icon */
.stat-content { flex: 1; }
.icon-badge { 
    font-size: 24px; color: var(--maroon); 
    background: #fdf0f2; width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; margin-bottom: 20px;
}
.stat-content h3 { font-size: 28px; color: #222; margin-bottom: 15px; }
.stat-content p { color: var(--light-text); font-size: 17px; line-height: 1.8; margin-bottom: 35px; }

/* The "2 Countdown per Row" Magic */
.counter-wrapper { display: flex; gap: 40px; }
.counter-box { flex: 1; }
.num-wrap { display: flex; align-items: baseline; gap: 2px; }
.count { font-size: 42px; font-weight: 800; color: var(--maroon); line-height: 1; }
.unit { font-size: 24px; font-weight: 700; color: var(--maroon); }
.counter-box label { 
    display: block; font-size: 14px; color: #999; 
    text-transform: uppercase; letter-spacing: 1px; margin-top: 10px; font-weight: 600;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .stat-row, .stat-row.reverse { flex-direction: column; gap: 40px; text-align: center; }
    .icon-badge, .num-wrap { justify-content: center; }
    .counter-wrapper { justify-content: center; }
}

@media (max-width: 500px) {
    .counter-wrapper { flex-direction: column; gap: 30px; }
}


/* __________________________ */
.credentials-section {
    background-color: #f5f5f5;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}
.container { max-width: 1200px; margin: 0 auto; }

/* Global Reveal Animation */
.reveal { opacity: 0; transform: translateY(30px); transition: 1s all ease; }
.reveal.show { opacity: 1; transform: translateY(0); }

/* Part 1 Styles */
.trusted-content h2 { font-size: 32px; color: #b16558; margin-bottom: 15px; }
.trusted-content p { color: #666; max-width: 800px; margin: 0 auto 50px; }
.trusted-grid { display: flex; justify-content: space-around; gap: 20px; margin-bottom: 80px; flex-wrap: wrap; }
.t-num { font-size: 42px; font-weight: 800; color: #b16558; margin-bottom: 5px; }
.t-item label { color: #888; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }

/* Sub Headings */
.sub-heading { font-size: 24px; color: #b16558; margin-bottom: 40px; position: relative; padding-bottom: 10px; }
.sub-heading::after { content: ''; width: 50px; height: 3px; background: #800020; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); }



/* Hospital Styles */
.hosp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.hosp-item { background: #fff; padding: 40px 20px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; }
.hosp-item i { font-size: 35px; color: #b16558; margin-bottom: 20px; }
.hosp-item h4 { font-size: 18px; color: #333; margin-bottom: 10px; }
.hosp-item p { font-size: 14px; color: #888; margin: 0; }

/* Mobile Responsive */
@media (max-width: 991px) {
    .cert-grid, .hosp-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .cert-grid, .hosp-grid, .trusted-grid { grid-template-columns: 1fr; flex-direction: column; }
    .trusted-content h2 { font-size: 26px; }
}
/* __________________________ */

/* CSS Styling */
.testimonials-section {
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-header h2 {
    font-size: 32px;
    color: #b16558;
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonial-header p {
    color: #666;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.test-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.test-card:hover {
    transform: translateY(-10px);
}

.user-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.user-meta img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-details h5 {
    margin: 0;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.user-details span {
    font-size: 13px;
    color: #999;
}

.rating-stars {
    color: #f1c40f;
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    flex-grow: 1;
}

.condition-tag {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    font-size: 13px;
    color: #27ae60;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #888;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s all ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-header h2 {
        font-size: 26px;
    }
}
/* ____________________________ */

.topics-section {
    padding: 100px 20px;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.topics-header {
    text-align: center;
    margin-bottom: 60px;
}

.topics-header h2 {
    font-size: 36px;
    color: #b16558;
    font-weight: 700;
    margin-bottom: 15px;
}

.topics-header p {
    color: #666;
    font-size: 17px;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.topic-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.topic-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}

.topic-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
    transition: 0.3s;
}

.icon-blue { background-color: #e3f2fd; color: #1e88e5; }
.icon-pink { background-color: #fce4ec; color: #d81b60; }
.icon-green { background-color: #e8f5e9; color: #43a047; }

.topic-card:hover .topic-icon-wrap {
    transform: scale(1.1) rotate(10deg);
}

.topic-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.topic-card p {
    color: #777;
    line-height: 1.6;
    font-size: 15px;
}

.hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #b16558;
    transition: 0.4s;
}

.topic-card:hover .hover-line {
    width: 100%;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s all ease-out;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .topics-grid { 
        grid-template-columns: 1fr 1fr; 
    }
}

@media (max-width: 600px) {
    .topics-grid { 
        grid-template-columns: 1fr; 
    }
    .topics-header h2 { 
        font-size: 28px; 
    }
}
/* ____________________ */

/* Section Styling with Prefix */
.news-newsletter-section {
    background-color: #f9f0ef; /* Updated Background Color */
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.news-container {
    max-width: 800px;
    margin: 0 auto;
}

.news-main-title {
    font-size: 42px;
    color: #332d2d; 
    font-weight: 700;
    margin-bottom: 20px;
}

.news-description {
    color: #666;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Styling with Prefix */
.news-subscribe-form {
    margin-bottom: 25px;
}

.news-input-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 550px;
    margin: 0 auto;
}

.news-input-field {
    flex: 1;
    padding: 18px 25px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
    background: #ffffff;
}

.news-input-field:focus {
    border-color: #8c274c; 
    box-shadow: 0 4px 15px rgba(155, 108, 195, 0.15);
}

.news-sub-btn {
    background-color: #944E56; /* Purple tone as per image */
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.news-sub-btn:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(155, 108, 195, 0.3);
}

.news-footer-msg {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
}

/* Scroll Animation with Prefix */
.news-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s all ease;
}

.news-reveal.news-show {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .news-input-group {
        flex-direction: column;
        gap: 10px;
    }
    .news-sub-btn {
        width: 100%;
    }
    .news-main-title {
        font-size: 32px;
    }
}