* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

:root {
    --transition-smooth: 0.35s ease;
    --accent-purple: #333596;
    --accent-pink: #c91019;
    --text-gray: #667085;
    --primary-navy: #0e293a;
}

.navbar .dropdown-toggle::after {
    display: none;
}

.about-arrow {
    margin-left: 6px;
    font-size: 13px;
    transition: transform 0.25s ease;
}

.dropdown.show .about-arrow,
.dropdown-toggle.show .about-arrow {
    transform: rotate(180deg);
}

.nav-item.dropdown {
    position: relative;
}

.nav-link,
.dropdown-item {
    text-decoration: none !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
}

.nav-link:focus,
.nav-link:active,
.dropdown-item:focus,
.dropdown-item:active {
    outline: none;
    text-decoration: none !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
}

.clinic-dropdown {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    min-width: 220px;
    padding: 8px;
    margin-top: 12px;
    z-index: 9999;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.16);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.nav-item.dropdown.show .clinic-dropdown,
.nav-item.dropdown:hover .clinic-dropdown,
.clinic-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.clinic-dropdown .dropdown-item {
    color: #111827;
    border-radius: 6px;
    padding: 11px 13px;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.22s ease;
}

.clinic-dropdown .dropdown-item:hover,
.clinic-dropdown .dropdown-item:focus,
.clinic-dropdown .dropdown-item:active {
    background: rgba(0, 0, 0, 0.04);
    color: #111827 !important;
}


/* NAVBAR */

.custom-navbar {
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: 99;
}

.custom-navbar.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 35px rgba(17, 24, 39, 0.12);
    backdrop-filter: blur(12px);
}

.custom-navbar.navbar-fixed .nav-wrapper,
.custom-navbar.navbar-fixed .circle-btn {
    box-shadow: none;
}

.logo {
    width: 130px;
}


.dropdown-item.active, .dropdown-item:active{
    background-color: white!important;
}
.clinic-name {
    font-size: 32px;
    font-weight: 600;
    margin-left: 15px;
}

.nav-wrapper {
    background: #fff;
    padding: 12px 35px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.navbar-nav {
    gap: 25px;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: #111 !important;
    padding-bottom: 8px !important;
}

.nav-link::before {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
    height: 2px;
    background: #c91019;
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active,
.nav-link.show {
    color: #1f2937 !important;
    font-weight: 500;
}

.nav-link:hover::before,
.nav-link.active::before,
.nav-link.show::before {
    left: 0;
    right: 0;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.appointment-btn {
    background: #2f2da6;
    color: #fff;
    padding: 16px 28px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
}

.circle-btn {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #2f2da6;
    ;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.min-vh-100 {
    min-height: 66vh !important;
}

/* HERO */

.hero-section {
    position: relative;
    background: linear-gradient(rgb(65 79 86 / 60%), rgb(7 12 41 / 65%)), url(../img/hero2-img.png) no-repeat center center / cover;
    padding-top: 140px;
}

.overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    color: #fff;
    letter-spacing: 4px;
    font-weight: 600;
    font-size: 15px;
}

.line {
    width: 55px;
    height: 4px;
    background: #0b0b0b;
    margin: 20px 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.05;
    color: #d6dbe4;
    margin-bottom: 11px;
}

.hero-section p {
    font-size: 22px;
    line-height: 1.1;
    color: #f9efef;
    margin-bottom: 10px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-book {
    background: #2f2da6;
    color: white;
    padding: 13px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.35);
}

.btn-call {
    background: white;
    color: #2f2da6;
    padding: 12px 13px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.35);
}

/* Main Section Container */
.about-section {
    max-width: 1200px;
    margin: 28px auto 100px auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
}

/* Left Side: Images Grid Mosaic */
.images-column {
    flex: 1;
    max-width: 550px;
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 1.15fr 1.25fr;
    grid-template-rows: 240px 280px;
    gap: 24px;
    position: relative;
}

.grid-card {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    position: relative;
}

.grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);

}

.grid-card:hover img {
    transform: scale(1.06);
}

/* Tall Image (Leftmost) */
.img-tall {
    grid-column: 1;
    grid-row: 1 / span 2;
    height: 100%;
}

/* Landscape Image (Top Right) */
.img-wide {
    grid-column: 2;
    grid-row: 1;
    height: 100%;
}

/* Square Image (Bottom Right) */
.img-square {
    grid-column: 2;
    grid-row: 2;
    height: 100%;
    position: relative;
}

/* Experience Circular Badge overlay */
.experience-badge {
    position: absolute;
    top: 0px;
    left: 1px;
    width: 130px;
    height: 130px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: var(--transition-smooth);
}

.experience-badge:hover {
    transform: scale(1.06);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.spinning-text-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.badge-center-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.badge-center-icon i {
    color: black;
    font-size: 20px;
}

/* Right Side: Text & Features Content */
.content-column {
    flex: 1.1;
    position: relative;
    z-index: 2;
}

.content-aboutcolumn {
    flex: 1.1;
    position: relative;
    z-index: 2;
    margin-top: 12%;
}

/* Pill Badge */
.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    background-color: #e2e2ee;
    color: black;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
}

.pill-dot {
    width: 6px;
    height: 6px;
    background-color: #0f1011;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #4b4f50;
    animation: pulse-dot 2s infinite alternate;
}

@keyframes pulse-dot {
    0% {
        opacity: 0.5;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Main Heading */
.main-heading {
    font-size: 36px;
    font-weight: 800;
    color: #c68789;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.about-heading {
    color: #2f2da6;
}

/* Description Paragraph */
.description-paragraph {
    font-size: 16px;
    color: gray;
    line-height: 1.7;
    margin-bottom: 11px;
    font-weight: 500;
}

/* Clinic Specialties / Features grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 21px;
    margin-bottom: 18px;
    margin-top: 5%;
}

.feature-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon-wrapper {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    background-color: #f5f3ff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-purple);
    font-size: 20px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(124, 58, 237, 0.05);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: rgb(132, 16, 16);
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
}

.feature-text-wrapper h3 {
    font-size: 18px;
    font-weight: 700;
    color: rgb(47, 45, 168);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.feature-text-wrapper p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Divider & Contact details row */
.footer-action-row {
    display: flex;
    align-items: center;
    gap: 36px;
}

.about-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #2f2da6;
    color: white;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.25);
}

.about-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.35);
}

.btn-arrow-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    transition: var(--transition-smooth);
}

.about-more-btn:hover .btn-arrow-circle {
    color: var(--accent-purple);
    transform: rotate(45deg);
}

/* Divider line */
.vertical-divider {
    height: 45px;
    width: 1px;
    background-color: #e2e8f0;
}

/* Contact Details */
.contact-info-block {
    display: flex;
    align-items: center;
    gap: 16px;

}

.contact-phone-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #2f2da6;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 15px rgba(14, 41, 58, 0.15);
}

.contact-info-block:hover .contact-phone-icon {
    background-color: rgb(132, 16, 16);
    transform: scale(1.08) rotate(-15deg);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
}

.contact-text-labels span {
    display: block;
}

.contact-label {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 600;
}

.contact-number {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-navy);
    letter-spacing: -0.5px;
}

/* Floating particles/shapes */
.floating-glow-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, rgba(219, 39, 119, 0.02) 70%);
    filter: blur(80px);
    z-index: -1;
    top: 10%;
    left: 20%;
    pointer-events: none;
    animation: float-blob 20s infinite alternate;
}

@keyframes float-blob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, -50px) scale(1.08);
    }

    100% {
        transform: translate(-20px, 30px) scale(0.95);
    }
}

.about-img img {
    height: 515px;
    width: 100%;
    max-width: 800px;
    border-radius: 15px;
    object-fit: cover;
}

.imagee-grid {
    display: grid;
    grid-template-columns: 1.25fr 1.15fr;
    grid-template-rows: 280px 240px;
    gap: 24px;
    position: relative;
}

.img-square {
    grid-column: 2;
    grid-row: 2;
    height: 100%;
    position: relative;
}

.img-talll {
    grid-column: 1;
    grid-row: 1;
    height: 100%;


}

/* Landscape Image (Top Right) */
.img-widee {
    grid-column: 2;
    grid-row: 1 / span 2;
    height: 100%;
}

.more-link {
    margin-top: 12px;
    font-weight: 800;
    color: #2f2da6;
    text-decoration: none;
    transition: 0.15s;
    font-size: 15px;
}

.more-link:hover {
    color: rgb(132, 16, 16) !important;

}


.services-section {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Header ──────────────────────────────────────── */
.section-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6c63ff;
    background: rgba(108, 99, 255, .1);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
}

.section-title em {
    font-style: 18px;
    color: #6c63ff;
}

.section-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin-top: 10px;
}

/* ── Row wrapper — relative so SVG overlay works ─── */
#rowWrapper {
    position: relative;
}

/* ── SVG arrows overlay ──────────────────────────── */
#arrowSvg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
    overflow: visible;
}

#arrowSvgg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
    overflow: visible;
}

#rowwrapperr {
    position: relative;
}

/* ── Feature card ────────────────────────────────── */
.feature-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .95);
    box-shadow: 0 4px 20px rgba(108, 99, 255, .09);
    transition: transform .3s, box-shadow .3s;
    margin-bottom: 14px;
    position: relative;
    z-index: 5;
}

/* .feature-card:last-child { margin-bottom: 0; }  */
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(108, 99, 255, .18);
}

/* Left column → icon on RIGHT, text on LEFT */
.left-col .feature-card {
    flex-direction: row-reverse;
}

/* ── Icon circle ─────────────────────────────────── */
.feat-icon {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
    transition: transform .3s, box-shadow .3s;
    position: relative;
    z-index: 6;
}

.feature-card:hover .feat-icon {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
}

/* ── Feature text ────────────────────────────────── */
.feat-body h3 {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.feat-body p {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
}

/* ── Icon gradient colours ───────────────────────── */
.ic-purple {
    background: linear-gradient(135deg, #a78bfa, #6c63ff);
    color: #fff;
}

.ic-green {
    background: linear-gradient(135deg, #34d399, #059669);
    color: #fff;
}

.ic-pink {
    background: linear-gradient(135deg, #f472b6, #ec4899);
    color: #fff;
}

.ic-blue {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    color: #fff;
}

.ic-orange {
    background: linear-gradient(135deg, #fb923c, #ea580c);
    color: #fff;
}

.ic-lime {
    background: linear-gradient(135deg, #a3e635, #65a30d);
    color: #fff;
}

.ic-sky {
    background: linear-gradient(135deg, #38bdf8, #0284c7);
    color: #fff;
}

.ic-navy {
    background: linear-gradient(135deg, #3b5bdb, #1e3a8a);
    color: #fff;
}

/* ── Center doctor column ────────────────────────── */
.doctor-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
    padding: 10px 0;
}

/* Subtle ring behind doctor */
.doctor-ring {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 1.5px dashed rgba(35, 28, 167, 0.2);
    animation: rotateSlow 30s linear infinite;
    pointer-events: none;
}

.doctor-ring::after {
    content: '';
    position: absolute;
    inset: 28px;
    border-radius: 50%;
    border: 1.5px dashed rgba(108, 99, 255, .12);
}

@keyframes rotateSlow {
    to {
        transform: rotate(360deg);
    }
}

.doctor-img {
    position: relative;
    z-index: 2;
    max-width: 396px;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(108, 99, 255, .2));

}

.doctor-imgg {
    position: relative;
    z-index: 5;
    max-width: 396px;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(108, 99, 255, .2));

}

/* Floating stat badges */
.stat-badge {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 8px 24px rgba(108, 99, 255, .15);
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    animation: floatBadge 5s ease-in-out infinite;
    border: 1px solid rgba(108, 99, 255, .1);
}

.stat-badge .badge-icon {
    font-size: 20px;
}

.stat-badge small {
    font-size: 10px;
    font-weight: 400;
    color: #6b7280;
    display: block;
}

.badge-top {
    top: 10px;
    right: 10px;
    animation-delay: 0s;
}

.badge-bottom {
    bottom: 20px;
    left: 10px;
    animation-delay: 1.5s;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


/* Full text - initially hidden */
.full-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

/* When expanded */
.full-text.expanded {
    max-height: 300px;
    /* enough space for text */
    opacity: 1;
}

/* Page redesign for mandakani.html */
.site-header {
    position: relative;
    z-index: 100;
    background: transparent;
}

.custom-navbar {
    background: rgba(255, 255, 255, 0.98);
    padding: 2px 0;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}

.navbar-brand {
    font-family: 'Outfit', sans-serif;
    color: #1f2937;
}

.brand-pretitle {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #6b7280;
}

.nav-cta {
    padding: 12px 22px;
    font-weight: 700;
}

.hero-section {
    padding: 100px 0 80px;
}

.hero-copy .eyebrow {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #7c3aed;
    margin-bottom: 16px;
}

.hero-copy h1 {
    font-size: clamp(2.75rem, 4vw, 4.5rem);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 24px;
    color: #111827;
}

.hero-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    max-width: 540px;
}

.hero-actions .btn {
    min-width: 180px;
}

.hero-actions .btn-outline-primary {
    border-color: #5b21b6;
    color: #5b21b6;
}

.hero-actions .btn-outline-primary:hover {
    background: rgba(91, 33, 182, 0.08);
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-chips span {
    background: #eef2ff;
    color: #4338ca;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 0.95rem;
    font-weight: 600;
}

.hero-card {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 30px;
    padding: 32px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.pill {
    background: #ede9fe;
    color: #6d28d9;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.94rem;
}

.hero-stat strong {
    display: block;
    font-size: 2rem;
    color: #111827;
}

.hero-stat small {
    color: #6b7280;
}

.hero-card-body p {
    margin-bottom: 22px;
    color: #475569;
    line-height: 1.75;
}

.hero-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #334155;
    font-weight: 500;
}

.hero-list li i {
    color: #7c3aed;
    font-size: 1.05rem;
}

.hero-card-footer {
    display: grid;
    gap: 14px;
    color: #475569;
    font-size: 0.97rem;
}

.hero-card-footer div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.services-section {
    padding: 10px 0;
}

.section-heading {
    max-width: 740px;
}

.section-label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 18px;
}

.section-heading h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    color: #111827;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1rem;
    color: #475569;
}



.about-section {
    padding: 80px 0;
}

.about-panel {
    background: #faf9ff;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 30px;
    padding: 38px;
}

.about-panel h2 {
    margin: 20px 0 24px;
    color: #111827;
}

.about-panel p {
    color: #475569;
    line-height: 1.8;
}

.about-list {
    margin-top: 28px;
    list-style: none;
    padding: 0;
    display: grid;
    gap: 14px;
}

.about-list li {
    position: relative;
    padding-left: 28px;
    color: #334155;
    font-weight: 500;
}

.about-list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    top: 2px;
    color: #7c3aed;
    font-size: 1.6rem;
    line-height: 1;
}

.feature-grid {
    display: grid;
    gap: 18px;
}

.feature-box {
    gap: 18px;
    align-items: flex-start;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
}

.feature-box i {
    font-size: 1.6rem;
    color: #7c3aed;
    min-width: 44px;
}

.feature-box h4 {
    margin-bottom: 8px;
    color: #111827;
}

.feature-box p {
    color: #475569;
    line-height: 1.7;
}

.contact-section {
    padding: 80px 0 100px;
}

.contact-panel {
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr 420px;
    align-items: start;
}

.contact-card {
    background: #ffffff;
    border-radius: 32px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    padding: 32px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
}

.contact-row {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 22px;
}

.contact-row i {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #ede9fe;
    color: #7c3aed;
    font-size: 1.1rem;
}

.contact-row strong {
    display: block;
    color: #111827;
}

.contact-row span {
    color: #6b7280;
    font-size: 0.95rem;
}

.contact-card .btn {
    width: 100%;
    margin-top: 10px;
}

.site-footer {
    padding: 24px 0;
    background: #f8fafc;
    color: #475569;
}

@media (max-width: 991px) {
    .hero-card {
        padding: 28px;
    }

    .contact-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .custom-navbar {
        padding: 14px 0;
    }

    .hero-section {
        padding-top: 70px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-card {
        border-radius: 24px;
    }

    .service-card,
    .feature-box,
    .about-panel,
    .contact-card {
        padding: 24px;
    }
}

/* Short preview text */
.short-text {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 6px;
}

/* Hide short text when expanded */
.full-text.expanded~.short-text,
.short-text.hidden {
    display: none;
}

/* Learn More Button */
.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #6c63ff;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s;
}

.learn-more-btn:hover {
    color: #4f46e5;
}

/* Arrow icon rotation on expand */
.learn-more-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.learn-more-btn.active i {
    transform: rotate(180deg);
    /* arrow upar ho jata hai */
}

/*=========================
Consultation Section
==========================*/

.consultation-section {
    padding: 80px 0;
    background: #f4f6fb;
}

/*=========================
LEFT SIDE
==========================*/

.left-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 35px;
    min-height: 329px;
}

.left-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.left-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 22, 46, .35);
}

.opening-card {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 60%;
    background: #081f3d;
    border-radius: 32px;
    padding: 35px;
    color: #fff;
    z-index: 5;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .35);
}

.opening-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.opening-header h3 {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
}

.clock-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.hour-row:last-child {
    border-bottom: none;
}

.hour-row span:first-child {
    color: #d8e2ef;
    font-size: 18px;
}

.hour-row span:last-child {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

/*=========================
RIGHT SIDE
==========================*/

.right-wrapper {
    background: #071d3a;
    border-radius: 35px;
    overflow: hidden;
    height: 100%;
}

.right-box {
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.right-box:last-child {
    border-right: none;
}

.feature-box {
    height: 100%;
    padding: 36px 39px 40px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 30px;
}

.feature-icon.purple {
    background: rgba(126, 96, 255, .12);
    color: #7d67ff;
}

.feature-icon.cyan {
    background: rgba(0, 195, 255, .12);
    color: #1fd4ff;
}

.feature-box h3 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
}

.feature-box p {
    color: #b7c2d1;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 30px;
}

.contact-info {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info i {
    margin-right: 12px;
    color: #1fd4ff;
}

.appointment-btn {
    display: inline-block;
    padding: 15px 38px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}

.appointment-btn:hover {
    background: #fff;
    color: #071d3a;
    border: 3px solid #333596;
}



/*=========================
Hover Effects
==========================*/

.opening-card {
    transition: .35s;
}

.opening-card:hover {
    transform: translateY(-8px);
}

.right-box {
    transition: .35s;
}

.right-box:hover {
    background: #0c2649;
}

.feature-icon {
    transition: .35s;
}

.right-box:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}


.review-section {
    padding: 45px 5%;
    background:
        linear-gradient(135deg, rgba(50, 52, 140, 0.08), rgba(201, 16, 25, 0.06)),
        #ffffff;
    position: relative;
    overflow: hidden;
}

.review-shell {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
    align-items: stretch;
    gap: 34px;
}

.review-visual {
    position: relative;
    min-height: 560px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.16);
    isolation: isolate;
}

.review-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 19, 43, 0.08), rgba(13, 19, 43, 0.72));
    z-index: 1;
}

.review-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    transition: transform 0.8s ease;
}

.review-visual:hover img {
    transform: scale(1.08);
}

.review-score,
.review-note {
    position: absolute;
    z-index: 2;
    color: #fff;
}

.review-score {
    top: 24px;
    left: 24px;
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.review-score strong {
    font-size: 42px;
    line-height: 1;
}

.review-score span {
    color: #ffd166;
    letter-spacing: 2px;
    white-space: nowrap;
}

.review-note {
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 22px;
    border-radius: 8px;
    background: rgba(7, 13, 34, 0.62);
    backdrop-filter: blur(10px);
}

.review-note i {
    color: #f0b0aa;
    font-size: 28px;
    margin-bottom: 12px;
}

.review-note p {
    margin: 0;
    font-size: 23px;
    line-height: 1.35;
    font-weight: 700;
}

.review-form-wrap {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid rgba(50, 52, 140, 0.12);
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.1);
    padding: 48px;
    position: relative;
}

.review-form-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #c91019, #333596, #00a6c8);
}

.review-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c91019;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.review-kicker::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: #c91019;
}

.review-form-wrap h2 {
    color: #111827;
    font-size: 46px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 12px;
}

.review-intro {
    color: #5b6473;
    font-size: 17px;
    margin-bottom: 28px;
}

.review-form {
    display: grid;
    gap: 20px;
}

.rating-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2px;
}

.rating-row input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rating-row label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px 14px;
    border-radius: 8px;
    border: 1px solid #d9deea;
    color: #596579;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}

.rating-row label i {
    color: #f5b301;
}

.rating-row input:checked+label {
    background: #333596;
    border-color: #333596;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(50, 52, 140, 0.22);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.review-form .input-group {
    min-height: 58px;
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: center;
    gap: 12px;
    border: 1px solid #dce3ee;
    border-radius: 8px;
    padding: 0 16px;
    background: #fbfdff;
    transition: 0.25s ease;
}

.review-form .input-group:focus-within {
    border-color: #333596;
    box-shadow: 0 0 0 4px rgba(50, 52, 140, 0.1);
    background: #ffffff;
}

.review-form .input-group i {
    color: #e7edef;
    font-size: 18px;
    text-align: center;
}

.review-form .input-group input,
.review-form .input-group textarea {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #111827;
    font-size: 16px;
    font-weight: 500;
}

.review-form .input-group input::placeholder,
.review-form .input-group textarea::placeholder {
    color: #7a8494;
}

.review-form .input-group.full {
    width: 100%;
}

.review-form .input-group.message {
    min-height: 150px;
    align-items: start;
    padding-top: 18px;
}

.review-form .input-group.message textarea {
    resize: vertical;
    min-height: 112px;
}

.review-submit {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 8px;
    padding: 15px 24px;
    background: #333596;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    box-shadow: 0 16px 34px rgba(50, 52, 140, 0.22);
    transition: 0.25s ease;
}

.review-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(220, 215, 215, 0.26);
}

.stories-section {
    padding: 36px 7% 41px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
    position: relative;
    overflow: hidden;
}

.stories-section::before {
    content: "";
    position: absolute;
    top: 86px;
    left: 50%;
    width: min(780px, 82vw);
    height: 220px;
    border: 1px solid rgba(50, 52, 140, 0.12);
    transform: translateX(-50%) rotate(-2deg);
    z-index: 0;
}

.stories-head,
.stories-carousel {
    position: relative;
    z-index: 1;
}

.stories-head {
    max-width: 850px;
    margin: 0 auto 48px;
    text-align: center;
}

.stories-head .review-kicker {
    color: #333596;
}

.stories-head .review-kicker::before {
    background: #333596;
}

.stories-head h2 {
    font-size: 43px;
    line-height: 1.1;
    font-weight: 850;
    color: #111827;
    margin-bottom: 14px;
}

.stories-head p {
    color: #647084;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

.stories-carousel {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 58px 1fr 58px;
    align-items: center;
    gap: 22px;
}

.stories-window {
    min-height: 300px;
    position: relative;
}

.story-card {
    display: none;
    min-height: 300px;
    padding: 48px 64px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
        #ffffff;
    border: 1px solid rgba(50, 52, 140, 0.12);
    box-shadow: 0 24px 70px rgba(17, 24, 39, 0.1);
    text-align: center;
}

.story-card.active {
    display: grid;
    place-items: center;
    animation: storyFade 0.32s ease both;
}

@keyframes storyFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.story-rating {
    color: #f5b301;
    letter-spacing: 4px;
    margin-bottom: 18px;
}

.story-card p {
    max-width: 840px;
    margin: 0 auto 28px;
    color: #5f6877;
    font-size: 22px;
    line-height: 1.65;
    font-weight: 500;
}

.story-author {
    display: grid;
    gap: 4px;
    color: #111827;
}

.story-author span {
    font-size: 24px;
    font-weight: 800;
}

.story-author small {
    color: #7a8494;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.story-btn {
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #f0b0aa;
    box-shadow: 0 14px 28px rgba(0, 166, 200, 0.28);
    transition: 0.25s ease;
}

.story-btn:hover {
    background: #333596;
    transform: translateY(-3px);
}

/*==========================
TESTIMONIAL SECTION
===========================*/

.testimonial-section {
    background: #082f4d;
    overflow: hidden;
    position: relative;
    height: 100%;
    max-height: 645px;
}

.testimonialSwiper {
    overflow: hidden;
}

/*==========================
LEFT IMAGE
===========================*/

.testimonial-image {
    position: relative;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 30px;
    max-height: 596px;
}

.testimonial-slider .swiper-pagination {
    position: static;
    margin-top: 35px;
    text-align: left;
}


/*==========================
FLOATING CARD
===========================*/

.plus {

    width: 55px;
    height: 55px;

    border-radius: 50%;

    background: #fff;

    color: #7356ff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    font-weight: 700;

}

/*==========================
RIGHT CONTENT
===========================*/

.testimonial-content {
    padding-left: 70px;
    color: #fff;
    margin-top: 21px;
}

.align-items-center {
    align-items: center;
}

.badge-title {

    display: inline-block;

    padding: 10px 25px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .15);

    color: #fff;

    font-size: 16px;

    margin-bottom: 25px;
}

.badge-title::before {

    content: "";

    width: 10px;
    height: 10px;

    background: #40e0ff;

    border-radius: 50%;

    display: inline-block;

    margin-right: 10px;
}

.testimonial-content h2 {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
}

.testimonial-content h2 span {

    color: #b45eff;
}

.quote-icon {

    font-size: 90px;

    color: rgba(255, 255, 255, .08);

    margin-bottom: 20px;
}

.stars {

    color: #042c35;

    font-size: 22px;

    margin-bottom: 25px;
}

.testimonial-content p {

    color: #d7dce5;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 16px;
}

.author {
    display: flex;
    align-items: center;
    gap: 18px;
}

.author h4 {

    margin: 0;

    font-size: 34px;

    font-weight: 700;
}

.author span {

    color: #d4d4d4;

    font-size: 20px;
}


/* ==========================
SWIPER PAGINATION
========================== */

.swiper {
    height: 700px;
    padding: 26px 30px 20px;
}


.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: .4;
    transition: .3s;
}

.swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 20px;
    background: #8d63ff;
    opacity: 1;
}

/* ==========================
HOVER EFFECTS
========================== */

.client-card {
    transition: .35s;
}

.client-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
}

.feature-icon,
.plus {
    transition: .35s;
}

.plus:hover {
    transform: rotate(180deg);
}

.author h4 {
    color: #fff;
}

/* ==========================
BACKGROUND DECORATION
========================== */

.testimonial-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(130, 95, 255, .08);
    filter: blur(80px);
}

.testimonial-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: #6C63FF;
    filter: blur(150px);
    opacity: .15;
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.testimonial-section {
    background: linear-gradient(135deg, #0B3556, #0D4972, #125F91);
    background-size: cover;
}

.client-card {
    animation: floatCard 3s ease-in-out infinite;
}

@keyframes floatCard {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }

}

.stars i {
    text-shadow: 0 0 12px #1fe3ff;
}

.badge-title {

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, .08);

}

.swiper-slide {

    transition: .4s;

}

.swiper-slide:hover {

    transform: translateY(-8px);

}

/* ==========================
TABLET
========================== */

@media(max-width:991px) {

    .testimonial-image {
        margin-bottom: 40px;
    }

    .testimonial-image img {
        height: 500px;
    }

    .client-card {
        right: 20px;
        bottom: 20px;
        width: 260px;
    }

    .testimonial-content {
        padding-left: 0;
    }

    .testimonial-content h2 {
        font-size: 42px;
    }

    .testimonial-content p {
        font-size: 18px;
        line-height: 1.8;
    }

    .author h4 {
        font-size: 28px;
    }

    .author span {
        font-size: 18px;
    }

}

/* ==========================
MOBILE
========================== */

@media(max-width:767px) {



    .testimonial-image img {
        height: 350px;
        border-radius: 20px;
    }

    .client-card {
        position: relative;
        width: 100%;
        right: auto;
        bottom: auto;
        margin-top: 20px;
    }

    .client-card h4 {
        font-size: 22px;
    }

    .avatars img {
        width: 42px;
        height: 42px;
    }

    .plus {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .badge-title {
        font-size: 14px;
    }

    .testimonial-content h2 {
        font-size: 32px;
    }

    .quote-icon {
        font-size: 55px;
    }

    .stars {
        font-size: 18px;
    }

    .testimonial-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .author {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .author h4 {
        font-size: 24px;
    }

    .author span {
        font-size: 16px;
    }

}



/* ==========================
   Large Devices (1200px)
========================== */

@media (max-width:1200px) {

    .opening-card {
        width: 75%;
        padding: 30px;
    }

    .opening-header h3 {
        font-size: 30px;
    }

    .feature-box h3 {
        font-size: 28px;
    }

    .feature-box p {
        font-size: 16px;
    }

    .right-box {
        padding: 45px;
    }

}

.swiper-pagination {
    position: relative;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

/* ==========================
   Tablet (992px)
========================== */

@media (max-width:991px) {

    .consultation-section {
        padding: 60px 0;
    }

    .left-wrapper {
        min-height: 650px;
        margin-bottom: 30px;
    }

    .opening-card {
        width: 80%;
        left: 4%;
        transform: translateX(-50%);
        top: 30px;
    }

    .right-wrapper {
        margin-top: 20px;
    }

    .right-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .right-box:last-child {
        border-bottom: none;
    }

}


/* ==========================
   Mobile (768px)
========================== */

@media (max-width:768px) {

    .left-wrapper {
        min-height: 550px;
        border-radius: 25px;
    }

    .opening-card {
        width: 90%;
        padding: 25px;
        border-radius: 25px;
    }

    .opening-header h3 {
        font-size: 24px;
    }

    .clock-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .hour-row {
        padding: 12px 0;
    }

    .hour-row span {
        font-size: 15px !important;
    }

    .right-wrapper {
        border-radius: 25px;
    }

    .right-box {
        padding: 35px 25px;
    }

    .feature-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }

    .feature-box h3 {
        font-size: 24px;
        min-height: auto;
    }

    .feature-box p {
        font-size: 15px;
        min-height: auto;
    }

    .contact-info {
        font-size: 18px;
    }

    .appointment-btn {
        width: 100%;
        text-align: center;
        padding: 14px;
    }

}


/* ==========================
   Small Mobile (576px)
========================== */

@media (max-width:576px) {

    .consultation-section {
        padding: 40px 0;
    }

    .left-wrapper {
        min-height: 480px;
    }

    .opening-card {
        width: 92%;
        padding: 20px;
    }

    .opening-header {
        margin-bottom: 20px;
    }

    .opening-header h3 {
        font-size: 22px;
    }

    .hour-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .hour-row span {
        font-size: 14px !important;
    }

    .right-box {
        padding: 0px 17px;
    }

    .feature-box h3 {
        font-size: 22px;
    }

    .feature-box p {
        font-size: 14px;
        line-height: 1.7;
    }

    .contact-info {
        font-size: 16px;
    }

}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 991px) {
    .left-col .feature-card {
        flex-direction: row;
        text-align: left;
    }

    .doctor-ring {
        width: 240px;
        height: 240px;
    }

    .doctor-img {
        max-width: 200px;
    }

    #arrowSvg {
        display: none;
    }
}


/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .about-section {
        flex-direction: column;
        gap: 50px;
        margin-top: 120px;
        text-align: left;
    }

    .images-column {
        width: 100%;
        margin: 0 auto;
    }

    .content-column {
        width: 100%;
    }

    .hex-background-wrapper {
        right: 20px;
        top: 50%;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-links,
    .nav-btn {
        display: none;
        /* Hide for simple demo page on small mobile */
    }

    .about-section {
        margin-top: 100px;
        margin-bottom: 60px;
        padding: 0 20px;
    }

    .image-grid {
        grid-template-rows: 180px 220px;
        gap: 16px;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        top: -15px;
        left: -15px;
    }

    .badge-center-icon {
        width: 44px;
        height: 44px;
    }

    .badge-center-icon i {
        font-size: 16px;
    }

    .main-heading {
        font-size: 34px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-action-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .vertical-divider {
        display: none;
    }
}

/* Responsive */

@media(max-width:991px) {

    .hero-section h1 {
        font-size: 50px;
    }

    .hero-section p {
        font-size: 18px;
    }

    .nav-wrapper {
        display: none;
    }

    .clinic-name {
        font-size: 20px;
    }
}

@media(max-width:576px) {

    .hero-section h1 {
        font-size: 38px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .appointment-btn {
        text-decoration: none;
        font-weight: 700;
        font-size: 14px;
    }
}

@media(max-width:991px) {
    .consultation-section .container {
        grid-template-columns: 1fr;
    }

    .review-section {
        padding: 70px 24px;
    }

    .review-shell {
        grid-template-columns: 1fr;
    }

    .review-visual {
        min-height: 430px;
    }

    .stories-section {
        padding: 72px 24px 86px;
    }
}

/* ==========================
   Premium Page Animations
========================== */

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 14% 18%, rgba(51, 53, 150, 0.12), transparent 28%),
        radial-gradient(circle at 88% 42%, rgba(0, 166, 200, 0.1), transparent 26%),
        radial-gradient(circle at 42% 92%, rgba(201, 16, 25, 0.08), transparent 24%);
    animation: ambientGlow 18s ease-in-out infinite alternate;
}

.hero-section {
    overflow: hidden;
    isolation: isolate;
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: 1;
}

.hero-section::before {
    width: 280px;
    height: 280px;
    top: 18%;
    right: 8%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 0 45px rgba(255, 255, 255, 0.08);
    animation: heroOrb 8s ease-in-out infinite;
}

.hero-section::after {
    width: 120px;
    height: 120px;
    left: 8%;
    bottom: 12%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(1px);
    animation: heroFloat 7s ease-in-out infinite;
}

body.page-loaded .hero-subtitle,
body.page-loaded .hero-section .line,
body.page-loaded .hero-section h1,
body.page-loaded .hero-section p,
body.page-loaded .hero-buttons {
    animation: heroReveal 1.45s cubic-bezier(.16, .84, .32, 1) both;
}

body.page-loaded .hero-section .line {
    animation-delay: 0.22s;
}

body.page-loaded .hero-section h1 {
    animation-delay: 0.38s;
}

body.page-loaded .hero-section p {
    animation-delay: 0.55s;
}

body.page-loaded .hero-buttons {
    animation-delay: 0.72s;
}

.appointment-btn,
.btn-book,
.btn-call,
.about-more-btn,
.learn-more-btn,
.review-submit,
.story-btn,
.circle-btn {
    will-change: transform;
}

.appointment-btn:hover,
.btn-book:hover,
.btn-call:hover,
.about-more-btn:hover,
.review-submit:hover,
.story-btn:hover,
.circle-btn:hover {
    transform: translateY(-4px);
}

.appointment-btn,
.btn-book,
.about-more-btn,
.review-submit {
    position: relative;
    overflow: hidden;
}

.appointment-btn::after,
.btn-book::after,
.about-more-btn::after,
.review-submit::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .35) 45%, transparent 70%);
    transform: translateX(-130%);
    transition: transform 0.7s ease;
}

.appointment-btn:hover::after,
.btn-book:hover::after,
.about-more-btn:hover::after,
.review-submit:hover::after {
    transform: translateX(130%);
}

.about-img,
.grid-card,
.review-visual,
.testimonial-image,
.doctor-col {
    transform-style: preserve-3d;
}

.about-img img,
.grid-card img,
.review-visual img,
.testimonial-image img {
    transition: transform 0.7s ease, filter 0.7s ease, box-shadow 0.7s ease;
}

.grid-card:hover img,
.review-visual:hover img,
.testimonial-image:hover img {
    transform: scale(1.045);
    filter: saturate(1.08) contrast(1.03);
    box-shadow: 0 28px 70px rgba(17, 24, 39, 0.18);
}

.feature-card,
.opening-card,
.right-box,
.story-card,
.review-form-wrap,
.testimonial-content {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.feature-card:hover,
.opening-card:hover,
.story-card:hover,
.review-form-wrap:hover {
    border-color: rgba(51, 53, 150, 0.18);
    transform: translateY(-6px);
}

.section-badge {
    position: relative;
    overflow: hidden;
}

.section-badge::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -40%;
    width: 32%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .65), transparent);
    animation: badgeShine 3.8s ease-in-out infinite;
}

.main-heading,
.section-title,
.review-form-wrap h2,
.stories-head h2 {
    animation: softTextGlow 5s ease-in-out infinite alternate;
}

.feat-icon,
.feature-icon-wrapper,
.contact-phone-icon,
.clock-icon,
.feature-icon,
.badge-center-icon {
    animation: iconBreath 3.8s ease-in-out infinite;
}

.feature-card:hover .feat-icon,
.feature-card:hover .feature-icon-wrapper,
.contact-info-block:hover .contact-phone-icon,
.right-box:hover .feature-icon,
.experience-badge:hover .badge-center-icon {
    animation-play-state: paused;
}

.doctor-img,
.doctor-imgg {
    animation: doctorFloat 5.5s ease-in-out infinite;
}

#arrowSvg path,
#arrowSvgg path {
    stroke-dasharray: 10 12;
    animation: arrowFlow 1.8s linear infinite;
}

[data-aos] {
    pointer-events: auto;
}

.motion-ready {
    will-change: transform, opacity;
}

@keyframes ambientGlow {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate3d(0, -24px, 0) scale(1.05);
        opacity: 1;
    }
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateX(-56px);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes heroOrb {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-24px) scale(1.08);
    }
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(22px, -28px);
    }
}

@keyframes badgeShine {

    0%,
    35% {
        left: -45%;
    }

    70%,
    100% {
        left: 115%;
    }
}

@keyframes softTextGlow {
    from {
        text-shadow: 0 0 0 rgba(51, 53, 150, 0);
    }

    to {
        text-shadow: 0 12px 34px rgba(51, 53, 150, 0.12);
    }
}

@keyframes iconBreath {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-3px) scale(1.04);
    }
}

@keyframes doctorFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes arrowFlow {
    to {
        stroke-dashoffset: -22;
    }
}

/* ==========================
   Redesigned Testimonials
========================== */

.testimonial-section {
    max-height: none;
    background:
        linear-gradient(135deg, rgba(11, 53, 86, 0.96), rgba(18, 95, 145, 0.92)),
        url("../img/about-img.jpg") center / cover;
    isolation: isolate;
}

.testimonial-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: 0.32;
    pointer-events: none;
    z-index: -1;
}

.testimonial-head {
    max-width: 680px;
    margin: 16px auto 34px;
    text-align: center;
    color: #ffffff;
}

.testimonial-head .badge-title {
    margin-bottom: 18px;
}

.testimonial-head h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 35px;
    font-weight: 800;
    line-height: 1.05;
}

.testimonial-head p {
    margin: 0;
    color: #dbeafe;
    font-size: 18px;
    font-weight: 500;
}

.testimonialSwiper {
    height: auto;
    padding: 10px 8px 58px;
    overflow: hidden;
}

.testimonialSwiper .swiper-slide {
    height: auto;
}

.testimonial-card {
    min-height: 430px;
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) 1fr;
    gap: 34px;
    align-items: stretch;
    padding: 22px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.testimonial-card .testimonial-image {
    min-height: 360px;
    overflow: hidden;
    border-radius: 8px;
}

.testimonial-card .testimonial-image img {
    width: 100%;
    max-height: 384px;
    border-radius: 8px;
    object-fit: cover;
}

.testimonial-card .testimonial-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 34px 36px 16px;
    margin-top: 0;
    color: #0e293a;
}

.testimonial-card .stars {
    display: flex;
    gap: 7px;
    margin-bottom: 22px;
    color: #f0b429;
    font-size: 18px;
}

.testimonial-card .stars i {
    text-shadow: none;
}

.testimonial-card .quote-icon {
    position: absolute;
    top: 18px;
    right: 26px;
    margin: 0;
    color: rgba(51, 53, 150, 0.1);
    font-size: 82px;
}

.testimonial-card .testimonial-content p {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin-bottom: 26px;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.75;
}

.testimonial-card .author {
    position: relative;
    z-index: 1;
    padding-top: 18px;
    border-top: 1px solid rgba(14, 41, 58, 0.12);
}

.testimonial-card .author span {
    color: #111827;
    font-size: 22px;
    font-weight: 800;
}

.testimonial-card .author span::before {
    content: "";
    display: inline-block;
    width: 34px;
    height: 3px;
    margin-right: 12px;
    vertical-align: middle;
    border-radius: 999px;
    background: #c91019;
}

.testimonialSwiper .swiper-pagination {
    bottom: 8px;
}

.testimonialSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ffffff;
    opacity: 0.55;
}

.testimonialSwiper .swiper-pagination-bullet-active {
    width: 34px;
    border-radius: 20px;
    background: #f0b429;
    opacity: 1;
}

/* ==========================
   Footer
========================== */

.site-footer {
    position: relative;
    padding: 76px 0 0;
    background:
        linear-gradient(135deg, rgba(8, 31, 51, 0.98), rgba(13, 47, 72, 0.98)),
        url("../img/about-img.jpg") center / cover;
    color: #dbeafe;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        radial-gradient(circle at 12% 20%, rgba(201, 16, 25, 0.18), transparent 24%),
        radial-gradient(circle at 84% 10%, rgba(64, 224, 255, 0.14), transparent 26%);
    background-size: 56px 56px, 56px 56px, auto, auto;
    pointer-events: none;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.45fr 0.9fr 1fr 1.05fr;
    gap: 42px;
}

.footer-brand img {
    width: 82px;
    margin-bottom: 7px;
    padding: 0px;
    border-radius: 6px;
    background: #ffffff;
}

.footer-brand p {
    max-width: 360px;
    color: #b9c7d8;
    font-size: 15px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a,
.footer-contact i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: #c91019;
    transform: translateY(-4px);
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 0 16px;
    color: #b9c7d8;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.65;
}

.footer-links a,
.footer-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    margin-bottom: 5px;
    color: #b9c7d8;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-contact i {
    flex: 0 0 42px;
    background: rgba(240, 180, 41, 0.16);
    color: #f0b429;
}

.footer-email-block {
    margin-bottom: 18px;
}

.footer-email-block h4 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
}

.footer-email-block a {
    display: block;
    width: fit-content;
    margin-bottom: 6px;
    color: #dbeafe;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.45;
    text-decoration: none;
}

.footer-email-block a:hover {
    color: #f0b429;
    transform: translateX(5px);
}

.footer-appointment {
    display: inline-flex !important;
    margin-top: 20px;
    padding: 13px 18px;
    border-radius: 8px;
    background: #333596;
    color: #ffffff !important;
}

.footer-appointment i {
    width: auto;
    height: auto;
    flex: 0 0 auto;
    background: transparent;
    color: #ffffff;
}

.footer-bottom {
    padding: 7px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #9fb1c6;
    font-size: 14px;
}


/* ---------- header / hero (similar to second but distinct) ---------- */
.clinic-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: white;
    border-radius: 28px;
    padding: 28px 36px;
    margin-bottom: 40px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(200, 180, 165, 0.2);
}

.brand h1 {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(145deg, #2c3e4e, #1a2a38);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand .tagline {
    font-size: 0.9rem;
    color: #6b7b8b;
    font-weight: 400;
    letter-spacing: 0.3px;
    border-left: 3px solid #b8a99a;
    padding-left: 14px;
    margin-top: 4px;
}

.contact-ribbon {
    background: #f1ede8;
    padding: 12px 24px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #1f2e3f;
    font-size: 1rem;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.02);
}

.contact-ribbon i {
    color: #a5836e;
    font-size: 1.3rem;
}

.contact-ribbon span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ---------- main doctor card (inspired by first image) ---------- */
.doctor-profile {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    background: white;
    border-radius: 36px;
    padding: 40px 44px;
    margin-bottom: 48px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.02);
    border: 1px solid #eeeae6;
    transition: all 0.2s ease;
}

.doctor-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f2ede8;
    border-radius: 30px;
    padding: 30px 20px;
    text-align: center;
    min-height: 280px;
    background-image: radial-gradient(circle at 30% 20%, #faf7f2, #e8e0d8);
}

.avatar-circle {
    background: #cbb9ab;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 8px 18px rgba(90, 70, 60, 0.12);
    border: 4px solid white;
}

.avatar-circle i {
    font-size: 5.5rem;
    color: #3d2e23;
    opacity: 0.7;
}

.doctor-avatar h2 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1c2a38;
    margin-bottom: 4px;
}

.doctor-avatar .title {
    font-size: 1rem;
    font-weight: 500;
    color: #5d4d3e;
    background: rgba(255, 255, 255, 0.5);
    padding: 6px 18px;
    border-radius: 40px;
    backdrop-filter: blur(2px);
}

.doctor-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.doctor-info h3 {
    font-size: 1.7rem;
    font-weight: 600;
    color: #1b2a38;
    letter-spacing: -0.02em;
    border-bottom: 2px solid #e6ddd6;
    padding-bottom: 12px;
}

.doctor-info p {
    color: #2a3c4e;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 6px;
}

.highlight-list {
    list-style: none;
    margin: 10px 0 0;
}

.highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.98rem;
    color: #1e2f3f;
}

.highlight-list li i {
    color: #a5836e;
    font-size: 1.2rem;
    margin-top: 2px;
    width: 24px;
    text-align: center;
}

.badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

.badge-group .badge {
    background: #f1ede8;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #2c3e4e;
    letter-spacing: 0.2px;
    border: 1px solid #ded6ce;
}

/* ---------- services / cards (similar to second but different) ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin: 48px 0 40px;
}

.service-card {
    background: white;
    border-radius: 28px;
    padding: 30px 24px 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
    border: 1px solid #eeeae6;
    transition: 0.15s ease;
}

.service-card:hover {
    border-color: #d6cbc1;
    box-shadow: 0 12px 28px rgba(70, 50, 40, 0.04);
}

.service-card .icon {
    background: #f2ede8;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #3f2f22;
    margin-bottom: 18px;
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1b2a38;
    margin-bottom: 8px;
}

.service-card p {
    color: #3f5366;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-card .more-link {
    display: inline-block;
    margin-top: 16px;
    font-weight: 600;
    color: #7a6251;
    text-decoration: none;
    border-bottom: 1.5px solid #dccfc5;
    padding-bottom: 2px;
    transition: 0.15s;
}

.service-card .more-link i {
    font-size: 0.8rem;
    margin-left: 6px;
}

.service-card .more-link:hover {
    color: #4b3a2d;
    border-bottom-color: #b8a392;
}

/* ---------- about / contact (second style but unique) ---------- */
.about-contact-wrap {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 28px;
    background: white;
    border-radius: 36px;
    padding: 36px 40px;
    margin-top: 20px;
    border: 1px solid #eeeae6;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.01);
}

.about-text h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1b2a38;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.about-text p {
    color: #2f4458;
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 1rem;
}

.about-text .highlight {
    background: #f4efe9;
    padding: 4px 12px;
    border-radius: 30px;
    font-weight: 500;
    color: #3d2e20;
}

.contact-info-card {
    background: #f6f2ed;
    border-radius: 28px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-card .phone-big {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2e3d;
    letter-spacing: -0.02em;
    margin: 8px 0 6px;
}

.contact-info-card .phone-big i {
    color: #7a6251;
    margin-right: 10px;
    font-size: 1.8rem;
}

.contact-info-card .small-note {
    color: #5a4b3d;
    font-size: 0.95rem;
    border-top: 1px solid #ddd2c8;
    padding-top: 16px;
    margin-top: 10px;
}

.contact-info-card .btn-outline {
    background: transparent;
    border: 1.5px solid #a78b78;
    color: #2a3a48;
    padding: 12px 18px;
    border-radius: 60px;
    font-weight: 600;
    text-align: center;
    margin-top: 16px;
    transition: 0.15s;
    cursor: default;
    font-size: 0.95rem;
}

.contact-info-card .btn-outline i {
    margin-right: 8px;
    color: #6b5544;
}

/* footer / small */
.footer-note {
    margin-top: 40px;
    text-align: center;
    color: #6a7c8c;
    font-size: 0.85rem;
    border-top: 1px solid #e3dad2;
    padding-top: 28px;
    letter-spacing: 0.2px;
}


/* ---------- responsive ---------- */
@media (max-width: 960px) {
    .doctor-profile {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 30px;
    }

    .about-contact-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 28px;
    }

    .clinic-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 24px;
    }

    .contact-ribbon {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 500px) {
    .container {
        padding: 16px;
    }

    .doctor-avatar h2 {
        font-size: 1.5rem;
    }

    .doctor-info h3 {
        font-size: 1.4rem;
    }

    .contact-info-card .phone-big {
        font-size: 1.6rem;
    }
}

@media (max-width: 991px) {
    .testimonial-card {
        grid-template-columns: 1fr;
    }

    .testimonial-card .testimonial-content {
        padding: 12px 8px 20px;
    }

    .testimonial-content h2 {
        font-size: 34px;
    }

    .testimonial-card .testimonial-content p {
        font-size: 16px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {

    .testimonial-head {
        text-align: left;
    }

    .testimonial-head h2 {
        font-size: 34px;
    }

    .testimonial-card {
        min-height: auto;
        padding: 14px;
    }

    .testimonial-card .testimonial-image,
    .testimonial-card .testimonial-image img {
        min-height: 250px;
    }

    .testimonial-card .quote-icon {
        top: 10px;
        right: 10px;
        font-size: 54px;
    }

    .testimonial-card .author {
        align-items: flex-start;
    }

    .testimonial-card .author span {
        font-size: 19px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 38px;
    }

    .site-footer {
        padding-top: 54px;
    }

    .footer-brand img {
        width: 118px;
    }

    .footer-bottom p {
        font-size: 13px;
        line-height: 1.6;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

.btn-brand {
    background: linear-gradient(135deg, #C1272D, #9C1F24);
    color: #fff;
    border: none;
    padding: 0.65rem 1.5rem;
    font-size: 0.86rem;
    font-weight: 600;
    border-radius: 40px;
    box-shadow: 0 10px 24px -10px rgba(193, 39, 45, 0.55);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-brand:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -10px rgba(193, 39, 45, 0.7);
}


.btn-ghost {
    background: #fff;
    color: #24245C;
    border: 1.5px solid #DCE1EC;
    padding: 0.62rem 1.5rem;
    font-size: 0.86rem;
    font-weight: 600;
    border-radius: 40px;
    transition: all 0.2s ease;
}

.btn-ghost:hover {
    border-color: #2E2E91;
    color: #2E2E91;
    box-shadow: 0 10px 24px -14px rgba(46, 46, 145, 0.4);
    transform: translateY(-2px);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    padding: 5px;
    overflow: hidden;
}

.hero .blob-blue {
    width: 420px;
    height: 420px;
    background: #2E2E91;
    opacity: 0.14;
    top: -140px;
    left: -140px;
}

.hero .blob-red {
    width: 360px;
    height: 360px;
    background: #C1272D;
    opacity: 0.12;
    bottom: -160px;
    right: -100px;
}

.hero-inner {
    position: relative;
    z-index: 1;
    margin-top: 7%;
}

.hero h1 {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.08;
    margin-top: 2%;
}

.hero-title {
    font-size: 1.05rem;
    color: #565A66;
    margin-bottom: 1.4rem;
    max-width: 34rem;
}

.grad-text {
    background: linear-gradient(100deg, #2E2E91 15%, #C1272D 85%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.eyebrow {
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9C1F24;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 20px;

}

.eyebrow::before {
    content: "";
    width: 16px;
    height: 2px;
    background: linear-gradient(90deg, #C1272D, #2E2E91);
    display: inline-block;
}

.cred-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.9rem;
}

.cred-chip {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    color: #24245C;
    background: #fff;
    border: 1px solid #DCE1EC;
    padding: 0.4rem 0.85rem;
    border-radius: 30px;
    box-shadow: 0 4px 14px -10px rgba(36, 36, 92, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.cred-chip::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C1272D, #2E2E91);
    flex-shrink: 0;
}

.hero-photo-wrap {
    position: relative;
    max-width: 380px;
    margin: 0 auto;
    z-index: 1;
}

.hero-photo-conic {
    position: absolute;
    inset: -10px;
    border-radius: 14px;
    background: conic-gradient(from 180deg, #2E2E91, #C1272D, #2E2E91);
    animation: rotate 8s linear infinite;
    z-index: 0;
}

.about-wrap {
    background: #fff;
    border-radius: 18px;
    padding: 2.2rem;
    box-shadow: 0 20px 50px -30px rgba(36, 36, 92, 0.3);
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.hero-photo-frame {
    position: relative;
    z-index: 1;
    margin: 6px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(36, 36, 92, 0.45);
}

.hero-photo-frame img {
    width: 100%;
    display: block;
}

.exp-badge {
    position: absolute;
    bottom: -5px;
    right: -18px;
    z-index: 2;
    background: linear-gradient(135deg, #2E2E91, #1B1B5E);
    color: #fff;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    box-shadow: 0 18px 36px -14px rgba(36, 36, 92, 0.6);
    text-align: center;
    border: 3px solid #F7F8FB;
}

.exp-badge b {
    font-family: "Fraunces", serif;
    font-size: 1.8rem;
    display: block;
    line-height: 1;
    background: linear-gradient(90deg, #fff, #FFD9DB);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.exp-badge span {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #C7CBFA;
}

/* ---------- SECTIONS ---------- */
.section {
    padding: rem 0;
    position: relative;
}

.section-alt {
    background: #EDEFF6;
    padding: 20px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #C1272D, #2E2E91);
    border-radius: 2px;
    margin: 1rem 0 1.7rem;
}

/* ---------- QUALIFICATIONS ---------- */
.qual-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.7rem 1.5rem 1.5rem;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px -20px rgba(36, 36, 92, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.qual-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px -18px rgba(36, 36, 92, 0.35);
}

.qual-badge {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2E2E91, #C1272D);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.9rem;
}

.qual-card .tag {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    color: #C1272D;
    text-transform: uppercase;
}

.qual-card h3 {
    font-size: 1.05rem;
    margin: 0.35rem 0 0.3rem;
    font-weight: 600;
}

.qual-card p {
    font-size: 0.86rem;
    color: #6B6F7A;
    margin: 0;
}

/* ---------- AFFILIATIONS TIMELINE ---------- */
.timeline {
    position: relative;
    padding-left: 2.2rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg, #C1272D, #2E2E91);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -2.2rem;
    top: 0.28rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #C1272D;
    box-shadow: 0 0 0 4px rgba(193, 39, 45, 0.12);
}

.timeline-item h3 {
    font-size: 1.05rem;
    margin: 0 0 0.2rem;
    font-weight: 600;
}

.timeline-item p {
    font-size: 0.88rem;
    color: #6B6F7A;
    margin: 0;
}

/* ---------- SERVICES ---------- */
.service-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.9rem 1.6rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -20px rgba(36, 36, 92, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2E2E91, #C1272D);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px -18px rgba(36, 36, 92, 0.35);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .num {
    font-family: "Fraunces", serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #EDEFF6;
    -webkit-text-stroke: 1.4px #2E2E91;
    display: block;
    margin-bottom: 0.4rem;
}

.service-card h3 {
    font-size: 1.15rem;
    margin: 0.3rem 0 0.5rem;
    font-weight: 600;
}

.service-card p {
    font-size: 0.9rem;
    color: #6B6F7A;
    margin: 0;
}

/* ---------- ABOUT ---------- */
.about-text p {
    font-size: 0.98rem;
    color: #454952;
}

.about-wrap {
    background: #fff;
    border-radius: 18px;
    padding: 2.2rem;
    box-shadow: 0 20px 50px -30px rgba(36, 36, 92, 0.3);
}

/* ---------- CONTACT ---------- */
.contact-card {
    background: #fff;
    border-radius: 18px;
    padding: 2.2rem;
    box-shadow: 0 20px 50px -30px rgba(36, 36, 92, 0.3);
}

.form-control-custom {
    background: #F7F8FB;
    border: 1.5px solid #DCE1EC;
    border-radius: 10px;
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control-custom:focus {
    outline: none;
    border-color: #2E2E91;
    box-shadow: 0 0 0 4px rgba(46, 46, 145, 0.12);
}

label.form-label-custom {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #24245C;
    margin-bottom: 0.35rem;
}

.office-info dt {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #C1272D;
    margin-top: 1.2rem;
}

.office-info dd {
    font-size: 0.96rem;
    margin-bottom: 0;
    font-weight: 500;
}

footer {
    background: linear-gradient(135deg, #1B1B5E, #2E2E91 55%, #7A1F26);
    color: #D8DAF7;
    padding: 2.2rem 0;
    font-size: 0.85rem;
}

footer .brand-name {
    font-family: "Fraunces", serif;
    color: #fff;
    font-weight: 600;
}

:focus-visible {
    outline: 2px solid #C1272D;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .hero-photo-conic {
        animation: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.heroo {
    position: relative;
    width: 100%;
    height: 342px;
    background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)),
        url("../img/clinic-img.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.overlayy {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.heroo-content {
    position: relative;
    color: #fff;
    max-width: 600px;
    margin-left: 8%;
    z-index: 2;
}

/* ==========================
   Contact Page
========================== */

.contact-page {
    background:
        radial-gradient(circle at 8% 14%, rgba(51, 53, 150, 0.08), transparent 26%),
        radial-gradient(circle at 88% 46%, rgba(0, 166, 200, 0.08), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
    overflow: hidden;
}

.contact-intro-section,
.contact-map-section,
.contact-hours-section {
    position: relative;
    padding: 30px 0;
}

.contact-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    align-items: center;
    gap: 46px;
}

.contact-copy h2,
.contact-form-card h2,
.contact-map-card h2,
.contact-hours-wrap h2 {
    color: #111827;
    font-size: 24px;
    line-height: 1.08;
    font-weight: 850;
    margin-bottom: 18px;
}

.contact-copy p,
.contact-hours-wrap p {
    color: #5b6473;
    font-size: 18px;
    line-height: 1.75;
    max-width: 650px;
    margin-bottom: 28px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.contact-primary-btn,
.contact-secondary-btn,
.contact-map-card .map-header a,
.contact-form button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 8px;
    padding: 14px 20px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.28s ease;
}

.contact-primary-btn,
.contact-form button {
    background: #333596;
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(51, 53, 150, 0.22);
}

.contact-secondary-btn,
.contact-map-card .map-header a {
    background: #ffffff;
    color: #333596;
    border: 1px solid rgba(51, 53, 150, 0.16);
}

.contact-primary-btn:hover,
.contact-secondary-btn:hover,
.contact-map-card .map-header a:hover,
.contact-form button:hover {
    transform: translateY(-4px);
    color: #ffffff;
    background: #c91019;
    border-color: #c91019;
    box-shadow: 0 20px 42px rgba(201, 16, 25, 0.2);
}

.contact-info-stack {
    display: grid;
    gap: 18px;
}

.contact-info-tile {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: start;
    padding: 24px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(51, 53, 150, 0.12);
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(14px);
    transition: 0.28s ease;
}

.contact-info-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 16, 25, 0.22);
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
}

.contact-info-tile>i {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #ffffff;
    background: linear-gradient(135deg, #333596, #00a6c8);
    font-size: 22px;
}

.contact-info-tile h3 {
    color: #111827;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-info-tile p,
.contact-info-tile a {
    display: block;
    margin: 0 0 5px;
    color: #5b6473;
    font-size: 16px;
    line-height: 1.55;
    text-decoration: none;
}

.contact-info-tile a:hover {
    color: #c91019;
}

.contact-map-grid {
    display: grid;
    grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
    gap: 30px;
    align-items: stretch;
}

.contact-form-card,
.contact-map-card,
.contact-hours-wrap {
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(51, 53, 150, 0.12);
    box-shadow: 0 24px 70px rgba(17, 24, 39, 0.1);
}

.contact-form-card,
.contact-map-card {
    padding: 34px;
}

.contact-form-card h2,
.contact-map-card h2 {
    font-size: 30px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form label {
    min-height: 58px;
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    border: 1px solid #dce3ee;
    border-radius: 8px;
    background: #fbfdff;
    transition: 0.25s ease;
}

.contact-form label:focus-within {
    border-color: #333596;
    box-shadow: 0 0 0 4px rgba(51, 53, 150, 0.1);
    background: #ffffff;
}

.contact-form label i {
    color: #00a6c8;
    text-align: center;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #111827;
    font-size: 16px;
    font-weight: 600;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #7a8494;
}

.contact-form select {
    color: #7a8494;
}

.contact-form .message-field {
    min-height: 150px;
    align-items: start;
    padding-top: 18px;
}

.contact-form textarea {
    min-height: 114px;
    resize: vertical;
}

.contact-form button {
    width: fit-content;
    cursor: pointer;
}

.contact-map-card {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 24px;
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
}

.google-map {
    min-height: 520px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(51, 53, 150, 0.12);
    background: #eaf0f8;
}

.google-map iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    border: 0;
}

.contact-hours-section {
    padding-top: 20px;
}

.contact-hours-wrap {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 26px;
    align-items: center;
    padding: 34px;
    background:
        linear-gradient(135deg, rgba(51, 53, 150, 0.96), rgba(8, 47, 77, 0.96)),
        url("../img/about-img.jpg") center / cover;
    color: #ffffff;
}

.contact-hours-wrap h2,
.contact-hours-wrap p {
    color: #ffffff;
    margin-bottom: 0;
}

.contact-hours-wrap .section-badge {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.hours-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 260px;
}

.hours-card i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #f0b429;
    background: rgba(255, 255, 255, 0.12);
    font-size: 20px;
}

.hours-card strong,
.hours-card span {
    display: block;
}

.hours-card span {
    color: #dbeafe;
    font-size: 14px;
    margin-top: 4px;
}

@media (max-width: 991px) {

    .contact-intro-grid,
    .contact-map-grid,
    .contact-hours-wrap {
        grid-template-columns: 1fr;
    }

    .contact-hours-wrap .contact-primary-btn,
    .contact-form button {
        width: 100%;
    }

    .map-header {
        flex-direction: column;
    }
}

@media (max-width: 576px) {

    .contact-form-card,
    .contact-map-card,
    .contact-hours-wrap {
        padding: 22px;
    }

    .contact-info-tile {
        grid-template-columns: 1fr;
    }

    .google-map,
    .google-map iframe {
        min-height: 360px;
    }

    .contact-actions a {
        width: 100%;
    }
}

/* ==========================
   Unified Button System
========================== */

:root {
    --btn-main-bg: #333596;
    --btn-main-hover: #c91019;
    --btn-main-text: #ffffff;
    --btn-main-radius: 8px;
    --btn-main-font: 16px;
    --btn-main-shadow: 0 16px 34px rgba(51, 53, 150, 0.22);
    --btn-main-hover-shadow: 0 20px 42px rgba(201, 16, 25, 0.24);
}

.appointment-btn,
.btn-book,
.btn-call,
.about-more-btn,
.review-submit,
.footer-appointment,
.contact-primary-btn,
.contact-secondary-btn,
.contact-map-card .map-header a,
.contact-form button,
.hero-actions .btn,
.contact-card .btn,
.contact-info-card .btn-outline,
.btn-brand,
.btn-ghost {
    min-height: 52px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 10px !important;
    border: 1px solid var(--btn-main-bg) !important;
    border-radius: var(--btn-main-radius) !important;
    background: var(--btn-main-bg) !important;
    color: var(--btn-main-text) !important;
    font-size: var(--btn-main-font) !important;
    font-weight: 800 !important;
    line-height: 1.2;
    text-decoration: none !important;
    box-shadow: var(--btn-main-shadow) !important;
    transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, color 0.28s ease !important;
}

.appointment-btn:hover,
.btn-book:hover,
.btn-call:hover,
.about-more-btn:hover,
.review-submit:hover,
.footer-appointment:hover,
.contact-primary-btn:hover,
.contact-secondary-btn:hover,
.contact-map-card .map-header a:hover,
.contact-form button:hover,
.hero-actions .btn:hover,
.contact-card .btn:hover,
.contact-info-card .btn-outline:hover,
.btn-brand:hover,
.btn-ghost:hover {
    transform: translateY(-4px);
    border-color: var(--btn-main-hover) !important;
    background: var(--btn-main-hover) !important;
    color: var(--btn-main-text) !important;
    box-shadow: var(--btn-main-hover-shadow) !important;
}

.appointment-btn i,
.btn-book i,
.btn-call i,
.about-more-btn i,
.review-submit i,
.footer-appointment i,
.contact-primary-btn i,
.contact-secondary-btn i,
.contact-map-card .map-header a i,
.contact-form button i,
.hero-actions .btn i,
.contact-card .btn i,
.contact-info-card .btn-outline i,
.btn-brand i,
.btn-ghost i {
    color: currentColor !important;
}

.learn-more-btn {
    color: var(--btn-main-bg) !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    transition: color 0.28s ease, transform 0.28s ease !important;
}

.learn-more-btn:hover {
    color: var(--btn-main-hover) !important;
    transform: translateX(4px);
}

.btn-arrow-circle {
    background: rgba(255, 255, 255, 0.16) !important;
    color: currentColor !important;
}

@media (max-width: 576px) {

    .appointment-btn,
    .btn-book,
    .btn-call,
    .about-more-btn,
    .review-submit,
    .footer-appointment,
    .contact-primary-btn,
    .contact-secondary-btn,
    .contact-map-card .map-header a,
    .contact-form button,
    .hero-actions .btn,
    .contact-card .btn,
    .contact-info-card .btn-outline,
    .btn-brand,
    .btn-ghost {
        width: 100%;
        min-height: 50px;
        font-size: 15px !important;
    }

    .nav-buttons .appointment-btn {
        width: auto;
    }
}

/* ==========================
   Gallery Page
========================== */

.gallery-banner {
    min-height: 430px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(8, 31, 51, 0.82), rgba(8, 31, 51, 0.42)),
        url("../img/clinic-img.jpg") center / cover;
}

.gallery-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 24%, rgba(240, 180, 41, 0.22), transparent 22%),
        radial-gradient(circle at 88% 16%, rgba(64, 224, 255, 0.16), transparent 24%);
    pointer-events: none;
}

.gallery-banner .container,
.gallery-banner-content {
    position: relative;
    z-index: 1;
}

.gallery-banner-content {
    max-width: 760px;
    padding-top: 70px;
}

.gallery-banner-content .section-badge {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.gallery-banner-content h1 {
    margin: 14px 0 16px;
    color: #ffffff;
    font-size: 35px;
    ;
    line-height: 1.02;
    font-weight: 850;
}

.gallery-banner-content p {
    max-width: 620px;
    color: #dbeafe;
    font-size: 19px;
    line-height: 1.7;
    margin: 0;
}

.gallery-page {
    background:
        radial-gradient(circle at 10% 12%, rgba(51, 53, 150, 0.08), transparent 26%),
        radial-gradient(circle at 88% 58%, rgba(0, 166, 200, 0.08), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.gallery-section {
    padding: 25px 0 96px;
}

.gallery-head {
    max-width: 720px;
    margin-bottom: 34px;
}

.gallery-head h2 {
    color: #111827;
    font-size: 30px;
    line-height: 1.08;
    font-weight: 850;
    margin: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 260px;
    gap: 24px;
}

.gallery-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: #dbeafe;
    box-shadow: 0 20px 50px rgba(17, 24, 39, 0.12);
    cursor: pointer;
}

.gallery-card-large {
    grid-column: span 2;
}

.gallery-card-tall {
    grid-row: span 2;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.7s ease;
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 31, 51, 0.02), rgba(8, 31, 51, 0.58));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-card span {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #333596;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: 0.35s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.04);
}

.gallery-card:hover::after {
    opacity: 1;
}

.gallery-card:hover span {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

body.gallery-open {
    overflow: hidden;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 72px 104px;
    background: rgba(8, 12, 20, 0.88);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox figure {
    position: relative;
    width: min(1100px, 100%);
    margin: 0;
}

.gallery-lightbox img {
    width: 100%;
    max-height: 78vh;
    display: block;
    object-fit: contain;
    background: #ffffff;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.gallery-lightbox figcaption {
    padding: 14px 18px;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
}

.gallery-count {
    position: absolute;
    left: 0;
    top: -42px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
}

.gallery-lightbox-close,
.gallery-lightbox-arrow {
    position: absolute;
    z-index: 2;
    border: 0;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.25s ease, color 0.25s ease;
}

.gallery-lightbox-close {
    top: 22px;
    right: 26px;
    font-size: 34px;
}

.gallery-lightbox-arrow {
    top: 50%;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    font-size: 28px;
    transform: translateY(-50%);
}

.gallery-lightbox-prev {
    left: 34px;
}

.gallery-lightbox-next {
    right: 34px;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-arrow:hover {
    color: #f0b429;
    transform: translateY(-50%) scale(1.08);
}

.gallery-lightbox-close:hover {
    transform: scale(1.08);
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-card-large,
    .gallery-card-tall {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-lightbox {
        padding: 72px 72px;
    }
}

@media (max-width: 576px) {
    .gallery-banner {
        min-height: 360px;
    }

    .lab-banner {
        min-height: 360px;
    }

    .gallery-section {
        padding: 0px 0 70px;
        ;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
        gap: 18px;
    }

    .gallery-lightbox {
        padding: 72px 18px;
    }

    .gallery-lightbox-arrow {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }

    .gallery-lightbox-prev {
        left: 10px;
    }

    .gallery-lightbox-next {
        right: 10px;
    }

    .lab-banner-content {
        padding-top: 56%;
    }

    .order-1 {
        margin-top: 32%;
    }
}

/*LAB SECTION*/

/*==========================
        HERO SECTION
==========================*/

.lab-hero {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Background Image */

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("../img/lab-img.png") right center/cover no-repeat;
    filter: blur(0px);
    transform: scale(1.03);
    z-index: -3;
    pointer-events: none;
}



/* White Glow Center */

.hero-center {

    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle,
            rgba(255, 255, 255, .98) 0%,
            rgba(255, 255, 255, .92) 35%,
            rgba(255, 255, 255, .65) 60%,
            rgba(255, 255, 255, 0) 100%);

    border-radius: 50%;

    filter: blur(15px);

    z-index: -1;
}

/*======================
      CONTENT
=======================*/

.hero-content {

    position: relative;
    width: 90%;
    max-width: 1200px;
    text-align: center;
    z-index: 5;

}

/* Badge */

.hero-badge {

    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 8px 20px;
    margin-top: 10%;
    border-radius: 50px;

    background: rgba(255, 255, 255, .65);

    border: 1px solid rgba(255, 255, 255, .7);

    backdrop-filter: blur(18px);

    color: #312fa8;

    font-size: 18px;

    font-weight: 600;

    margin-bottom: 35px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.hero-badge i {

    font-size: 22px;

}

/* Floating Icons */

.side-icon {

    position: absolute;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(255, 255, 255, .55);

    backdrop-filter: blur(15px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.side-icon i {

    color: #312fa8;
    font-size: 21px;

}

.left {

    left: 120px;
    top: 180px;

}

.right {

    right: 120px;
    top: 180px;

}

/*=========================
        HEADING
=========================*/

.hero-content h1 {
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
}

.hero-content .dark {
    color: #111827;

}

.hero-content .blue {

    color: #fc3b2d;

}




.hero-content h3 {
    font-size: 17px;
    color: #312fa8;
    font-weight: 600;
    margin-top: -2%;
}

.hero-content p {

    font-size: 15px;
    color: #312fa8;
    margin-bottom: 45px;

}

/*=========================
      SEARCH BOX
=========================*/

.search-box {

    width: 36%;
    max-width: 820px;
    height: 54px;
    max-width: 820px;
    height: 56px;
    margin: 0 auto 60px;
    display: flex;
    align-items: center;

    background: rgba(255, 255, 255, .92);

    border-radius: 60px;

    overflow: hidden;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .10);

    backdrop-filter: blur(18px);

}

.search-icon {

    padding-left: 30px;

    color: #312fa8;

    font-size: 28px;

}

.search-box input {

    flex: 1;

    height: 100%;

    border: none;
    outline: none;

    background: transparent;

    padding: 0 25px;

    font-size: 22px;

    color: #444;

}

.search-box input::placeholder {

    color: #8b95aa;

}

.search-box button {

    width: 55px;
    height: 100%;

    border: none;

    cursor: pointer;

    color: #fff;

    font-size: 28px;

    background: #312fa8;

    transition: .35s;

}

.search-box button:hover {

    background: #fc3b2d;

}


/*=========================
      RESPONSIVE
=========================*/

@media(max-width:991px) {

    .hero-content h1 {

        font-size: 70px;

    }

    .hero-content h3 {

        font-size: 30px;

    }

    .side-icon {

        display: none;

    }

    .feature-box {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .hero-content h1 {

        font-size: 52px;

    }

    .line span {

        width: 80px;

    }

    .search-box {

        height: 65px;

    }

    .search-box input {

        font-size: 17px;

    }

    .search-box button {

        width: 85px;

    }

}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.package-tabs {
    text-align: center;
    overflow-x: auto;
    padding: 18px;
    scrollbar-width: none;
}

.package-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {

    padding: 14px 28px;
    border-radius: 40px;
    border: 1px solid #d6dbe7;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: .35s;
    white-space: nowrap;
}

.tab-btn:hover {

    background: #c91019;
    color: #fff;

}

.tab-btn.active {

    background: #0d2c96;
    color: #fff;
    border-color: #0d2c96;

}

.tab-content {

    display: none;
    padding: 30px;

    animation: fade .5s;

}

.tab-content.active {

    display: block;

}

.cards {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 35px;

}

.card {

    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    border-top: 5px solid #0e2d96;
    transition: .35s;

}

.card:hover {

    transform: translateY(-8px);

}

.card h3 {

    font-size: 20px;
    color: #0d2c96;

}

.card p {

    line-height: 1.7;
    color: #666;

}

@keyframes fade {

    from {

        opacity: 0;
        transform: translateY(25px);

    }

    to {

        opacity: 1;
        transform: translateY(0);

    }

}


.about-Section {
    margin-top: 2%;

}

@media(max-width:768px) {

    .cards {

        grid-template-columns: 1fr;

    }

    .tab-btn {

        padding: 12px 22px;
        font-size: 15px;

    }

}


@media (max-width: 991px) {
    .nav-wrapper {
        display: block !important;
        position: fixed !important;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
        z-index: 99999;
        padding: 30px 25px;
        overflow-y: auto;
        border-radius: 0 !important;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        pointer-events: none;
        /* ✅ YEH ADD KARO */
    }

    .nav-wrapper.menu-open {
        transform: translateX(0) !important;
        pointer-events: auto;
        /* ✅ YEH ADD KARO */
    }

    .nav-wrapper .navbar-nav {
        flex-direction: column !important;
        gap: 0 !important;
        margin-top: 0px;
    }

    .nav-wrapper .nav-link {
        padding: 14px 10px !important;
        border-bottom: 1px solid #f0f0f0 !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        color: #111 !important;
    }

    .nav-wrapper .nav-link:hover {
        color: #2f2da6 !important;
        padding-left: 18px !important;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 9998;
        pointer-events: none;
        /* ✅ YEH ADD KARO */
    }

    .nav-overlay.active {
        pointer-events: auto;
        /* ✅ YEH ADD KARO */
    }
}

/*MEDIA QUERIES ALL PAGES*/
@media(max-width:576px) {
    .hero-home {
        margin-top: 28%;
    }

    .section-badge {
        margin-top: 6%;
    }

    .doctor-imgg {
        max-width: 195px;
    }

    .left-bg {
        height: 390px;
    }

    .left-wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        height: 390px;
        background: #fff;
    }

    .book-consulatant {
        margin-top: -27%;
    }


}

.circle-bttn {
    display: none;
}

.mob-action-btns {
    display: none;
}

/* ===== DESKTOP ===== */
@media (min-width: 992px) {
    #menuToggle {
        display: none !important;
    }

    .mobile-action-btns {
        display: none !important;
    }

    .menu-close-btn {
        display: none !important;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {

    /* Navbar - sirf logo + hamburger */
    .custom-navbar .container-fluid {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 18px;
    }

    .logo {
        width: 100px;
    }

    /* Desktop buttons mobile pe hide */
    .appointment-btn {
        display: none !important;
    }

    .circle-btn:not(#menuToggle) {
        display: none !important;
    }

    /* Hamburger button */
    #menuToggle {
        display: flex !important;
        width: 66px;
        height: 65px;
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
        align-items: center;
        justify-content: center;
        font-size: 31px;
        color: #2f2da6;
        cursor: pointer;
    }

    /* Menu Panel */
    .nav-wrapper {
        display: none !important;
        position: fixed !important;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: #fff;
        z-index: 99999 !important;
        padding: 20px;
        overflow-y: auto;
        border-radius: 0 !important;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        transform: none !important;
        pointer-events: auto !important;
        flex-direction: column;
    }

    .nav-wrapper.menu-open {
        display: flex !important;
    }

    /* Close Button */
    .menu-close-btn {
        align-self: flex-end;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: none;
        background: #f3f4f6;
        font-size: 20px;
        color: #111;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: 0.2s;
    }

    .menu-close-btn:hover {
        background: #2f2da6;
        color: #fff;
    }

    /* Mobile Action Buttons */
    .mobile-action-btns {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 2px solid #f0f0f0;
    }

    .mob-appoint-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px;
        background: #2f2da6;
        color: #fff !important;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 700;
        font-size: 15px;
    }

    .mob-call-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px;
        background: #f0f0f0;
        color: #111 !important;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 700;
        font-size: 15px;
    }

    /* Nav Links */
    .nav-wrapper .navbar-nav {
        flex-direction: column !important;
        gap: 0 !important;
        width: 100%;
    }

    .nav-wrapper .nav-link {
        padding: 14px 10px !important;
        border-bottom: 1px solid #f0f0f0 !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        color: #111 !important;
    }

    /* Overlay */
    .nav-overlay {
        display: none !important;
        position: fixed !important;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998 !important;
    }

}

@media (max-width: 991px) {

    .mob-menu-top {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 5px;
    }

    .menu-close-btn {
        align-self: flex-end;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: none;
        background: #f3f4f6;
        font-size: 18px;
        color: #111;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-close-btn:hover {
        background: #2f2da6;
        color: #fff;
    }

    .mob-action-btns {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .mob-appoint-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 13px;
        background: #2f2da6;
        color: #fff !important;
        border-radius: 12px;
        text-decoration: none !important;
        font-weight: 700;
        font-size: 14px;
    }

    .mob-call-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 13px;
        background: #f0f0f0;
        color: #111 !important;
        border-radius: 12px;
        text-decoration: none !important;
        font-weight: 700;
        font-size: 14px;
    }
}

@media (max-width: 991px) {

    /* About Us Dropdown */
    .nav-wrapper .dropdown-menu {
        position: static !important;
        display: none !important;
        opacity: 0;
        transform: translateY(6px);
        box-shadow: none !important;
        border: none !important;
        background: #f5f5ff !important;
        border-radius: 10px !important;
        padding: 5px 0 5px 10px !important;
        margin: 5px 0 !important;
        width: 100% !important;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .nav-wrapper .dropdown-menu.mob-dropdown-open {
        display: block !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .nav-wrapper .dropdown-menu .dropdown-item {
        padding: 10px 15px !important;
        font-size: 15px !important;
        color: #2f2da6 !important;
        font-weight: 600 !important;
        border-radius: 8px !important;
    }

    .nav-wrapper .dropdown-menu .dropdown-item:hover {
        background: #e8e8f8 !important;
        color: #1a1870 !important;
    }
}

@media(max-width:576px) {
    .btn-brand {
        width: 55% !important;
    }

    .about-revel {
        margin-top: -4%;
    }

    .about-wrap {
        padding: 1.2rem;
    }

    .reveal-dr {
        margin-top: -2%;
    }

    .section {
        padding: 0rem 0;
    }

    .heroo-content {
        margin-top: 25%;
    }

    .section-badge p {
        font-size: 20px;
    }

    .dot1 {
        display: none !important;
    }

    .dot2 {
        display: none !important;
    }

    .dot3 {
        display: none !important;
    }

    .dot4 {
        display: none !important;
    }

    .dot5 {
        display: none !important;
    }

    .dot6 {
        display: none !important;
    }

    .dot7 {
        display: none !important;
    }

    .dot8 {
        display: none !important;
    }

    .rotating-circle {
        width: 397px !important;
        height: 387px !important;

    }

    .content {
        margin-top: 27%;
    }

    .gallery-banner-content h1 {
        font-size: 25px;
    }

    .gallery-banner-content p {
        font-size: 16px;

    }

    .contact-intro-section,
    .contact-map-section,
    .contact-hours-section {
        position: relative;
        padding: 0px 0 !important;
    }

}



/*clinic css-/


/*==============================
      LEFT & RIGHT
==============================*/

.care-section {
    width: 100%;
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    background: #f7f8ff;
}

.clinic-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.features {
    width: 32%;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.feature-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    transition: .4s;
}

.right-side .feature-card {
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: #111;
}

.feature-content p {
    color: #777;
    line-height: 1.8;
    font-size: 14px;
}


/*==============================
        ICON
==============================*/

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #5d7cff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 0 0 8px rgba(93, 124, 255, .12);
    transition: .4s;
}

.feature-card:hover .feature-icon {

    transform: scale(1.12);

    box-shadow:
        0 15px 35px rgba(93, 124, 255, .35);

}

/*==============================
      CENTER CIRCLE
==============================*/

.circle-wrapper {

    width: 560px;
    height: 560px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}

/* Outer Border */

.outer-circle {

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;
    border: 2px solid #d7ddff;

}

.iiner-circle {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 2px solid #d7ddff;
}

/* Rotating Ring */

.rotating-circle {

    width: 440px;
    height: 440px;

    border-radius: 50%;

    position: absolute;

    border: 28px solid #95a8ff;

    animation: rotateRing 30s linear infinite;

}

/*==============================
      INNER CIRCLE
==============================*/

.inner-circle {

    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #ebe9e9;

    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        0 0 45px rgba(89, 113, 255, .25);

}

.center-icon {

    width: 120px;
    height: 120px;

    border-radius: 50%;
    background: #5d7cff;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #fff;
    font-size: 55px;

    box-shadow:
        0 0 40px rgba(93, 124, 255, .5);

}

/*==============================
      TEXT ON RING
==============================*/

.circle-text {

    position: absolute;

    font-size: 20px;

    font-weight: 700;

    color: #3552ad;

}

.text1 {
    left: -34px;
    top: 54%;
    transform: rotate(-101deg);
}


.text2 {

    top: 45px;
    right: 75px;
    transform: rotate(18deg);

}

.text3 {
    right: 34px;
    bottom: 67px;
    transform: rotate(141deg);

}

/*==============================
      ORBIT DOTS
==============================*/

.orbit-dot {

    width: 18px;
    height: 18px;

    border-radius: 50%;

    background: #24348e;

    position: absolute;

    box-shadow:
        0 0 0 4px rgba(81, 110, 255, .18);

}

.dot1 {

    top: 25px;
    left: 50%;
}

.dot2 {

    right: 45px;
    top: 120px;
}

.dot3 {

    right: -6px;
    top: 50%;
}

.dot4 {

    right: 55px;
    bottom: 110px;
}

.dot5 {

    left: 50%;
    bottom: 20px;
}

.dot6 {

    left: -4px;
    top: 55%;
}

.dot7 {

    left: 34px;
    top: 23%;
}

.dot8 {

    left: 50px;
    top: 76%;
}

/*==============================
      Animation
==============================*/

@keyframes rotateRing {

    from {

        transform: rotate(0deg);

    }

    to {

        transform: rotate(360deg);

    }

}

/*==============================
     Responsive
==============================*/

@media(max-width:1100px) {

    .container {

        flex-direction: column;

    }

    .features {

        width: 100%;

        gap: 40px;

    }

    .left-side .feature-card,
    .right-side .feature-card {

        text-align: center;

        flex-direction: column;

    }

    .circle-wrapper {

        width: 420px;
        height: 420px;

    }

    .outer-circle {

        width: 360px;
        height: 360px;

    }

    .rotating-circle {

        width: 310px;
        height: 310px;

    }

}

.circle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Rotating Circle */

.rotating-circle {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 25px solid #8d9eff;

    animation: rotateCircle 20s linear infinite;
    transform-origin: center;
}

/* Mouse hover par stop */

.circle-wrapper:hover .rotating-circle {
    animation-play-state: paused;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.heroo {
    position: relative;
    width: 100%;
    height: 342px;
    background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)),
        url("../img/clinic-img.png");
    background-size: cover;
    background-position: center;
    display: flex;
    margin-top: 5%;
    align-items: center;
}

.overlayy {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.heroo-content {
    position: relative;
    color: #fff;
    max-width: 600px;
    margin-left: 8%;
    z-index: 2;
}

.subtitle {
    display: inline-block;
    letter-spacing: 4px;
    color: #2f2da6;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 35px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.heroo h1 span {
    color: #d8d8e1;
}

.heroo p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #f1f1f1;
}



.btn-primary,
.btn-outline {
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    transition: .3s;
    font-weight: 600;
}

.btn-primary {
    background: #2f2da6;
    color: #fff;
}

.btn-primary:hover {
    background: #2f2da6;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #2f2da6;
}

/* Lab-hero specific overrides to match hero example */
.lab-hero .hero-content h1 {
    font-size: 30px;
    line-height: 1.02;
    color: #041a2b;
    font-weight: 800;
}

.lab-hero .hero-content p {
    color: #374151;
    font-size: 15px;
    max-width: 760px;
    margin: 0 auto 30px;
}

.lab-hero .search-box {
    max-width: 760px;
    height: 52px;
}

@media(max-width:576px) {
    .hero-content {
        margin-top: 25%;
    }

    .search-box {
        width: 67%;
    }

    .search-box input {
        font-size: 11px;
    }

    .hero-content h3 {
        margin-top: -9%;
        color: red;
    }
}