/* ============================================
   PRIME TELERADIOLOGY - MAIN STYLESHEET
   ============================================ */

/* ============ CSS VARIABLES ============ */
:root {
    --primary: #0a6b6f;
    --primary-light: #e8f6f6;
    --secondary: #1a2a3a;
    --accent: #14b8a6;
    --white: #ffffff;
    --bg-light: #f8fafb;
    --text-primary: #1f2937;
    --gray: #6b7280;
    --gradient-primary: linear-gradient(135deg, #0a6b6f 0%, #085a5e 100%);
    --gradient-hero: linear-gradient(135deg, rgba(10,107,111,0.4) 0%, rgba(26,42,58,0.6) 100%);
    --gradient-cta: linear-gradient(135deg, #0a6b6f 0%, #1a2a3a 100%);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ RESET & BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ============ PRELOADER ============ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid var(--primary-light);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============ CONTAINER ============ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ HEADER ============ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 42px;
    width: auto;
}

.logo h1 {
    font-size: 1.3rem;
    color: var(--secondary);
    font-weight: 700;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--secondary);
    padding: 8px 0;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a.active {
    color: var(--primary);
}

nav a i {
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
}

/* ============ PAGE HEADER ============ */
.page-header {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 72px;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,107,111,0.85) 0%, rgba(26,42,58,0.9) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ============ SECTION HEADER ============ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--secondary);
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 72px;
    overflow: hidden;
    background: var(--secondary);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px 0;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease-out;
}

.hero-badge i {
    color: var(--accent);
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeUp 0.6s ease-out 0.1s both;
}

.hero-content h1 span {
    color: var(--accent);
    font-weight: 700;
}

.hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.08rem;
    margin-bottom: 32px;
    max-width: 540px;
    animation: fadeUp 0.6s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.6s ease-out 0.3s both;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeUp 0.8s ease-out 0.2s both;
}

.hero-image-wrapper {
    position: relative;
    max-width: 480px;
}

.hero-image-wrapper img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,255,255,0.1);
}

.hero-stats-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.3;
}

.hero-stats-card-2 {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--white);
    padding: 12px 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10,107,111,0.3);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--primary-light);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

/* ============ TRUSTED SECTION ============ */
.trusted-section {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid rgba(10,107,111,0.06);
}

.trusted-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trusted-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--secondary);
}

.trusted-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* ============ STATS SECTION ============ */
.stats-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--white);
    padding: 32px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(10,107,111,0.06);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.8rem;
    color: var(--white);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 6px;
    font-weight: 700;
}

.stat-card p {
    font-size: 0.95rem;
    color: var(--gray);
}

/* ============ SERVICES SECTION ============ */
.services-section {
    padding: 80px 0;
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(10,107,111,0.06);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link:hover {
    gap: 10px;
}

.service-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ============ WHY SECTION ============ */
.why-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(10,107,111,0.06);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ============ TEAM PAGE ============ */
.team-page {
    padding: 80px 0;
    background: var(--white);
}

/* Founders Section */
.founders-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(10,107,111,0.06);
}

.founders-photo-side {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.founders-photo-side img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.founders-photo-side:hover img {
    transform: scale(1.03);
}

.founders-photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10,107,111,0.95), rgba(10,107,111,0.7));
    color: var(--white);
    padding: 16px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.founders-text-side {
    padding: 20px 0;
}

.founders-text-side h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 24px;
    font-weight: 700;
}

.founders-pair {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.founder-block {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(10,107,111,0.1);
}

.founder-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.founder-block-title {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.founder-block-title span {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    padding: 4px 12px;
    background: var(--primary-light);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.founder-block p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* Team Members List */
.member-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.member-item {
    display: flex;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(10,107,111,0.06);
    min-height: 280px;
}

.member-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-item-img {
    flex: 0 0 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafb 0%, #eef2f5 100%);
}

.member-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-item:hover .member-item-img img {
    transform: scale(1.03);
}

.member-item-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.member-item-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.member-item-head h4 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin: 0;
    line-height: 1.3;
    font-weight: 600;
}

.member-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.member-item-text {
    flex: 1;
}

.member-item-text p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

.view-all-btn {
    text-align: center;
    margin-top: 40px;
}

.founders-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(10,107,111,0.06);
}

.founders-photo-side {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.founders-photo-side img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.founders-photo-side:hover img {
    transform: scale(1.03);
}

.founders-photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10,107,111,0.95), rgba(10,107,111,0.7));
    color: var(--white);
    padding: 16px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.founders-text-side {
    padding: 20px 0;
}

.founders-text-side h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 24px;
}

.founders-pair {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.founder-block {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(10,107,111,0.1);
}

.founder-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.founder-block-title {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.founder-block-title span {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
    padding: 4px 12px;
    background: var(--primary-light);
    border-radius: 20px;
}

.founder-block p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

.team-section {
    padding: 80px 0;
    background: var(--white);
}

.team-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.team-mini-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(10,107,111,0.06);
    text-align: center;
}

.team-mini-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-mini-card .team-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.team-mini-card .team-info {
    padding: 16px;
}

.team-mini-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--secondary);
}

.team-mini-card .role {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
}

.view-all-btn {
    text-align: center;
    margin-top: 36px;
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(10,107,111,0.06);
    position: relative;
    flex: 0 0 calc(50% - 12px);
    scroll-snap-align: start;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 5rem;
    color: rgba(10,107,111,0.06);
    position: absolute;
    top: 10px;
    right: 24px;
    font-family: serif;
    line-height: 1;
}

.stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 16px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.7;
    text-align: center;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.testimonial-author h4 {
    font-size: 1rem;
    color: var(--secondary);
    margin: 0;
}

.testimonial-author p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
    font-style: normal;
}

/* Testimonials 2-Column Slider */
.testimonials-slider-2 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    flex-shrink: 0;
    min-width: 0;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-light);
    color: var(--primary);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.testimonial-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.05);
}

.testimonial-arrow.prev-arrow {
    left: 0;
}

.testimonial-arrow.next-arrow {
    right: 0;
}

@media (min-width: 769px) {
    .testimonial-arrow.prev-arrow {
        left: -24px;
    }
    
    .testimonial-arrow.next-arrow {
        right: -24px;
    }
}

@media (max-width: 1024px) {
    .testimonial-arrow {
        display: none;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .testimonial-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .testimonial-arrow.prev-arrow {
        left: 0;
    }
    
    .testimonial-arrow.next-arrow {
        right: 0;
    }
}

/* ============ CTA SECTION ============ */
.cta-section {
    background: var(--gradient-cta);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    background-size: 40px 40px;
}

.cta-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============ FOOTER ============ */
footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand h3 i {
    color: var(--accent);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-col ul a i {
    font-size: 0.75rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--accent);
    width: 16px;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
}

.footer-bottom i {
    color: #e74c3c;
}

/* ============ SCROLL TO TOP ============ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-preview {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header .container {
        height: 64px;
    }
    
    .logo img {
        height: 36px;
    }
    
    .logo h1 {
        font-size: 1rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    nav li {
        width: 100%;
    }
    
    nav a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(10,107,111,0.06);
    }
    
    .page-header {
        height: 300px;
        min-height: 300px;
        padding: 120px 0 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .team-preview {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-card {
        padding: 20px 16px;
    }
    
    .service-card {
        padding: 28px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .choose-grid {
        grid-template-columns: 1fr;
    }
    
    .salient-grid {
        grid-template-columns: 1fr;
    }
    
    .founders-photo-side img {
        height: 300px;
    }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============ UTILITY CLASSES ============ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
/* ============ SERVICE DETAILS (Services Page) ============ */
.service-detail {
    margin-bottom: 80px;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-content.reverse {
    direction: ltr;
}

.service-detail-content.reverse .service-detail-text {
    order: 2;
}

.service-detail-content.reverse .service-detail-image {
    order: 1;
}

.service-detail-text {
    padding-right: 20px;
}

.service-detail-content.reverse .service-detail-text {
    padding-right: 0;
    padding-left: 20px;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.emergency-badge {
    background: #fee2e2;
    color: #dc2626;
}

.radiology-badge {
    background: var(--primary-light);
    color: var(--primary);
}

.specialty-badge {
    background: #fef3c7;
    color: #d97706;
}

.service-detail-text h3 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: var(--secondary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.service-detail-text p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    margin-top: 20px;
    padding-left: 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.service-features li:last-child {
    margin-bottom: 0;
}

.service-features li i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.service-detail-image {
    position: relative;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.service-detail-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ============ ABOUT PAGE ============ */
.about-page {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.about-text h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ============ SERVICES PAGE ============ */
.services-page {
    padding: 80px 0;
    background: var(--white);
}

/* Individual service section spacing */
.service-detail {
    margin-bottom: 100px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(10, 107, 111, 0.08);
}

.service-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Service detail content layout */
.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Reverse layout - swap order using CSS Grid ordering */
.service-detail-content.reverse {
    direction: ltr;
}

.service-detail-content.reverse .service-detail-text {
    grid-column: 2;
    grid-row: 1;
}

.service-detail-content.reverse .service-detail-image {
    grid-column: 1;
    grid-row: 1;
}

/* Text column styling */
.service-detail-text {
    padding-right: 20px;
}

.service-detail-content.reverse .service-detail-text {
    padding-right: 0;
    padding-left: 20px;
}

/* Badge styling */
.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.emergency-badge {
    background: #fee2e2;
    color: #dc2626;
}

.radiology-badge {
    background: var(--primary-light);
    color: var(--primary);
}

.specialty-badge {
    background: #fef3c7;
    color: #d97706;
}

/* Heading and paragraph */
.service-detail-text h3 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: var(--secondary);
    margin-bottom: 16px;
    line-height: 1.2;
    font-weight: 700;
}

.service-detail-text p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Feature list */
.service-features {
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.service-features li:last-child {
    margin-bottom: 0;
}

.service-features li i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Image styling */
.service-detail-image {
    position: relative;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    display: block;
}

.service-detail-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .member-item {
        flex-direction: column;
    }
    
    .member-item-img {
        flex: 0 0 280px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .founders-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .founders-photo-side img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .page-header {
        min-height: 250px;
        padding: 100px 0 30px;
    }
    
    .member-item-img {
        flex: 0 0 250px;
    }
    
    .member-item-body {
        padding: 20px;
    }
    
    .member-item-head h4 {
        font-size: 1.1rem;
    }
    
    .founders-photo-side img {
        height: 300px;
    }
    
    .founders-wrap {
        padding: 20px;
        gap: 20px;
    }
    
    .founders-text-side h3 {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    
    .team-preview {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ============ CONTACT PAGE ============ */
.contact-page {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-info-cards {
    display: grid;
    gap: 20px;
    align-content: start;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(10,107,111,0.15);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10,107,111,0.1);
}

.contact-info-cards {
    display: grid;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-info-card .icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-info-card .info h4 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 4px;
}

.contact-info-card .info p {
    font-size: 0.92rem;
    color: var(--gray);
    margin: 0;
}

/* Salient Section */
.salient-section {
    padding: 80px 0;
    background: var(--white);
}

.salient-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.salient-item {
    background: var(--bg-light);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(10,107,111,0.06);
}

.salient-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.salient-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.8rem;
    color: var(--white);
}

.salient-item h4 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.salient-item p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ============ PAGE SPECIFIC ============ */
.team-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.founder-block {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(10,107,111,0.1);
}

.founder-block:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.founder-block-title {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 6px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.founder-block-title span {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
}

.founders-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 20px;
}

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

/* ============ RESPONSIVE TWEAKS ============ */
@media (max-width: 1200px) {
    .stat-card h3 {
        font-size: 2rem;
    }
    
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .salient-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-detail-content.reverse .service-detail-text {
        grid-column: 1;
        grid-row: 1;
        order: unset;
        padding-right: 0;
        padding-left: 0;
    }
    
    .service-detail-content.reverse .service-detail-image {
        grid-column: 1;
        grid-row: 2;
        order: unset;
    }
    
    .service-detail-text {
        padding-right: 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .member-item {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .founders-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .founders-photo-side img {
        height: 350px;
    }
    
    .member-item-img {
        flex: 0 0 250px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 40px 0;
        margin-top: 64px;
    }
    
    .page-header {
        padding: 120px 0 40px;
        min-height: 200px;
    }
    
    .service-detail {
        margin-bottom: 60px;
        padding-bottom: 40px;
    }
    
    .service-detail-content {
        gap: 20px;
    }
    
    .stat-card {
        padding: 20px 16px;
    }
    
    .service-card {
        padding: 28px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .choose-grid {
        grid-template-columns: 1fr;
    }
    
    .salient-grid {
        grid-template-columns: 1fr;
    }
    
    .founders-wrap {
        padding: 20px;
        gap: 20px;
    }
    
    .founders-text-side h3 {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    
    .team-preview {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .founders-photo-side img {
        height: 250px;
    }
    
    .member-item {
        min-height: auto;
    }
    
    .team-mini-card .team-img {
        height: 180px;
    }
}


/* ============ RADIOLOGISTS PAGE ============ */
.radiologists-page {
    padding: 80px 0;
    background: var(--white);
}

/* 4-Column Grid Layout */
.radiologists-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.radiologist-card-4 {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(10,107,111,0.08);
    transition: var(--transition);
}

.radiologist-card-4:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.radiologist-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafb 0%, #eef2f5 100%);
    padding: 15px;
}

.radiologist-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.radiologist-card-4:hover .radiologist-image img {
    transform: scale(1.03);
}

.radiologist-details {
    padding: 20px;
    text-align: center;
}

.radiologist-details h3 {
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 6px;
    font-weight: 600;
}

.radiologist-details .designation {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.radiologist-details p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

/* CTA Section */
.radiologists-cta {
    margin-top: 80px;
    background: var(--gradient-hero);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.radiologists-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    background-size: 40px 40px;
}

.radiologists-cta .cta-content {
    position: relative;
    z-index: 1;
}

.radiologists-cta h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.radiologists-cta p {
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 24px;
    font-size: 1rem;
}

/* Responsive Radiologists */
@media (max-width: 1200px) {
    .radiologists-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .radiologists-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .radiologist-image {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .radiologists-page {
        padding: 60px 0;
    }
    
    .radiologists-grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .radiologist-image {
        height: 220px;
    }
    
    .radiologist-details {
        padding: 18px;
    }
    
    .radiologist-details h3 {
        font-size: 1.1rem;
    }
    
    .radiologist-details .designation {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    
    .radiologist-details p {
        font-size: 0.82rem;
    }
    
    .radiologists-cta {
        padding: 40px 20px;
    }
    
    .radiologists-cta h3 {
        font-size: 1.5rem;
    }
}
