
:root {
    --primary-color: #1b3058;
    --secondary-color: #f1f5f9;
    --text-color: #334155;
    --text-light: #64748b;
    --accent-color: #2563eb;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--secondary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utilities */
.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #122141;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: #f8fafc;
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Header */
.header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav a:not(.btn):hover {
    opacity: 0.8;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 992px) {

    /* Hide nav by default on mobile; show when .mobile-open class added by JS */
    .nav {
        display: none;
    }

    .nav.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 1rem 1.5rem 1.5rem;
        z-index: 999;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        gap: 0;
    }

    /* Only the direct top-level ul — NOT the dropdown-menu ul */
    .nav.mobile-open>ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav.mobile-open>ul>li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav.mobile-open>ul>li>a {
        display: block;
        padding: 0.75rem 0;
        font-size: 0.95rem !important;
    }

    .nav.mobile-open>.btn {
        margin-top: 1rem;
        text-align: center;
        width: 100%;
    }

    .mobile-menu-btn {
        display: block;
    }
}


/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge i {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.hero-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #cbd5e1;
    max-width: 500px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.hero-images {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    height: 500px;
    gap: 1.5rem;
}

.hero-img-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.hero-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-1 {
    width: 280px;
    height: 400px;
    align-self: flex-start;
}

.card-2 {
    width: 240px;
    height: 350px;
    align-self: flex-end;
    margin-bottom: -2rem;
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-text {
        margin: 0 auto 2rem;
    }

    .hero-images {
        justify-content: center;
        height: auto;
        margin-top: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

/* Expertise Section */
.pt-100 {
    padding-top: 6rem;
}

.pb-100 {
    padding-bottom: 6rem;
}

.expertise {
    background-color: var(--white);
}

.expertise-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.expertise-content {
    flex: 1;
}

.expertise-content .section-subtitle {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.expertise-text {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.expertise-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
}

.expertise-phone i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.expertise-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.circle-img-wrapper {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
    border: 10px solid var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.circle-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
    border-top: 1px solid #e2e8f0;
    padding-top: 3rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .expertise-grid {
        flex-direction: column;
        text-align: center;
    }

    .expertise-actions {
        justify-content: center;
        flex-direction: column;
    }

    .circle-img-wrapper {
        width: 300px;
        height: 300px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--secondary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
    align-items: center;
}

.feature-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.center-col {
    align-items: center;
}

.feature-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    gap: 1rem;
    text-align: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.center-card {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: #e0f2fe;
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.feature-card h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.feature-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid var(--white);
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-img {
        margin: 2rem auto;
    }

    .center-col {
        order: -1;
    }
}

/* Services Section */
.services {
    background-color: var(--primary-color);
}

.text-white {
    color: var(--white) !important;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Doctor Section */
.doctor-section {
    background: linear-gradient(rgba(27, 48, 88, 0.8), rgba(27, 48, 88, 0.9)), url('https://images.unsplash.com/photo-1606811841689-23dfddce3e95?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.doctor-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.doctor-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 1rem;
}

.doctor-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.doctor-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--secondary-color);
}

.doctor-text .quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.doctor-text .quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
    top: -2rem;
    left: -1rem;
    z-index: -1;
}

.doctor-role {
    color: var(--text-light);
    font-weight: 500;
}

/* Testimonials */
.testimonials {
    background-color: var(--secondary-color);
}

.reviews-wrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}

.google-rating {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    min-width: 250px;
}

.google-rating h4 {
    font-size: 1.5rem;
    color: var(--text-color);
}

.stars {
    color: #fbbc04;
    margin: 0.5rem 0;
}

.google-rating p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.review-cards {
    display: flex;
    gap: 2rem;
    flex: 1;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    flex: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.avatar {
    width: 45px;
    height: 45px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.avatar.bg-blue {
    background-color: #0ea5e9;
}

.reviewer h5 {
    font-size: 1.1rem;
    color: var(--text-color);
}

.google-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #4285f4;
    font-size: 1.5rem;
}

@media (max-width: 992px) {
    .doctor-content {
        flex-direction: column;
        text-align: center;
    }

    .reviews-wrapper {
        flex-direction: column;
    }

    .review-cards {
        flex-direction: column;
    }
}

/* Contact Section */
.bg-white {
    background-color: var(--white);
}

.mt-4 {
    margin-top: 1.5rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.w-100 {
    width: 100%;
}

.d-flex {
    display: flex;
}

.gap-2 {
    gap: 1rem;
}

.justify-content-center {
    justify-content: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    text-align: left;
}

.info-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.info-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid #e2e8f0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    background-color: #f8fafc;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
}

/* FAQ Section */
.faq-container {
    display: flex;
    gap: 4rem;
}

.text-light-custom {
    color: var(--text-light);
}

.faq-content {
    flex: 1;
}

.faq-accordion {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: white;
}

.faq-question h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 0;
    padding-right: 2rem;
}

.faq-icon {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    color: var(--text-light);
    margin: 0;
    padding-bottom: 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .faq-container {
        flex-direction: column;
    }
}

/* Footer Section */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-col ul a:hover {
    opacity: 1;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Navbar Layout ── */
.nav>ul {
    gap: 1.2rem;
}

.nav a:not(.btn) {
    font-size: 0.9rem;
}

/* ── Mobile Nav (hamburger) ── */
@media (max-width: 992px) {

    /* Slide-down panel */
    .nav.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: var(--primary-color);
        padding: 0.5rem 1.25rem 1.5rem;
        z-index: 999;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
        gap: 0;
    }

    /* Stack nav items vertically */
    .nav.mobile-open>ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav.mobile-open>ul>li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav.mobile-open>ul>li>a {
        display: block;
        padding: 0.8rem 0;
        font-size: 0.95rem !important;
    }

    /* CTA button at bottom */
    .nav.mobile-open>.btn {
        display: block;
        margin-top: 1rem;
        text-align: center;
        width: 100%;
    }


}


/* ============================================
   HERO – Infinite Vertical Scroll Strip
   ============================================ */
.hero-scroll-columns {
    flex: 1;
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    height: 600px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

.hero-scroll-column {
    display: flex;
    flex-direction: column;
}

.hero-scroll-track {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: scrollUp 14s linear infinite;
    will-change: transform;
}

.hero-scroll-track.reverse {
    animation-direction: reverse;
    animation-duration: 16s;
}

.hero-scroll-track:hover {
    animation-play-state: paused;
}

.hero-scroll-img {
    width: 260px;
    height: 190px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.hero-scroll-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-scroll-img:hover img {
    transform: scale(1.05);
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@media (max-width: 1200px) {
    .hero-scroll-img {
        width: 220px;
        height: 160px;
    }
}

@media (max-width: 992px) {
    .hero-scroll-columns {
        height: 320px;
        width: 100%;
        justify-content: center;
        margin-top: 2rem;
    }

    .hero-scroll-column.col-2 {
        display: none;
    }

    .hero-scroll-img {
        width: 280px;
        height: 200px;
    }
}

/* ============================================
   TESTIMONIALS – Swiper Carousel Overrides
   ============================================ */
.reviews-wrapper {
    flex-wrap: nowrap;
    align-items: flex-start;
}

.testimonials-swiper {
    flex: 1;
    min-width: 0;
    padding-bottom: 3rem !important;
}

.testimonials-swiper .swiper-slide {
    height: auto;
}

.testimonials-swiper .review-card {
    height: 100%;
    box-sizing: border-box;
}

/* Swiper nav button colors */
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
    color: var(--primary-color);
    background: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.testimonials-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after {
    font-size: 0.9rem;
    font-weight: 700;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

@media (max-width: 992px) {
    .reviews-wrapper {
        flex-direction: column;
    }

    .testimonials-swiper {
        width: 100%;
    }
}

.surgi-container{
display:flex;
align-items:center;
gap:60px;
flex-wrap:wrap;
}

.surgi-slider{
width:500px;
height:340px;
position:relative;
overflow:hidden;
border-radius:10px;
}

.surgi-slider img{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
opacity:0;
transition:opacity 1s;
}

.surgi-slider img.active{
opacity:1;
}

.surgi-text{
max-width:500px;
}

.surgi-text h2{
font-size:36px;
margin-bottom:10px;
}

.surgi-text hr{
margin:15px 0 25px;
}

.surgi-text p{
font-size:18px;
line-height:1.7;
color:#1f3b73;
}

.surgi-video-container{
display:flex;
align-items:center;
gap:60px;
flex-wrap:wrap;
}

.video-box{
width:320px;
border-radius:14px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.video-box video{
width:100%;
display:block;
border-radius:14px;
}

.surgi-video-text{
max-width:600px;
}

.surgi-video-text h2{
font-size:38px;
margin-bottom:10px;
}

.surgi-video-text hr{
margin:15px 0 25px;
}

.surgi-video-text p{
font-size:18px;
line-height:1.8;
color:#1f3b73;
margin-bottom:20px;
}

.treatment-title{
text-align:center;
font-size:42px;
margin-bottom:10px;
}

.treatment-line{
width:80%;
margin:20px auto;
}

.treatment-text{
text-align:center;
max-width:1000px;
margin:auto;
font-size:18px;
line-height:1.8;
color:#1f3b73;
margin-bottom:50px;
}

.treatment-slider{
overflow:hidden;
width:100%;
}

.treatment-track{
display:flex;
gap:25px;
animation:scroll 25s linear infinite;
}

.treatment-track img{
width:320px;
height:220px;
object-fit:cover;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

@keyframes scroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

.certificate-card {
    padding: 20px;
}

.certificate-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.certificate-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.certificate-card:hover img {
    transform: scale(1.05);
}

.more-certificates{
display:none;
}

.certificate-btn{
text-align:center;
margin-top:40px;
margin-bottom:60px;
}

.certificate-btn button{
display:inline-block;
}
.certificate-btn button{
background:#2563eb;
color:white;
border:none;
padding:12px 25px;
border-radius:8px;
font-size:16px;
cursor:pointer;
transition:0.3s;
}

.certificate-btn button:hover{
background:#1e40af;
}
.certificate-card h3{
font-size:18px;
margin-top:10px;
text-align:center;
}

.google-review-btn{
display:inline-block;
background:#2563eb;
color:white;
padding:12px 28px;
border-radius:8px;
font-weight:600;
text-decoration:none;
transition:0.3s;
margin-top:40px;   /* yeh add karo */
}

.review-btn-wrapper{
display:flex;
justify-content:center;
margin-top:40px;
margin-bottom:60px;
}