/* 
   Dr. Maqbool Ahmed ENT Specialist - Exact Matching Stylesheet
   Based on exact UI screenshot provided by user
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400&family=Poppins:wght@300;400;500;600;700;800;900&family=Montserrat:wght@700;800;900&display=swap');

:root {
    --brand-red: #df3848;
    --brand-red-hover: #c92a3a;
    --navy-blue: #1b355a;
    --navy-blue-hover: #122540;
    --zoom-blue: #163c78;
    --text-dark: #111827;
    --text-body: #374151;
    --text-muted: #6b7280;
    --bg-light: #f9f9fb;
    --font-family: 'Poppins', 'Roboto', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-body);
    background-color: #ffffff;
    overflow-x: hidden;
}

a {
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--brand-red);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Navbar */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #f3f4f6;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 8px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img {
    height: 56px;
    width: auto;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
    font-weight: 500;
}

.nav-item {
    position: relative;
}

.nav-item a {
    color: #374151;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-item.active > a, .nav-item a:hover {
    color: var(--brand-red);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-radius: 6px;
    min-width: 210px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 1001;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 8px 16px;
    display: block;
    color: #374151;
    font-size: 13px;
}

.dropdown-menu a:hover {
    color: var(--brand-red);
    background: #f9f9fb;
}

/* Phone Red Pill Button */
.btn-phone-red {
    background-color: var(--brand-red) !important;
    color: #ffffff !important;
    padding: 10px 24px !important;
    border-radius: 20px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: none !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 10px rgba(223, 56, 72, 0.25);
    transition: background-color 0.25s ease !important;
}

.btn-phone-red:hover {
    background-color: var(--brand-red-hover) !important;
    color: #ffffff !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--brand-red);
    cursor: pointer;
    padding: 5px;
}

/* Mobile Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    z-index: 1100;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.3s ease;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #f3f4f6;
}

.close-mobile-nav {
    background: none;
    border: none;
    font-size: 24px;
    color: #374151;
    cursor: pointer;
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.mobile-menu-list a {
    font-size: 14px;
    color: #374151;
    padding: 8px 0;
    border-bottom: 1px solid #f9fafb;
}

/* Hero Section */
.hero-section {
    padding: 60px 0 80px;
    background-color: #f9f9fb;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    background-color: #fce4e6;
    color: var(--brand-red);
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}

.hero-title-prefix {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 4px;
}

.hero-title-main-red {
    font-size: 50px;
    font-weight: 900;
    color: var(--brand-red);
    line-height: 1.05;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 22px;
}

.btn-book-navy {
    background-color: var(--navy-blue) !important;
    color: #ffffff !important;
    padding: 10px 22px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    text-transform: none !important;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(27, 53, 90, 0.2);
    transition: background-color 0.25s ease !important;
    text-decoration: none;
}

.btn-book-navy:hover {
    background-color: var(--navy-blue-hover) !important;
    color: #ffffff !important;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 460px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    display: block;
    margin: 0 auto;
}

/* Doctor Stats Section - Replicating User Screenshot 2 */
.doctor-stats-section {
    padding: 50px 0 40px;
    background: #ffffff;
}

.doctor-stats-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: stretch;
}

.doctor-portrait-card {
    background: linear-gradient(180deg, #dbe2ef 0%, #cbd5e1 100%);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 24px;
    min-height: 420px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.doctor-portrait-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: 1;
}

.portrait-bottom-info {
    position: relative;
    z-index: 2;
    background: linear-gradient(to top, rgba(255,255,255,0.95) 45%, rgba(255,255,255,0) 100%);
    padding: 35px 20px 20px 20px;
    margin: -35px -24px -30px -24px;
    border-radius: 0 0 16px 16px;
}

.badge-red-pill {
    background-color: var(--brand-red);
    color: #ffffff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 6px;
}

.portrait-years-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--brand-red);
    line-height: 1.2;
}

.stats-2x2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card-pink {
    background: #fff1f2;
    border: 1px solid #ffe4e6;
    border-radius: 16px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.35s ease, background-color 0.35s ease;
    cursor: pointer;
}

.stat-card-pink:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(225, 29, 72, 0.12);
    border-color: #fda4af;
    background-color: #ffe4e6;
}

.stat-card-blue {
    background: #f0f9ff;
    border: 1px solid #e0f2fe;
    border-radius: 16px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.35s ease, background-color 0.35s ease;
    cursor: pointer;
}

.stat-card-blue:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(2, 132, 199, 0.12);
    border-color: #7dd3fc;
    background-color: #e0f2fe;
}

.stat-card-white {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 25px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.35s ease, background-color 0.35s ease;
    cursor: pointer;
}

.stat-card-white:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
    background-color: #f8fafc;
}

.icon-box-red, .icon-box-blue, .icon-box-lightred {
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease;
}

.stat-card-pink:hover .icon-box-red,
.stat-card-blue:hover .icon-box-blue,
.stat-card-white:hover .icon-box-lightred {
    transform: scale(1.12) rotate(-4deg);
}

.icon-box-red {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fecdd3;
    color: #e11d48;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.icon-box-blue {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #bae6fd;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.icon-box-lightred {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff1f2;
    color: #e11d48;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

/* Doctor Description Card - Screenshot 3 Match */
.doctor-description-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 35px 30px;
    margin: 30px 0 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.doctor-description-card .card-blue-icon {
    font-size: 26px;
    color: #1b355a;
    margin-bottom: 16px;
}

.doctor-description-card p {
    font-size: 14px;
    color: #374151;
    line-height: 1.65;
    margin-bottom: 16px;
}

.doctor-description-card p:last-child {
    margin-bottom: 0;
}

/* Voice Transformation Video Heading & Player - Screenshot 3 Match */
.voice-feature-section {
    padding: 20px 0 60px;
    text-align: center;
}

.voice-heading-red {
    font-size: 30px;
    font-weight: 800;
    color: var(--brand-red);
    line-height: 1.25;
    max-width: 820px;
    margin: 0 auto 30px;
    text-align: center;
}

.video-embed-box {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.video-embed-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Zoom Online Consultation Banner - Screenshot 4 Match */
.zoom-consult-section {
    background-color: var(--zoom-blue);
    padding: 45px 0;
    color: #ffffff;
}

.zoom-consult-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.zoom-left-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.zoom-now-available {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
}

.zoom-main-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.zoom-subtext {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.zoom-inline-bullets {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.zoom-inline-bullets span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.zoom-right-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-white-solid {
    background-color: #ffffff !important;
    color: #111827 !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    padding: 12px 24px !important;
    border-radius: 6px !important;
    border: none;
    cursor: pointer;
    text-transform: none !important;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background-color 0.25s ease !important;
    text-decoration: none;
    display: inline-block;
}

.btn-white-solid:hover {
    background-color: #f8fafc !important;
}

.btn-outline-white {
    background-color: transparent !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    padding: 11px 24px !important;
    border-radius: 6px !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    cursor: pointer;
    text-transform: none !important;
    white-space: nowrap;
    transition: all 0.25s ease !important;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: #ffffff !important;
}

/* Core Services Section - Screenshot 4 Match */
.core-services-section {
    background-color: #f3f4f6;
    padding: 60px 0 80px;
}

.core-services-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    line-height: 1.25;
    margin-bottom: 40px;
}

.core-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.core-service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.core-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.core-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #ffe4e6;
    color: #e11d48;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.core-icon-badge img {
    width: 28px;
    height: 28px;
}

.core-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.core-card-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.65;
}

/* Cochlear Implant Surgery Feature Section - Screenshot 5 Match */
.cochlear-feature-section {
    padding: 60px 0 80px;
    background-color: #ffffff;
}

.cochlear-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.cochlear-blue-title {
    font-size: 32px;
    font-weight: 700;
    color: #163c78;
    line-height: 1.2;
    margin-bottom: 18px;
}

.cochlear-desc {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.65;
    margin-bottom: 24px;
}

.cochlear-checkmark-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cochlear-checkmark-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}

.cochlear-checkmark-list i {
    color: var(--brand-red);
    font-size: 14px;
}

.cochlear-surgery-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* Reviews Carousel Section - Screenshot 5 Match */
.reviews-section-screenshot5 {
    padding: 60px 0 80px;
    background-color: #ffffff;
}

.reviews-main-heading {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 40px;
}

.trustindex-container-flex {
    display: flex;
    align-items: center;
    gap: 30px;
}

.trustindex-badge-left {
    min-width: 180px;
    text-align: center;
}

.trustindex-badge-left .rating-title {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    letter-spacing: 0.5px;
}

.trustindex-badge-left .stars-gold {
    color: #f59e0b;
    font-size: 20px;
    margin: 6px 0;
}

.trustindex-badge-left .count-text {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
}

.trustindex-badge-left .google-logo-img {
    height: 28px;
    margin: 0 auto;
}

.reviews-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-grow: 1;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.reviews-slider-track-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    border-radius: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reviews-slider-track-container::-webkit-scrollbar {
    display: none;
}

.reviews-slider-track {
    display: flex;
    gap: 15px;
    transition: transform 0.4s ease-in-out;
    width: 100%;
}

.review-card-grey {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px 14px;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    flex: 0 0 calc(25% - 11.25px);
    box-sizing: border-box;
}

@media (max-width: 1100px) {
    .review-card-grey {
        flex: 0 0 calc(33.333% - 10px);
    }
}

@media (max-width: 850px) {
    .review-card-grey {
        flex: 0 0 calc(50% - 7.5px);
    }
}

@media (max-width: 580px) {
    .review-card-grey {
        flex: 0 0 100%;
    }
}

.review-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.review-author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-author-img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author-initial {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #3b82f6;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.author-name-text {
    font-size: 12px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.author-time-text {
    font-size: 10px;
    color: #9ca3af;
}

.review-stars-row {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #f59e0b;
    font-size: 12px;
    margin-bottom: 8px;
}

.review-verified-check {
    color: #3b82f6;
    font-size: 12px;
    margin-left: 2px;
}

.review-snippet-text {
    font-size: 12px;
    color: #374151;
    line-height: 1.45;
}

.review-read-more {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 8px;
    display: block;
}

.carousel-nav-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 11px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

/* Latest Health Insights Section - Clean Spacious Match */
.blog-insights-section {
    padding: 70px 0 90px;
    background: #f9fafb;
}

.blog-main-heading-red {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    color: var(--brand-red);
    margin-bottom: 8px;
}

.blog-subheading {
    text-align: center;
    font-size: 14px;
    color: #4b5563;
    max-width: 680px;
    margin: 0 auto 45px;
    line-height: 1.6;
}

.blog-grid-6cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
}

.blog-card-image-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #f1f5f9;
    position: relative;
}

.blog-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.blog-card-item:hover .blog-card-image-wrap img {
    transform: scale(1.03);
}

.blog-card-body {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.blog-card-content {
    margin-bottom: 20px;
}

.blog-card-title-text {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-card-desc-text {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.6;
}

.btn-detail-navy {
    background-color: var(--navy-blue) !important;
    color: #ffffff !important;
    text-align: center;
    padding: 10px 20px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    display: inline-block;
    width: auto;
    align-self: flex-start;
    text-decoration: none;
    transition: background-color 0.25s ease !important;
    box-shadow: 0 2px 6px rgba(27, 53, 90, 0.15);
}

.btn-detail-navy:hover {
    background-color: var(--navy-blue-hover) !important;
}

/* Header Gradient Section */
.header_color_code h2 {
    font-weight: bold;
    background: linear-gradient(90deg, #6b21a8, #be123c, #6b21a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.elementor-button {
    background-color: var(--navy-blue);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.elementor-button:hover {
    background-color: var(--navy-blue-hover);
    color: #ffffff;
}

/* Leadership & Video Section */
.leadership-section {
    padding: 50px 0;
    background: #ffffff;
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.leadership-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.leadership-list {
    margin-top: 15px;
}

.leadership-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    margin-bottom: 10px;
}

.leadership-list i {
    color: var(--brand-red);
    font-size: 12px;
    margin-top: 4px;
}

/* Modal Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(3px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: #ffffff;
    border-radius: 12px;
    width: 100%;
    max-width: 520px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 22px;
    color: #6b7280;
    cursor: pointer;
}

.form-group {
    margin-bottom: 14px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #374151;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    font-family: inherit;
    font-size: 13px;
    outline: none;
}

.form-control:focus {
    border-color: var(--brand-red);
}

/* Floating Action Button */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    z-index: 990;
    transition: transform 0.25s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.08);
}

/* Site Footer - Screenshot 7 Match */
.site-footer {
    background-color: #f3f4f6;
    color: #4b5563;
    padding: 0;
    border-top: 1px solid #e5e7eb;
}

.footer-top {
    padding: 60px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
}

.footer-col-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 18px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: #4b5563;
    line-height: 1.6;
}

.footer-contact-list a {
    color: #4b5563;
}

.footer-contact-list a:hover {
    color: var(--brand-red);
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-list a {
    color: #4b5563;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-links-list a:hover {
    color: var(--brand-red);
}

.footer-social-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.social-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background-color: var(--navy-blue);
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background-color 0.25s ease;
}

.social-icon-btn:hover {
    background-color: var(--brand-red);
}

.footer-bottom-bar {
    background-color: var(--zoom-blue);
    padding: 14px 0;
    text-align: center;
}

.footer-copy-text {
    font-size: 12.5px;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .main-navigation {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .hero-grid, .doctor-stats-grid, .leadership-grid, .cochlear-feature-grid, .zoom-consult-flex, .trustindex-container-flex, .footer-grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
    }
    .core-services-grid, .reviews-cards-row, .blog-grid-6cards, .blog-grid-3cols, .services-2col-grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
    }
    .zoom-right-buttons {
        width: 100%;
        flex-direction: column;
    }
    .btn-white-solid, .btn-outline-white {
        width: 100%;
        text-align: center;
    }
    .stats-2x2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-title-main-red {
        font-size: 36px;
    }
    .hero-title-prefix {
        font-size: 24px;
    }
    .voice-heading-red, .core-services-heading, .cochlear-blue-title, .reviews-main-heading, .blog-main-heading-red {
        font-size: 24px;
    }
}

/* Comprehensive Mobile Responsiveness for Phones and Tablets */
@media (max-width: 768px) {
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Force all 2-column, 3-column, and multi-column grids into 1 single vertical column on mobile */
    .services-2col-grid,
    .blog-grid-3cols,
    .blog-grid-6cards,
    .contact-2col-grid,
    .footer-grid,
    .features-grid,
    .leadership-grid,
    .cochlear-feature-grid,
    .doctor-stats-grid,
    .stats-2x2-grid,
    .core-services-grid,
    .hero-grid,
    *[class*="-grid"],
    *[style*="grid-template-columns"],
    *[style*="repeat(2, 1fr)"],
    *[style*="repeat(3, 1fr)"],
    *[style*="repeat(4, 1fr)"],
    *[style*="display: grid"],
    *[style*="display:grid"] {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
    }

    /* Force all cards to take 100% full width */
    .service-detail-card,
    .feature-card,
    .blog-card-item,
    .stat-card-pink,
    .stat-card-blue,
    .stat-card-white,
    .core-service-card,
    .leadership-card,
    article,
    *[class*="-card"] {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 100% !important;
        box-sizing: border-box !important;
        padding: 24px 20px !important;
    }

    .service-detail-card h2 {
        font-size: 20px !important;
        line-height: 1.35 !important;
        margin-bottom: 12px !important;
    }

    .service-detail-card p {
        font-size: 13.5px !important;
        line-height: 1.6 !important;
    }

    h1 {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }

    h2 {
        font-size: 20px !important;
        line-height: 1.35 !important;
    }

    h3 {
        font-size: 17px !important;
    }

    div[style*="max-width: 1080px"],
    div[style*="max-width: 880px"],
    div[style*="max-width: 860px"],
    div[style*="max-width: 700px"],
    div[style*="max-width: 760px"],
    div[style*="max-width: 1060px"] {
        width: 100% !important;
        max-width: 100% !important;
    }

    div[style*="width: 310px"],
    div[style*="width: 360px"] {
        width: 100% !important;
        max-width: 100% !important;
    }

    div[style*="display: flex; gap: 15px;"] {
        flex-direction: column !important;
    }

    div[style*="width: 172px"] {
        width: 100% !important;
    }

    iframe {
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {
    .stats-2x2-grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
    }

    .site-logo img {
        height: 38px !important;
    }

    .btn-phone-red {
        font-size: 12px !important;
        padding: 8px 12px !important;
    }

/* ==========================================================================
   Exact Matching Styles for Screenshots 1 - 5
   ========================================================================== */

/* Screenshot 1: Voice Transformation Video Banner */
.voice-transformation-section {
    padding: 60px 0;
    text-align: center;
    background-color: #ffffff;
}

.voice-transformation-title {
    color: #df3848;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.35;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.video-container-card {
    max-width: 850px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background-color: #0f172a;
    position: relative;
}

.video-container-card iframe, .video-container-card video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
}

/* Screenshot 2: Online Consultation via Zoom Banner */
.zoom-consultation-banner {
    background: linear-gradient(110deg, #122c54 0%, #1b427b 100%);
    padding: 40px 0;
    color: #ffffff;
}

.zoom-banner-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.zoom-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.zoom-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.zoom-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin-bottom: 14px;
    line-height: 1.5;
}

.zoom-features-row {
    display: flex;
    gap: 20px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.zoom-features-row i {
    margin-right: 4px;
    color: #60a5fa;
}

.zoom-actions-row {
    display: flex;
    gap: 14px;
}

.btn-zoom-white {
    background-color: #ffffff;
    color: #122c54;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-zoom-white:hover {
    background-color: #f1f5f9;
    color: #0f172a;
}

.btn-zoom-outline {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13.5px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-zoom-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Screenshot 2: Core Services Section */
.core-services-section {
    padding: 70px 0;
    background-color: #f4f5f8;
}

.core-services-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 45px;
}

.core-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.core-service-card {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.core-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #fce8ea;
    color: #df3848;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.core-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.core-card-desc {
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.75;
}

/* Screenshot 3: Cochlear Implant Feature Section */
.cochlear-feature-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.cochlear-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cochlear-feature-title {
    font-size: 36px;
    font-weight: 800;
    color: #1b355a;
    line-height: 1.25;
    margin-bottom: 20px;
}

.cochlear-feature-desc {
    font-size: 14.5px;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 24px;
}

.cochlear-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cochlear-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 14px;
}

.cochlear-check-item i {
    color: #df3848;
    font-size: 16px;
}

.cochlear-feature-image-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.cochlear-feature-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Screenshot 4: Patient Reviews Section */
.patient-reviews-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.reviews-section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 40px;
}

.reviews-container-flex {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 35px;
    align-items: center;
}

.google-rating-badge {
    text-align: center;
}

.google-rating-badge .excellent-text {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.google-rating-badge .stars-row {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 6px;
}

.google-rating-badge .based-text {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
}

.google-logo-img {
    height: 32px !important;
    width: auto !important;
    max-width: 110px !important;
    margin: 8px auto 0 auto !important;
    display: block !important;
}

.google-icon-sm {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
}

.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.google-review-card {
    background: #f4f5f8;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviewer-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #3b82f6;
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-name {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.review-time {
    font-size: 11px;
    color: #6b7280;
}

.google-icon-sm {
    width: 20px;
    height: 20px;
}

.review-stars-row {
    color: #fbbf24;
    font-size: 11px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.blue-check {
    color: #3b82f6;
    font-size: 12px;
    margin-left: 2px;
}

.review-text-quote {
    font-size: 12.5px;
    color: #374151;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* Screenshot 4 & 5: Health Insights / Blog Cards */
.health-insights-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.insights-header-block {
    text-align: center;
    margin-bottom: 45px;
}

.insights-title {
    color: #df3848;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.insights-subtitle {
    font-size: 14.5px;
    color: #4b5563;
    max-width: 650px;
    margin: 0 auto;
}

.insights-6-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.insight-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-4px);
}

.insight-banner-top {
    background: linear-gradient(180deg, #e0f2fe 0%, #eef2ff 100%);
    padding: 25px 20px;
    text-align: center;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e0e7ff;
}

.insight-banner-top h4 {
    font-size: 13px;
    font-weight: 800;
    color: #1e3a8a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.insight-card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.insight-post-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.45;
}

.insight-post-desc {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-more-detail {
    display: block;
    width: 100%;
    background-color: #1b355a;
    color: #ffffff;
    text-align: center;
    padding: 11px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: background-color 0.25s ease;
}

.btn-more-detail:hover {
    background-color: #122540;
    color: #ffffff;
}

/* Floating Bottom-Right Video Widget (aih.com.pk Style) */
.floating-video-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 285px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    border: 2px solid #ffffff;
    z-index: 9995;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-video-widget:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.floating-video-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: #0f172a;
    color: #ffffff;
}

.floating-video-badge {
    font-size: 11px;
    font-weight: 700;
    color: #f43f5e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.floating-video-close {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.floating-video-close:hover {
    color: #ffffff;
}

.floating-video-body {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000000;
}

.floating-video-body iframe,
.floating-video-body video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.floating-video-caption {
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #1e293b;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 576px) {
    .floating-video-widget {
        bottom: 16px;
        right: 16px;
        width: 220px;
    }
}




