/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #384C9F, #2A3575);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2A3575, #1F2856);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(56, 76, 159, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #384C9F;
    border: 2px solid #384C9F;
}

.btn-secondary:hover {
    background: #384C9F;
    color: white;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #e9ecef;
}

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

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

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

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-outline {
    padding: 10px 24px;
    border: 2px solid #FDB714;
    color: #333;
    background: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    background: #FDB714;
    color: white;
    border-color: #FDB714;
}

.btn-primary-header {
    padding: 10px 24px;
    background: #384C9F;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: 2px solid #384C9F;
}

.btn-primary-header:hover {
    background: #2A3575;
    border-color: #2A3575;
    box-shadow: 0 4px 12px rgba(56, 76, 159, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Homepage Hero Section - Using Working Rehabilitation Page Pattern */
.homepage-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
    min-height: 600px;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.homepage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

/* Keep original hero-banner for backward compatibility */
.hero-banner {
    position: relative;
    margin-top: 70px;
    height: calc(100vh - 70px);
    min-height: 600px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 80px;
}

.homepage-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.homepage-hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: white;
    padding: 80px 20px 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.homepage-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.homepage-hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 800px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* About Us Hero Section - Using Working Rehabilitation Page Pattern */
.about-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
    min-height: 600px;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/images/aboutus-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: white;
    padding: 80px 20px 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 800px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Diagnostic Hero Section - Using Working Rehabilitation Page Pattern */
.diagnostic-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
    min-height: 600px;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/svayou-healthcare-2/diagnostics-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.diagnostic-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.diagnostic-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.diagnostic-hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: white;
    padding: 80px 20px 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.diagnostic-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.diagnostic-hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 800px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Specialties Hero Section - Using Working Rehabilitation Page Pattern */
.specialties-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
    min-height: 600px;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/images/specialties-hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.specialties-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.specialties-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.specialties-hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: white;
    padding: 80px 20px 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.specialties-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.specialties-hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 900px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Rehabilitation Hero Section */
.rehabilitation-hero {
    position: relative;
    margin-top: 70px;
    height: calc(100vh - 70px);
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url('/images/rehab-bg.png') center/cover no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.rehabilitation-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.rehabilitation-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.rehabilitation-hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: white;
    padding: 80px 20px 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.rehabilitation-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.rehabilitation-hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 800px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Keep original styles for backward compatibility */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    height: 85%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
    z-index: 1;
    border-radius: 20px;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    height: 85%;
    object-fit: cover;
    z-index: 0;
    border-radius: 20px;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    text-align: left;
    width: 90%;
    max-width: 1200px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 800px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-yellow {
    display: inline-block;
    padding: 15px 35px;
    background: #FDB714;
    color: #333;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(253, 183, 20, 0.3);
}

.btn-yellow:hover {
    background: #FFC61E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 183, 20, 0.4);
}

/* Welcome Section */
.welcome {
    padding: 80px 0;
    background: #f8f9fa;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.welcome-text {
    color: #333;
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #2c3e50;
}

.welcome-title .brand-name {
    color: #384C9F;
}

.welcome-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6c757d;
    margin: 0;
}

.welcome-image {
    position: relative;
}

.welcome-doctor-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Why Choose Svayou Healthcare Section */
.why-choose {
    padding: 80px 0;
    background: white;
}

.why-choose-header {
    text-align: left;
    margin-bottom: 4rem;
}

.why-choose-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.why-choose-title .brand-name {
    color: #384C9F;
}

.why-choose-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0;
    line-height: 1.6;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

.features-section {
    flex: 1;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-card-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card-item:hover {
    background: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: block;
}

.feature-icon-img {
    width: 48px;
    height: 48px;
    display: block;
    object-fit: contain;
    max-width: 100%;
    height: auto;
}

.feature-card-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-card-description {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.doctor-section {
    position: relative;
    max-width: 500px;
}

.doctor-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.doctor-hero-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.patient-care-popup {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-left: 4px solid #EF4444;
}

.popup-icon {
    flex-shrink: 0;
}

.popup-icon svg {
    width: 32px;
    height: 32px;
}

.popup-content {
    flex: 1;
}

.popup-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.popup-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
    margin: 0;
}

/* Vision and Mission Section */
.vision-mission {
    padding: 80px 0;
    background: #f8f9fa;
}

.vision-mission-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: left;
    line-height: 1.2;
}

.vision-mission-title .mission-text {
    color: #384C9F;
}

.vision-mission-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-mission-image {
    position: relative;
    max-width: 1000px;
    width: 100%;
    border-radius: 20px;
    overflow: visible;
}

.background-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vision-mission-cards {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    width: 750px;
    max-width: calc(100vw - 40px);
}

.vision-card,
.mission-card {
    background: white;
    padding: 1.8rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    flex: 1;
    min-width: 350px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Specific styles for Vision & Mission cards only */
.vision-card .card-icon,
.mission-card .card-icon {
    width: 60px;
    height: 60px;
    margin: 0.2rem auto 0.5rem auto;
    background: linear-gradient(135deg, rgba(56, 76, 159, 0.1), rgba(34, 197, 94, 0.1));
    border-radius: 50%;
    border: 2px solid rgba(56, 76, 159, 0.2);
}

.vision-card .card-title,
.mission-card .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.vision-card .card-description,
.mission-card .card-description {
    color: #555;
    line-height: 1.6;
    text-align: center;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-icon svg,
.mission-icon svg {
    width: 40px;
    height: 40px;
}

.card-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.card-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

/* Bottom Navigation Bar */
.bottom-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 35px;
    padding: 1rem 2rem;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(56, 76, 159, 0.3);
}

.bottom-nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.bottom-nav-item {
    color: #384C9F;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    position: relative;
    white-space: nowrap;
}

.bottom-nav-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.bottom-nav-item.active {
    background: #5468B3;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #384C9F, #2A3575);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #384C9F, #2A3575);
    border-radius: 2px;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-text h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-text p {
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #384C9F;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Our Specialties Section */
.specialties {
    padding: 80px 0;
    background: white;
}

.specialties-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.specialties-title-group {
    flex: 1;
}

.specialties-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: left;
}

.specialties-highlight {
    color: #384C9F;
}

.specialties-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

.specialties-button-group {
    flex-shrink: 0;
    margin-left: 2rem;
}

.btn-specialties {
    background: #384C9F;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-specialties:hover {
    background: #2A3575;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 76, 159, 0.3);
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.specialty-card {
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 110px;
    position: relative;
    overflow: hidden;
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-height: 200px;
}

/* All cards expand to same height on hover */

.specialty-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 0.75rem;
}

.specialty-icon svg {
    width: 100%;
    height: 100%;
}

.specialty-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.specialty-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

/* Individual Card Colors */
.general-medicine {
    background: linear-gradient(135deg, #FFF4E6, #FFE4B3);
}

.gastroenterology {
    background: linear-gradient(135deg, #E6F7FF, #B3E0FF);
}

.neurology {
    background: linear-gradient(135deg, #FFE4B3, #FFCC80);
}

.cardiology {
    background: linear-gradient(135deg, #FFD4D4, #FFB3B3);
}

.pulmonology {
    background: linear-gradient(135deg, #D4FFDD, #B3FFB3);
}

.nephrology {
    background: linear-gradient(135deg, #B3FFB3, #80FF80);
}

.orthopedics {
    background: linear-gradient(135deg, #D4E4FF, #B3D1FF);
}

.gynecology {
    background: linear-gradient(135deg, #FFD4FF, #FFB3FF);
}

.pediatrics {
    background: linear-gradient(135deg, #E4D4FF, #D1B3FF);
}

.dental {
    background: linear-gradient(135deg, #D4F4FF, #B3E8FF);
}

/* Description and Button Styles */
.specialty-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0.75rem 0 1rem 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.specialty-card:hover .specialty-description {
    opacity: 1;
    max-height: 80px;
}

/* Remove featured card special styles - all cards now behave the same */

.btn-know-more {
    background: #384C9F;
    color: white;
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: auto;
    opacity: 0;
    transform: translateY(20px);
}

.specialty-card:hover .btn-know-more {
    opacity: 1;
    transform: translateY(0);
}

/* All buttons now hidden by default and show on hover */

.btn-know-more:hover {
    background: #2A3575;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 76, 159, 0.3);
}

/* Rehabilitation Section */
.rehabilitation {
    padding: 80px 0;
    background: #f8f9fa;
}

.rehabilitation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.rehabilitation-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #2c3e50;
    line-height: 1.2;
}

.rehabilitation-button-group {
    flex-shrink: 0;
}

.btn-rehabilitation {
    background: #384C9F;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-rehabilitation:hover {
    background: #2A3575;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 76, 159, 0.3);
}

.rehabilitation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.rehab-card {
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 110px;
    position: relative;
    overflow: hidden;
}

.rehab-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-height: 200px;
}

.rehab-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 0.75rem;
}

.rehab-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rehab-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

/* Individual Rehab Card Colors */
.neuro-rehab {
    background: linear-gradient(135deg, #FFE4B3, #FFCC80);
}

.cardiac-rehab {
    background: linear-gradient(135deg, #FFD4D4, #FFB3B3);
}

.pulmonary-rehab {
    background: linear-gradient(135deg, #D4FFDD, #B3FFB3);
}

.renal-rehab {
    background: linear-gradient(135deg, #B3FFD4, #80FFB3);
}

.orthopedic-rehab {
    background: linear-gradient(135deg, #D4E4FF, #B3D1FF);
}

.sports-rehab {
    background: linear-gradient(135deg, #FFD4B3, #FFB380);
}

.pediatric-rehab {
    background: linear-gradient(135deg, #E4D4FF, #D1B3FF);
}

.cancer-rehab {
    background: linear-gradient(135deg, #FFD4E4, #FFB3D4);
}

.geriatric-rehab {
    background: linear-gradient(135deg, #D4F4FF, #B3E8FF);
}

.womens-rehab {
    background: linear-gradient(135deg, #FFF4D4, #FFE8B3);
    grid-column: span 1;
}

/* Rehab Description and Button Styles */
.rehab-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0.75rem 0 1rem 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.rehab-card:hover .rehab-description {
    opacity: 1;
    max-height: 80px;
}

.btn-rehab-more {
    background: #384C9F;
    color: white;
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: auto;
    opacity: 0;
    transform: translateY(20px);
}

.rehab-card:hover .btn-rehab-more {
    opacity: 1;
    transform: translateY(0);
}

.btn-rehab-more:hover {
    background: #2A3575;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 76, 159, 0.3);
}

/* Diagnostics Section */
.diagnostics {
    padding: 80px 0;
    background: white;
}

.diagnostics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.diagnostics-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #2c3e50;
    line-height: 1.2;
}

.diagnostics-button-group {
    flex-shrink: 0;
}

.btn-diagnostics {
    background: #384C9F;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-diagnostics:hover {
    background: #2A3575;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 76, 159, 0.3);
}

.diagnostics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.diagnostic-card {
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 110px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.diagnostic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-height: 200px;
}

.diagnostic-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 0.75rem;
}

.diagnostic-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.diagnostic-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

/* Individual Diagnostic Card Colors - Matching Rehabilitation Color Scheme */
.diagnostic-card.blood-test {
    background: linear-gradient(135deg, #FFD4D4, #FFB3B3) !important;
}

.diagnostic-card.xray {
    background: linear-gradient(135deg, #FFF4E6, #FFE4B3) !important;
}

.diagnostic-card.echo-ecg {
    background: linear-gradient(135deg, #E6F3FF, #CCE7FF) !important;
}

.diagnostic-card.tmt {
    background: linear-gradient(135deg, #D4FFDD, #B3FFB3) !important;
}

.diagnostic-card.pft {
    background: linear-gradient(135deg, #D4E4FF, #B3D1FF) !important;
}

/* Diagnostic Description and Button Styles */
.diagnostic-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0.75rem 0 1rem 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.diagnostic-card:hover .diagnostic-description {
    opacity: 1;
    max-height: 80px;
}

.btn-diagnostic-more {
    background: #384C9F;
    color: white;
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: auto;
    opacity: 0;
    transform: translateY(20px);
}

.diagnostic-card:hover .btn-diagnostic-more {
    opacity: 1;
    transform: translateY(0);
}

.btn-diagnostic-more:hover {
    background: #2A3575;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 76, 159, 0.3);
}

/* How It Works Section */
.how-it-works {
    background: white;
    position: relative;
}

.how-it-works-header {
    text-align: center;
    padding: 80px 0 2rem 0;
    background: white;
}

.how-it-works-title {
    font-size: 3rem;
    font-weight: bold;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.title-highlight {
    color: #4A5FC1;
}

.how-it-works-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 400;
}

.steps-container {
    background: linear-gradient(135deg, #4A5FC1, #6366F1, #8B5CF6);
    padding: 4rem 0;
    color: white;
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
    position: relative;
}

/* Dotted lines connecting steps */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        rgba(255, 255, 255, 0.4) 0,
        rgba(255, 255, 255, 0.4) 8px,
        transparent 8px,
        transparent 16px
    );
    z-index: 1;
}

.step-item {
    text-align: left;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 3;
}

/* Step number colors */
.step-1 {
    background: #4DD4E8;
    color: white;
}

.step-2 {
    background: #FDB714;
    color: white;
}

.step-3 {
    background: #4ADE80;
    color: white;
}

.step-1 {
    background: #7DD3FC;
    color: #0369A1;
}

.step-2 {
    background: #FDE047;
    color: #A16207;
}

.step-3 {
    background: #86EFAC;
    color: #166534;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Yellow phone numbers */
.phone-number {
    color: #FDB714;
    font-weight: 600;
}

/* White button for Book Appointment */
.btn-book-appointment {
    display: inline-block;
    padding: 12px 24px;
    background: white;
    color: #4A5FC1;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-book-appointment:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

/* Yellow button for Get Directions */
.btn-get-directions {
    display: inline-block;
    padding: 12px 24px;
    background: #FDB714;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #FDB714;
}

.btn-get-directions:hover {
    background: #FFC61E;
    border-color: #FFC61E;
    transform: translateY(-2px);
}

.phone-number {
    color: #FDE047;
    font-weight: 600;
}

.btn-book-appointment {
    background: white;
    color: #4A5FC1;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-book-appointment:hover {
    background: #F1F5F9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-get-directions {
    color: #FDE047;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-get-directions:before {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-get-directions:hover {
    color: white;
}

.btn-get-directions:hover:before {
    transform: translateX(5px);
}

/* Our Visionaries Section */
.visionaries {
    padding: 80px 0;
    background: #f8f9fa;
}

.visionaries-header {
    text-align: center;
    margin-bottom: 4rem;
}

.visionaries-title {
    font-size: 3rem;
    font-weight: bold;
    color: #4A5FC1;
    line-height: 1.2;
}

.visionaries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.visionary-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.visionary-card:hover {
    transform: translateY(-5px);
}

.visionary-content {
    display: flex;
    padding: 2rem;
    gap: 2rem;
    align-items: flex-start;
    flex: 1;
}

.visionary-photo {
    flex-shrink: 0;
    width: 180px;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
}

.visionary-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visionary-text {
    flex: 1;
    position: relative;
    padding-top: 2.5rem;
}

.quote-icon {
    position: absolute;
    top: 0;
    left: 0;
}

.visionary-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 2rem;
    padding-left: 0;
    min-height: 140px;
}

.svayou-logo {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 40px;
    opacity: 0.8;
}

.svayou-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.visionary-name-tag {
    background: #4A5FC1;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0 0 20px 20px;
}

.visionary-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.visionary-position {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Technology That Cares Section */
.technology {
    padding: 80px 0;
    background: #f8f9fa;
}

.technology-header {
    text-align: center;
    margin-bottom: 4rem;
}

.technology-title {
    font-size: 3rem;
    font-weight: bold;
    color: #2c3e50;
    line-height: 1.2;
}

.technology-carousel {
    position: relative;
    overflow: hidden;
}

.technology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 500px;
    opacity: 0;
    transform: translateX(100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.technology-content:first-child {
    position: relative;
    opacity: 1;
    transform: translateX(0);
}

.technology-content.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
}

.technology-info {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4A5FC1, #6366F1, #8B5CF6);
    padding: 0;
}

.tech-card {
    background: transparent;
    color: white;
    padding: 3rem;
    border-radius: 0;
    max-width: none;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: none;
}

.tech-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.technology-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.technology-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.technology-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.tech-nav-arrow {
    background: #4A5FC1;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.tech-nav-arrow:hover {
    background: #6366F1;
    transform: scale(1.1);
}

.tech-dots {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.tech-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tech-dot.active {
    background: #4A5FC1;
    transform: scale(1.2);
}

.tech-dot:hover {
    background: #6366F1;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-size: 3rem;
    font-weight: bold;
    color: #2c3e50;
    line-height: 1.2;
}

.faq-list {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    flex: 1;
    padding-right: 2rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4A5FC1;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f0f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 2rem 2rem 2rem;
    display: none;
    animation: fadeInDown 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    background: #4A5FC1;
    color: white;
    transform: rotate(180deg);
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Book Appointment Section */
.book-appointment {
    padding: 80px 0;
    background: #f8f9fa;
}

.appointment-container {
    background: linear-gradient(135deg, #4A5FC1, #6366F1, #8B5CF6);
    border-radius: 30px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    color: white;
    box-shadow: 0 20px 60px rgba(74, 95, 193, 0.3);
}

.appointment-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.contact-section {
    margin-bottom: 3rem;
}

.contact-section:last-child {
    margin-bottom: 0;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.contact-icon i {
    font-size: 1.2rem;
    color: white;
}

.contact-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    display: inline;
}

.contact-details {
    margin-top: 1rem;
    padding-left: 0;
}

.contact-details p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.contact-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.appointment-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: #989898;
    font-size: 1rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Time Slots Grid */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.time-slot {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #f9fafb;
    color: #374151;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.time-slot:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

.time-slot.selected {
    background: #FDE047;
    color: #1e293b;
    border-color: #FDE047;
    font-weight: 600;
}

/* Error and Info Messages */
.error-message {
    display: block;
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.info-message {
    color: rgb(117 117 117 / 80%);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.btn-book-appointment {
    width: 100%;
    padding: 1rem 2rem;
    background: #FDE047;
    color: #1e293b;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-book-appointment:hover {
    background: #FACC15;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 224, 71, 0.4);
}

/* Doctors Section */
.doctors {
    padding: 80px 0;
    background: #f8f9fa;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.doctor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.doctor-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

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

.doctor-card:hover .doctor-image img {
    transform: scale(1.05);
}

.doctor-info {
    padding: 2rem;
    text-align: center;
}

.doctor-info h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.doctor-specialty {
    color: #384C9F;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.doctor-experience {
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.doctor-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.doctor-social a {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    transition: all 0.3s ease;
    text-decoration: none;
}

.doctor-social a:hover {
    background: #384C9F;
    color: white;
    transform: translateY(-3px);
}

/* Appointment Section */
.appointment {
    padding: 80px 0;
    background: white;
}

.appointment-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.appointment-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #384C9F;
    box-shadow: 0 0 0 3px rgba(56, 76, 159, 0.1);
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.appointment-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.info-card i {
    font-size: 2.5rem;
    color: #384C9F;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.info-card p {
    color: #6c757d;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-content p {
    color: #6c757d;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.testimonial-author h4 {
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #384C9F;
    margin-top: 0.25rem;
}

.contact-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #384C9F;
    box-shadow: 0 0 0 3px rgba(56, 76, 159, 0.1);
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background: linear-gradient(135deg, #384C9F, #2A3575);
    color: white;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.newsletter-text h2 {
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    opacity: 0.9;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    min-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form .btn {
    white-space: nowrap;
    background: white;
    color: #384C9F;
    border-radius: 25px;
}

.newsletter-form .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #EDEFFE !important;
    color: #2c3e50 !important;
    padding: 60px 0 0 !important;
}

.footer-content {
    display: grid !important;
    grid-template-columns: 1fr 0.8fr 1fr 1.2fr !important;
    gap: 2rem !important;
    margin-bottom: 3rem !important;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 2rem !important;
}

.footer-logo img {
    height: 65px !important;
    width: auto !important;
    margin-right: 15px !important;
    border-radius: 0 !important;
}

.logo-text h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #4A5FC1;
    margin: 0;
    line-height: 1;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.footer-description {
    line-height: 1.6;
    color: #6c757d !important;
    margin-bottom: 2rem !important;
    font-size: 0.95rem;
}

.social-section {
    margin-top: 2rem;
}

.social-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4A5FC1;
    margin-bottom: 1rem;
}

.social-links {
    display: flex !important;
    gap: 1rem !important;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link.facebook {
    background: #1877f2 !important;
    color: white !important;
}

.social-link.linkedin {
    background: #0077b5 !important;
    color: white !important;
}

.social-link.instagram {
    background: #e4405f !important;
    color: white !important;
}

.social-link:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.social-link i {
    font-size: 18px;
    line-height: 1;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-locate {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4A5FC1 !important;
    margin-bottom: 1.5rem !important;
}

.footer-menu {
    list-style: none !important;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.8rem !important;
}

.footer-menu a {
    color: #6c757d !important;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #4A5FC1 !important;
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: #4A5FC1 !important;
    width: 20px !important;
    font-size: 1.1rem;
    margin-top: 2px;
}

.contact-item p {
    color: #6c757d !important;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.contact-numbers p {
    margin-bottom: 0.3rem;
}

.get-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4A5FC1;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.get-directions-btn:hover {
    color: #2A3575;
}

.get-directions-btn i {
    font-size: 1rem;
}

.footer-map {
    display: flex !important;
    flex-direction: column !important;
}

.footer-map .map-container {
    width: 100% !important;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

.footer-map .map-container iframe {
    display: block !important;
    width: 100% !important;
    height: 250px !important;
    border: 0 !important;
    min-height: 250px !important;
}

.footer-bottom {
    background: white !important;
    padding: 2rem 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-top: 1px solid #e9ecef !important;
    color: #4A5FC1 !important;
}

.bottom-nav {
    display: flex;
    gap: 2rem;
}

.nav-item {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-item.active,
.nav-item:hover {
    background: #4A5FC1;
    color: white;
}

.back-to-top-btn {
    width: 45px;
    height: 45px;
    background: #4A5FC1;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 95, 193, 0.3);
}

.back-to-top-btn:hover {
    background: #2A3575;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 95, 193, 0.4);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #384C9F, #2A3575);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(56, 76, 159, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(56, 76, 159, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .homepage-hero-content {
        text-align: center;
        padding: 60px 20px 0 20px;
    }

    .homepage-hero-title {
        font-size: 3rem;
    }

    .homepage-hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .about-hero-content {
        text-align: center;
        padding: 60px 20px 0 20px;
    }

    .about-hero-title {
        font-size: 3rem;
    }

    .about-hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .specialties-hero-content {
        text-align: center;
        padding: 60px 20px 0 20px;
    }

    .specialties-hero-title {
        font-size: 3rem;
    }

    .specialties-hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .rehabilitation-hero-content {
        text-align: center;
        padding: 60px 20px 0 20px;
    }

    .rehabilitation-hero-title {
        font-size: 3rem;
    }

    .rehabilitation-hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Keep original for backward compatibility */
    .hero-content {
        text-align: center;
        width: 95%;
        max-width: 800px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .why-choose-title {
        font-size: 2.2rem;
    }
    
    .vision-mission-title {
        font-size: 2.2rem;
    }
    
    .vision-mission-image {
        max-width: 100%;
    }
    
    .vision-mission-cards {
        position: static;
        transform: none;
        width: auto;
        margin-top: 2rem;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .vision-card,
    .mission-card {
        padding: 1.5rem;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .appointment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .newsletter-form {
        min-width: auto;
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        cursor: pointer;
        z-index: 1001;
    }
    
    .header-actions {
        display: none;
        position: fixed;
        top: 70px;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        margin: 1rem;
        z-index: 1000;
    }
    
    .header-actions.active {
        display: flex;
    }
    
    .hero-banner {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .rehabilitation-hero-title {
        font-size: 2.5rem;
    }

    .rehabilitation-hero-description {
        font-size: 1rem;
    }
    
    .welcome-title {
        font-size: 1.8rem;
    }
    
    .welcome-description {
        font-size: 1rem;
    }
    
    .why-choose-title {
        font-size: 1.9rem;
    }
    
    .feature-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card-item {
        padding: 1.5rem;
    }
    
    .vision-mission-title {
        font-size: 1.9rem;
    }
    
    .background-image {
        height: 350px;
    }
    
    .vision-mission-cards {
        position: relative;
        right: auto;
        width: 100%;
        max-width: 100%;
        gap: 1rem;
        transform: translateY(0);
        margin-top: 2rem;
    }
    
    .bottom-nav {
        min-width: 100%;
        border-radius: 0;
        padding: 1rem;
    }
    
    .bottom-nav-container {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    .bottom-nav-item {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .specialties-header {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .specialties-button-group {
        margin-left: 0;
    }
    
    .specialties-title {
        font-size: 2.2rem;
    }
    
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .rehabilitation-header {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .rehabilitation-button-group {
        margin-left: 0;
    }
    
    .rehabilitation-title {
        font-size: 2.2rem;
    }
    
    .rehabilitation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .diagnostics-header {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .diagnostics-button-group {
        margin-left: 0;
    }
    
    .diagnostics-title {
        font-size: 2.2rem;
    }
    
    .diagnostics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .how-it-works-title {
        font-size: 2.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .visionaries-title {
        font-size: 2.5rem;
    }
    
    .visionaries-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .visionary-content {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }
    
    .visionary-photo {
        width: 150px;
        height: 180px;
    }
    
    .technology-title {
        font-size: 2.5rem;
    }
    
    .technology-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .tech-card {
        max-width: none;
        padding: 2.5rem;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .appointment-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2.5rem;
        border-radius: 20px;
    }
    
    .appointment-title {
        font-size: 2.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .doctors-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .specialties-title {
        font-size: 1.8rem;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .specialty-card {
        padding: 1.2rem;
        min-height: 100px;
    }
    
    .specialty-icon {
        width: 56px;
        height: 56px;
    }
    
    .rehabilitation-title {
        font-size: 1.8rem;
    }
    
    .rehabilitation-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .rehab-card {
        padding: 1.2rem;
        min-height: 100px;
    }
    
    .rehab-icon {
        width: 56px;
        height: 56px;
    }
    
    .diagnostics-title {
        font-size: 1.8rem;
    }
    
    .diagnostics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .diagnostic-card {
        padding: 1.2rem;
        min-height: 100px;
    }
    
    .diagnostic-icon {
        width: 56px;
        height: 56px;
    }
    
    .how-it-works-title {
        font-size: 2.2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .visionaries-title {
        font-size: 2rem;
    }
    
    .visionaries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .visionary-content {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }
    
    .visionary-photo {
        width: 120px;
        height: 150px;
    }
    
    .visionary-quote {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .svayou-logo {
        position: relative;
        right: auto;
        top: auto;
        width: 60px;
        height: 30px;
        margin: 1rem 0;
    }
    
    .quote-icon {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 1rem;
    }
    
    .technology-title {
        font-size: 2rem;
    }
    
    .technology-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tech-card {
        max-width: none;
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .tech-title {
        font-size: 1.3rem;
    }
    
    .tech-description {
        font-size: 0.9rem;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-list {
        margin: 0 1rem;
    }
    
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
        padding-right: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.2rem 1.2rem 1.2rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    .faq-toggle {
        width: 25px;
        height: 25px;
        font-size: 1.2rem;
    }
    
    .appointment-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
        border-radius: 20px;
        margin: 0 1rem;
    }
    
    .appointment-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .appointment-form {
        padding: 1.5rem;
    }
    
    .contact-section {
        margin-bottom: 2rem;
    }
    
    .contact-section h3 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }

    /* Footer Mobile Styles */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links-services {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-map .map-container iframe {
        height: 200px !important;
        min-height: 200px !important;
    }

    .contact-item {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-item i {
        flex-shrink: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    /* Prevent horizontal scrolling */
    body {
        overflow-x: hidden;
    }
    
    .hero-overlay,
    .hero-bg-image {
        width: 100% !important;
        left: 0 !important;
        transform: translateX(0) !important;
        max-width: 100% !important;
        border-radius: 0 !important;
    }
    
    .welcome-doctor-image {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .vision-mission-cards {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
        right: auto !important;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .welcome-title {
        font-size: 1.5rem;
    }
    
    .welcome-description {
        font-size: 0.9rem;
    }
    
    .why-choose-title {
        font-size: 1.6rem;
    }
    
    .feature-card-item {
        padding: 1.2rem;
    }
    
    .feature-card-title {
        font-size: 1.1rem;
    }
    
    .feature-card-description {
        font-size: 0.9rem;
    }
    
    .vision-mission-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .background-image {
        height: 250px;
    }
    
    .vision-mission-cards {
        position: static;
        transform: none;
        width: auto;
        margin-top: 1rem;
        padding: 0 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .vision-card,
    .mission-card {
        padding: 1.2rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    .welcome-text {
        text-align: center;
    }
    
    .bottom-nav-item {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .feature-card,
    .service-card,
    .testimonial-card,
    .appointment-form,
    .contact-form {
        padding: 1.5rem;
    }
    
    .doctor-info {
        padding: 1.5rem;
    }
    
    .appointment-info {
        gap: 1rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    /* Footer Mobile Styles for Small Screens */
    .footer {
        padding: 40px 0 0 !important;
    }

    .footer-content {
        gap: 2rem !important;
    }

    .footer-links-services {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .footer-description {
        font-size: 0.9rem;
        text-align: left;
    }

    .footer-column-title {
        font-size: 1.1rem;
        margin-bottom: 1rem !important;
    }

    .footer-menu a {
        font-size: 0.9rem;
    }

    .contact-item p {
        font-size: 0.85rem;
    }

    .social-links {
        justify-content: flex-start;
    }

    .get-directions-btn {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }

    .footer-bottom {
        padding: 1.5rem 0 !important;
    }

    .bottom-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-item {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Animations */
.hero-text {
    animation: fadeInLeft 1s ease-out;
}

.hero-image {
    animation: fadeInRight 1s ease-out 0.3s both;
}

.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #384C9F;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .back-to-top,
    .newsletter,
    .footer {
        display: none;
    }
    
    .hero {
        padding: 20px 0;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
}

/* About Us Page Specific Styles */

/* Our Story Section */
.our-story-section {
    padding: 80px 0;
    background: #fff;
}

.story-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.story-left {
    padding-right: 40px;
}

.story-title {
    font-size: 48px;
    margin-bottom: 25px;
    color: #333;
    font-weight: 700;
    line-height: 1.2;
}

.story-highlight {
    color: #374C9F;
}

.story-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
    text-align: justify;
}

.story-quote-section {
    margin-top: 40px;
}

.story-quote-title {
    font-size: 24px;
    color: #5E5ED4;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.story-quote-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

.story-right {
    padding-left: 20px;
}

.story-main-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Leadership Team Section */
.leadership-team {
    padding: 80px 0;
    background: #f8f9fa;
}

.leadership-header {
    text-align: center;
    margin-bottom: 60px;
}

.leadership-title {
    font-size: 48px;
    color: #333;
    font-weight: 700;
    line-height: 1.2;
}

.team-highlight {
    color: #5E5ED4;
}

.leadership-carousel {
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.carousel-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 900px;
}

.team-member-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.team-member-card.highlighted {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(94, 94, 212, 0.3);
    border: 2px solid #5E5ED4;
}

.member-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f0f0f0;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.member-position {
    font-size: 13px;
    color: #5E5ED4;
    font-weight: 500;
    margin: 0;
}

.carousel-arrow {
    position: absolute;
    background: white;
    border: 2px solid #5E5ED4;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5E5ED4;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-arrow:hover {
    background: #5E5ED4;
    color: white;
    box-shadow: 0 5px 15px rgba(94, 94, 212, 0.3);
}

.prev-arrow {
    left: -25px;
}

.next-arrow {
    right: -25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #5E5ED4;
    transform: scale(1.2);
}

/* Our Approach To Care Section */
.approach-to-care {
    padding: 80px 0;
    background: white;
}

.approach-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.approach-content {
    padding-right: 40px;
}

.approach-title {
    font-size: 48px;
    margin-bottom: 30px;
    color: #333;
    font-weight: 700;
    line-height: 1.2;
}

.approach-highlight {
    color: #5E5ED4;
}

.approach-description {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 50px;
    text-align: justify;
}

.care-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.service-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: #5E5ED4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
}

.service-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.approach-image {
    padding-left: 20px;
}

.doctor-image {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Join Our Journey Section */
.join-journey {
    padding: 80px 0;
    background: linear-gradient(135deg, #5E5ED4, #4A4ACF);
    color: white;
}

.journey-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.journey-content {
    padding-right: 40px;
}

.journey-title {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.3;
}

.btn-join {
    display: inline-block;
    padding: 15px 40px;
    background: #FDB714;
    color: #333;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-join:hover {
    background: #FFC61E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 183, 20, 0.4);
}

.journey-image {
    padding-left: 20px;
}

.journey-doctors-image {
    width: 100%;
    border-radius: 15px;
}

/* Responsive Design for About Us */
@media (max-width: 1024px) {
    .story-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .story-left {
        padding-right: 0;
    }
    
    .story-right {
        padding-left: 0;
    }
    
    .approach-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .approach-content {
        padding-right: 0;
    }
    
    .approach-image {
        padding-left: 0;
    }
    
    .journey-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .journey-content {
        padding-right: 0;
    }
    
    .journey-image {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .story-title,
    .leadership-title,
    .approach-title {
        font-size: 32px;
    }

    .journey-title {
        font-size: 28px;
    }

    /* Leadership Team Mobile Styles */
    .leadership-team {
        padding: 60px 0;
    }

    .leadership-header {
        margin-bottom: 40px;
    }

    .leadership-carousel {
        max-width: 100%;
        padding: 0 10px;
    }

    .carousel-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
    }

    .team-member-card {
        padding: 20px 15px;
    }

    .member-image {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .member-name {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .member-position {
        font-size: 12px;
    }

    .carousel-arrow {
        display: none;
    }

    .carousel-dots {
        margin-top: 30px;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .care-services {
        gap: 20px;
    }

    .service-card {
        padding: 20px;
    }

    .visionaries-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .story-main {
        gap: 30px;
    }

    .story-title,
    .leadership-title,
    .approach-title {
        font-size: 24px;
    }

    .journey-title {
        font-size: 22px;
    }

    /* Leadership Team Small Mobile Styles */
    .leadership-team {
        padding: 40px 0;
    }

    .leadership-header {
        margin-bottom: 30px;
    }

    .leadership-title {
        font-size: 28px;
    }

    .carousel-container {
        margin-bottom: 30px;
    }

    .carousel-track {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .team-member-card {
        padding: 25px 20px;
        max-width: 100%;
    }

    .member-image {
        width: 90px;
        height: 90px;
        margin-bottom: 18px;
        border-width: 4px;
    }

    .member-name {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .member-position {
        font-size: 13px;
    }

    .carousel-dots {
        margin-top: 25px;
        gap: 6px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .story-quote-title {
        font-size: 18px;
    }
    
    .approach-description {
        font-size: 14px;
    }
    
    .journey-wrapper {
        gap: 30px;
    }
}

/* Contact Page Specific Styles */

/* Contact Hero Section */
.contact-hero {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #384C9F, #2A3575);
    color: white;
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 15px;
    padding: 4rem 2rem;
    text-align: center;
    color: #6c757d;
}

.map-placeholder i {
    font-size: 4rem;
    color: #4A5FC1;
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.map-address {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #495057;
}

.btn-directions {
    display: inline-block;
    padding: 12px 24px;
    background: #4A5FC1;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-directions:hover {
    background: #3A4FB1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 95, 193, 0.4);
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.2rem;
    }
    
    .contact-hero-description {
        font-size: 1rem;
    }
    
    .map-title {
        font-size: 2rem;
    }
    
    .map-placeholder {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 1.8rem;
    }
    
    .map-placeholder {
        padding: 2rem 1rem;
    }
}

/* Specialties Page Specific Styles */

/* Why Choose Our Specialists Section */
.why-choose-specialists {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-choose-specialists .why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-choose-specialists .why-choose-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.why-choose-specialists .why-choose-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.specialists-features {
    display: flex;
    justify-content: center;
}

.specialists-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 800px;
}

.specialists-feature-grid .feature-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    text-align: center;
}

.specialists-feature-grid .feature-item:hover {
    background: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: #384C9F;
}

.specialists-feature-grid .feature-icon-wrapper {
    margin-bottom: 1.5rem;
}

.specialists-feature-grid .feature-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.specialists-feature-grid .feature-description {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Specialties Page Responsive */
@media (max-width: 1024px) {
    .specialists-feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }
    
    .why-choose-specialists .why-choose-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .specialists-feature-grid {
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .specialists-feature-grid .feature-item {
        padding: 2rem 1.5rem;
    }
    
    .why-choose-specialists .why-choose-title {
        font-size: 1.8rem;
    }
    
    .specialists-feature-grid .feature-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .specialists-feature-grid {
        max-width: 300px;
    }
    
    .specialists-feature-grid .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .why-choose-specialists .why-choose-title {
        font-size: 1.5rem;
    }
}/* General Medicine Page Specific Styles */

/* Hero Section for General Medicine */
.gm-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/general-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.gm-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.3) 0%, 
        rgba(118, 75, 162, 0.3) 100%);
    z-index: 1;
}

.gm-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.gm-hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: white;
    padding: 80px 20px 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 50px;
    font-size: 14px;
    opacity: 0.9;
    padding-top: 20px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Hero Title */
.gm-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

/* Ensure HTML content inside hero title maintains styling */
.gm-hero-title *,
.gm-hero-title p,
.gm-hero-title span,
.gm-hero-title div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-shadow: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
}

/* Hero Description */
.gm-hero-description {
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 0 40px 0;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease;
}

/* Ensure HTML content inside hero description maintains styling */
.gm-hero-description *,
.gm-hero-description p,
.gm-hero-description span,
.gm-hero-description div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-shadow: inherit;
    opacity: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
}

/* Using btn-yellow class from main styles.css */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bottom Navigation - Active State Override */
.bottom-nav .bottom-nav-item.active {
    color: #FFD700;
    border-bottom: 2px solid #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gm-hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .gm-hero-title {
        font-size: 38px;
    }
    
    .gm-hero-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .gm-hero {
        height: 70vh;
        min-height: 450px;
    }
    
    .gm-hero-content {
        text-align: left;
        padding: 60px 20px 0 20px;
    }
    
    .gm-hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .gm-hero-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 90%;
    }
    
    .breadcrumb {
        font-size: 12px;
        margin-bottom: 30px;
        justify-content: flex-start;
        padding-top: 10px;
    }
    
}

@media (max-width: 480px) {
    .gm-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .gm-hero-content {
        text-align: left;
        padding: 40px 20px 0 20px;
    }
    
    .gm-hero-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .gm-hero-description {
        font-size: 13px;
        line-height: 1.5;
        max-width: 95%;
        margin: 0 0 30px 0;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-start;
        padding-top: 5px;
        margin-bottom: 25px;
    }
    
}

/* Overview Section */
.gm-overview-section {
    padding: 80px 0;
    background: #ffffff;
}

.gm-overview-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gm-overview-header {
    text-align: left;
}

.gm-overview-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gm-overview-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Ensure HTML content inside overview description maintains styling */
.gm-overview-description *,
.gm-overview-description p,
.gm-overview-description span,
.gm-overview-description div {
    font-size: inherit;
    color: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    font-family: inherit;
}

.gm-consultation-title {
    font-size: 18px;
    font-weight: 600;
    color: #4A5FC1;
    margin-bottom: 30px;
    line-height: 1.4;
}

.gm-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
}

.gm-left-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gm-right-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

.gm-left-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.gm-right-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gm-overview-image-left, .gm-overview-image-right {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

.gm-conditions-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.gm-condition-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.gm-condition-icon {
    width: 24px;
    height: 24px;
    background: #4A5FC1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.gm-condition-icon i {
    color: white;
    font-size: 12px;
}

.gm-condition-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Overview */
@media (max-width: 1024px) {
    .gm-overview-grid {
        gap: 40px;
    }
    
    .gm-overview-image-left, .gm-overview-image-right {
        width: 100%;
        height: auto;
    }
    
    .gm-overview-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .gm-overview-section {
        padding: 60px 0;
    }
    
    .gm-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gm-left-column {
        order: 1;
    }
    
    .gm-right-column {
        order: 2;
    }
    
    .gm-overview-image-left, .gm-overview-image-right {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    
    .gm-right-image {
        justify-content: center;
    }
    
    .gm-overview-title {
        font-size: 36px;
    }
    
    .gm-overview-header {
        text-align: center;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .gm-overview-section {
        padding: 40px 0;
    }
    
    .gm-overview-title {
        font-size: 32px;
    }
    
    .gm-overview-image-left, .gm-overview-image-right {
        width: 100%;
        height: auto;
    }
    
    .gm-consultation-title {
        font-size: 16px;
    }
    
    .gm-condition-text {
        font-size: 15px;
    }
    
    .gm-doctors-title {
        font-size: 32px;
    }
    
    .gm-doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gm-doctor-image {
        height: 240px;
    }
}

/* Responsive Design for Doctors Section */
@media (max-width: 1200px) {
    .gm-doctors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .gm-doctors-title {
        font-size: 42px;
    }
    
    .gm-doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .gm-meet-doctors {
        padding: 60px 0;
    }
    
    .gm-doctors-title {
        font-size: 36px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .gm-doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gm-doctor-image {
        height: 220px;
    }
    
    .gm-doctor-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .gm-meet-doctors {
        padding: 40px 0;
    }
    
    .gm-doctors-title {
        font-size: 28px;
    }
    
    .gm-doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gm-doctor-image {
        height: 240px;
    }
    
    .gm-doctor-info {
        padding: 18px;
    }
    
    .gm-doctor-name {
        font-size: 18px;
    }
}

/* Meet Our Doctors Section */
.gm-meet-doctors {
    padding: 80px 0;
    background: #f8f9fa;
}

.gm-doctors-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-align: left;
    line-height: 1.2;
}

.gm-doctors-highlight {
    color: #384C9F;
}

.gm-doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.gm-doctor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.gm-doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gm-doctor-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.gm-doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gm-doctor-card:hover .gm-doctor-photo {
    transform: scale(1.05);
}

.gm-doctor-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gm-doctor-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.gm-doctor-specialty {
    font-size: 14px;
    color: #384C9F;
    font-weight: 500;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gm-doctor-details {
    margin-bottom: 20px;
    flex: 1;
}

.gm-experience, .gm-languages {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.gm-know-more-link {
    color: #384C9F;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.gm-know-more-link:hover {
    color: #2a3f7f;
}

.gm-btn-appointment {
    background: #FDB714;
    color: #333;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.gm-btn-appointment:hover {
    background: #FFC61E;
    transform: translateY(-1px);
}

/* Treatment Approach Section */
.gm-treatment-approach {
    padding: 80px 0;
    background: #ffffff;
}

.gm-treatment-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.gm-treatment-highlight {
    color: #384C9F;
}

.gm-treatment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.gm-treatment-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.gm-treatment-item:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gm-treatment-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.gm-treatment-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.gm-treatment-item:hover .gm-treatment-icon-img {
    transform: scale(1.1);
}

.gm-treatment-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.gm-treatment-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Treatment Approach */
@media (max-width: 1024px) {
    .gm-treatment-title {
        font-size: 42px;
    }
    
    .gm-treatment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .gm-treatment-approach {
        padding: 60px 0;
    }
    
    .gm-treatment-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .gm-treatment-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .gm-treatment-item {
        padding: 25px 20px;
    }
    
    .gm-treatment-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .gm-treatment-approach {
        padding: 40px 0;
    }
    
    .gm-treatment-title {
        font-size: 32px;
    }
    
    .gm-treatment-item {
        padding: 20px 15px;
    }
    
    .gm-treatment-item-title {
        font-size: 16px;
    }
    
    .gm-treatment-description {
        font-size: 13px;
    }
}

/* Physiotherapy & Rehabilitation Section */
.gm-physio-rehab {
    padding: 80px 0;
    background: #f8f9fa;
}

.gm-physio-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gm-physio-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.gm-physio-card {
    background: white;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gm-physio-image {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.gm-physio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gm-physio-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 35px;
    line-height: 1.3;
}

.gm-physio-highlight {
    color: #384C9F;
}

.gm-physio-services {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.gm-physio-service-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 15px;
    color: #666;
}

.gm-service-icon {
    width: 24px;
    height: 24px;
    background: #384C9F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 14px;
    flex-shrink: 0;
}

.gm-service-text {
    color: #666;
    font-size: 15px;
    line-height: 1.4;
}

.gm-physio-btn {
    display: inline-block;
    background: #FDB714;
    color: #333;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
    width: fit-content;
}

.gm-physio-btn:hover {
    background: #FFC61E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 183, 20, 0.3);
}

/* Responsive Design for Physiotherapy Section */
@media (max-width: 1200px) {
    .gm-physio-wrapper {
        padding: 0 15px;
    }
}

@media (max-width: 1024px) {
    .gm-physio-content {
        grid-template-columns: 350px 1fr;
    }
    
    .gm-physio-card {
        padding: 40px 30px;
    }
    
    .gm-physio-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .gm-physio-rehab {
        padding: 60px 0;
    }
    
    .gm-physio-content {
        grid-template-columns: 1fr;
        border-radius: 15px;
    }
    
    .gm-physio-card {
        padding: 40px 30px;
    }
    
    .gm-physio-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .gm-physio-rehab {
        padding: 40px 0;
    }
    
    .gm-physio-wrapper {
        padding: 0 10px;
    }
    
    .gm-physio-card {
        padding: 30px 25px;
    }
    
    .gm-physio-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .gm-physio-service-item {
        margin-bottom: 15px;
    }
    
    .gm-service-text {
        font-size: 14px;
    }
    
    .gm-physio-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .gm-physio-image {
        height: 250px;
    }
}

/* Physiotherapy & Rehabilitation Overlay Section */
.gm-physio-rehab-overlay {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.gm-physio-background {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.gm-physio-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gm-physio-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px;
}

.gm-physio-content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gm-physio-overlay-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.gm-physio-overlay-highlight {
    color: #384C9F;
}

.gm-physio-overlay-services {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.gm-physio-overlay-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
}

.gm-overlay-service-icon {
    width: 20px;
    height: 20px;
    background: #384C9F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
    flex-shrink: 0;
}

.gm-overlay-service-text {
    color: #333;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}

.gm-physio-overlay-btn {
    display: inline-block;
    background: #FDB714;
    color: #333;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: fit-content;
}

.gm-physio-overlay-btn:hover {
    background: #FFC61E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 183, 20, 0.3);
}

/* Responsive Design for Overlay Section */
@media (max-width: 1024px) {
    .gm-physio-background {
        height: 450px;
    }
    
    .gm-physio-overlay-content {
        padding: 40px;
    }
    
    .gm-physio-content-card {
        padding: 35px;
        max-width: 350px;
    }
    
    .gm-physio-overlay-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .gm-physio-rehab-overlay {
        padding: 60px 0;
    }
    
    .gm-physio-background {
        height: 400px;
        border-radius: 15px;
    }
    
    .gm-physio-overlay-content {
        padding: 30px;
        justify-content: center;
    }
    
    .gm-physio-content-card {
        padding: 30px;
        max-width: 320px;
    }
    
    .gm-physio-overlay-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .gm-physio-overlay-item {
        margin-bottom: 12px;
    }
    
    .gm-overlay-service-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .gm-physio-rehab-overlay {
        padding: 40px 0;
    }
    
    .gm-physio-container {
        padding: 0 15px;
    }
    
    .gm-physio-background {
        height: 350px;
    }
    
    .gm-physio-overlay-content {
        padding: 20px;
    }
    
    .gm-physio-content-card {
        padding: 25px;
        max-width: 280px;
    }
    
    .gm-physio-overlay-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .gm-physio-overlay-item {
        margin-bottom: 10px;
    }
    
    .gm-overlay-service-text {
        font-size: 13px;
    }
    
    .gm-physio-overlay-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Additional Styles for Content Below Hero */
.gm-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.gm-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gm-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.gm-section-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

/* Service Cards Grid */
.gm-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gm-service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.gm-service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: #667eea;
}

.gm-service-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.gm-service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}/* Cardiology Page Specific Styles */

/* Hero Section for Cardiology */
.cardio-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/cardiology-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.cardio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(220, 53, 69, 0.4) 0%, 
        rgba(253, 126, 20, 0.4) 100%);
    z-index: 1;
}

.cardio-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.cardio-hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: white;
    padding: 80px 20px 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 50px;
    font-size: 14px;
    opacity: 0.9;
    padding-top: 20px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Hero Title */
/* Ensure HTML content inside cardio hero title maintains styling */
.cardio-hero-title *,
.cardio-hero-title p,
.cardio-hero-title span,
.cardio-hero-title div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-shadow: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
}

.cardio-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

/* Hero Description */
/* Ensure HTML content inside cardio hero description maintains styling */
.cardio-hero-description *,
.cardio-hero-description p,
.cardio-hero-description span,
.cardio-hero-description div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-shadow: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
    opacity: inherit;
}

.cardio-hero-description {
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 0 40px 0;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bottom Navigation - Active State Override */
.bottom-nav .bottom-nav-item.active {
    color: #FFD700;
    border-bottom: 2px solid #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cardio-hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .cardio-hero-title {
        font-size: 38px;
    }
    
    .cardio-hero-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .cardio-hero {
        height: 70vh;
        min-height: 450px;
    }
    
    .cardio-hero-content {
        text-align: left;
        padding: 60px 20px 0 20px;
    }
    
    .cardio-hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .cardio-hero-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 90%;
    }
    
    .breadcrumb {
        font-size: 12px;
        margin-bottom: 30px;
        justify-content: flex-start;
        padding-top: 10px;
    }
}

@media (max-width: 480px) {
    .cardio-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .cardio-hero-content {
        text-align: left;
        padding: 40px 20px 0 20px;
    }
    
    .cardio-hero-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .cardio-hero-description {
        font-size: 13px;
        line-height: 1.5;
        max-width: 95%;
        margin: 0 0 30px 0;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-start;
        padding-top: 5px;
        margin-bottom: 25px;
    }
}

/* Overview Section */
.cardio-overview-section {
    padding: 80px 0;
    background: #ffffff;
}

.cardio-overview-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cardio-overview-header {
    text-align: left;
}

.cardio-overview-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Ensure HTML content inside cardio overview description maintains styling */
.cardio-overview-description *,
.cardio-overview-description p,
.cardio-overview-description span,
.cardio-overview-description div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
}

.cardio-overview-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.cardio-consultation-title {
    font-size: 18px;
    font-weight: 600;
    color: #384C9F;
    margin-bottom: 30px;
    line-height: 1.4;
}

.cardio-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
}

.cardio-left-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cardio-right-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

.cardio-left-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.cardio-right-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cardio-overview-image-left, .cardio-overview-image-right {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

.cardio-conditions-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cardio-condition-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cardio-condition-icon {
    width: 24px;
    height: 24px;
    color: #384C9F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.cardio-condition-icon i {
    color: white;
    font-size: 12px;
}

.cardio-condition-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Overview */
@media (max-width: 1024px) {
    .cardio-overview-grid {
        gap: 40px;
    }
    
    .cardio-overview-image-left, .cardio-overview-image-right {
        width: 100%;
        height: auto;
    }
    
    .cardio-overview-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .cardio-overview-section {
        padding: 60px 0;
    }
    
    .cardio-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cardio-left-column {
        order: 1;
    }
    
    .cardio-right-column {
        order: 2;
    }
    
    .cardio-overview-image-left, .cardio-overview-image-right {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    
    .cardio-right-image {
        justify-content: center;
    }
    
    .cardio-overview-title {
        font-size: 36px;
    }
    
    .cardio-overview-header {
        text-align: center;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .cardio-overview-section {
        padding: 40px 0;
    }
    
    .cardio-overview-title {
        font-size: 32px;
    }
    
    .cardio-overview-image-left, .cardio-overview-image-right {
        width: 100%;
        height: auto;
    }
    
    .cardio-consultation-title {
        font-size: 16px;
    }
    
    .cardio-condition-text {
        font-size: 15px;
    }
    
    .cardio-doctors-title {
        font-size: 32px;
    }
    
    .cardio-doctors-grid {
        gap: 20px;
    }
    
    .cardio-doctor-image {
        height: 240px;
    }
}

/* Meet Our Doctors Section */
.cardio-meet-doctors {
    padding: 80px 0;
    background: #f8f9fa;
}

.cardio-doctors-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.2;
}

.cardio-doctors-highlight {
    color: #384C9F;
}

.cardio-doctors-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.cardio-doctor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 350px;
    width: 100%;
    flex: 0 1 350px;
    display: flex;
    flex-direction: column;
}

.cardio-doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.cardio-doctor-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.cardio-doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cardio-doctor-card:hover .cardio-doctor-photo {
    transform: scale(1.05);
}

.cardio-doctor-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cardio-doctor-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.cardio-doctor-specialty {
    font-size: 14px;
    color: #384C9F;
    font-weight: 500;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cardio-doctor-details {
    margin-bottom: 20px;
    flex: 1;
}

.cardio-experience, .cardio-languages {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.cardio-know-more-link {
    color: #384C9F;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.cardio-know-more-link:hover {
    color: #384C9F;
}

.cardio-btn-appointment {
    background: #FDB714;
    color: #333;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.cardio-btn-appointment:hover {
    background: #FFC61E;
    transform: translateY(-1px);
}

/* Responsive Design for Doctors Section */
@media (max-width: 1200px) {
    .cardio-doctors-grid {
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .cardio-doctors-title {
        font-size: 42px;
    }
    
    .cardio-doctors-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .cardio-meet-doctors {
        padding: 60px 0;
    }
    
    .cardio-doctors-title {
        font-size: 36px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .cardio-doctors-grid {
        gap: 20px;
    }
    
    .cardio-doctor-image {
        height: 220px;
    }
    
    .cardio-doctor-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .cardio-meet-doctors {
        padding: 40px 0;
    }
    
    .cardio-doctors-title {
        font-size: 28px;
    }
    
    .cardio-doctors-grid {
        gap: 20px;
    }
    
    .cardio-doctor-image {
        height: 240px;
    }
    
    .cardio-doctor-info {
        padding: 18px;
    }
    
    .cardio-doctor-name {
        font-size: 18px;
    }
}

/* Treatment Approach Section */
.cardio-treatment-approach {
    padding: 80px 0;
    background: #ffffff;
}

.cardio-treatment-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.cardio-treatment-highlight {
    color: #384C9F;
}

.cardio-treatment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.cardio-treatment-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.cardio-treatment-item:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cardio-treatment-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.cardio-treatment-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.cardio-treatment-item:hover .cardio-treatment-icon-img {
    transform: scale(1.1);
}

.cardio-treatment-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cardio-treatment-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Treatment Approach */
@media (max-width: 1024px) {
    .cardio-treatment-title {
        font-size: 42px;
    }
    
    .cardio-treatment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .cardio-treatment-approach {
        padding: 60px 0;
    }
    
    .cardio-treatment-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .cardio-treatment-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cardio-treatment-item {
        padding: 25px 20px;
    }
    
    .cardio-treatment-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .cardio-treatment-approach {
        padding: 40px 0;
    }
    
    .cardio-treatment-title {
        font-size: 32px;
    }
    
    .cardio-treatment-item {
        padding: 20px 15px;
    }
    
    .cardio-treatment-item-title {
        font-size: 16px;
    }
    
    .cardio-treatment-description {
        font-size: 13px;
    }
}

/* Cardiac Rehabilitation Overlay Section */
.cardio-physio-rehab-overlay {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.cardio-physio-background {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.cardio-physio-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cardio-physio-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px;
}

.cardio-physio-content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cardio-physio-overlay-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.cardio-physio-overlay-highlight {
    color: #384C9F;
}

.cardio-physio-overlay-services {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.cardio-physio-overlay-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
}

.cardio-overlay-service-icon {
    width: 20px;
    height: 20px;
    color: #384C9F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
    flex-shrink: 0;
}

.cardio-overlay-service-text {
    color: #333;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}

.cardio-physio-overlay-btn {
    display: inline-block;
    background: #FDB714;
    color: #333;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: fit-content;
}

.cardio-physio-overlay-btn:hover {
    background: #FFC61E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 183, 20, 0.3);
}

/* Responsive Design for Overlay Section */
@media (max-width: 1024px) {
    .cardio-physio-background {
        height: 450px;
    }
    
    .cardio-physio-overlay-content {
        padding: 40px;
    }
    
    .cardio-physio-content-card {
        padding: 35px;
        max-width: 350px;
    }
    
    .cardio-physio-overlay-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .cardio-physio-rehab-overlay {
        padding: 60px 0;
    }
    
    .cardio-physio-background {
        height: 400px;
        border-radius: 15px;
    }
    
    .cardio-physio-overlay-content {
        padding: 30px;
        justify-content: center;
    }
    
    .cardio-physio-content-card {
        padding: 30px;
        max-width: 320px;
    }
    
    .cardio-physio-overlay-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .cardio-physio-overlay-item {
        margin-bottom: 12px;
    }
    
    .cardio-overlay-service-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cardio-physio-rehab-overlay {
        padding: 40px 0;
    }
    
    .cardio-physio-container {
        padding: 0 15px;
    }
    
    .cardio-physio-background {
        height: 350px;
    }
    
    .cardio-physio-overlay-content {
        padding: 20px;
    }
    
    .cardio-physio-content-card {
        padding: 25px;
        max-width: 280px;
    }
    
    .cardio-physio-overlay-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .cardio-physio-overlay-item {
        margin-bottom: 10px;
    }
    
    .cardio-overlay-service-text {
        font-size: 13px;
    }
    
    .cardio-physio-overlay-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}/* Neurology Page Specific Styles */

/* Hero Section for Neurology */
.neuro-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/neurology-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.neuro-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(56, 76, 159, 0.4) 0%, 
        rgba(102, 126, 234, 0.4) 100%);
    z-index: 1;
}

.neuro-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.neuro-hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: white;
    padding: 80px 20px 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 50px;
    font-size: 14px;
    opacity: 0.9;
    padding-top: 20px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Hero Title */
/* Ensure HTML content inside neuro hero title maintains styling */
.neuro-hero-title *,
.neuro-hero-title p,
.neuro-hero-title span,
.neuro-hero-title div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-shadow: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
}

.neuro-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

/* Hero Description */
/* Ensure HTML content inside neuro hero description maintains styling */
.neuro-hero-description *,
.neuro-hero-description p,
.neuro-hero-description span,
.neuro-hero-description div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-shadow: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
    opacity: inherit;
}

.neuro-hero-description {
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 0 40px 0;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bottom Navigation - Active State Override */
.bottom-nav .bottom-nav-item.active {
    color: #FFD700;
    border-bottom: 2px solid #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .neuro-hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .neuro-hero-title {
        font-size: 38px;
    }
    
    .neuro-hero-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .neuro-hero {
        height: 70vh;
        min-height: 450px;
    }
    
    .neuro-hero-content {
        text-align: left;
        padding: 60px 20px 0 20px;
    }
    
    .neuro-hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .neuro-hero-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 90%;
    }
    
    .breadcrumb {
        font-size: 12px;
        margin-bottom: 30px;
        justify-content: flex-start;
        padding-top: 10px;
    }
}

@media (max-width: 480px) {
    .neuro-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .neuro-hero-content {
        text-align: left;
        padding: 40px 20px 0 20px;
    }
    
    .neuro-hero-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .neuro-hero-description {
        font-size: 13px;
        line-height: 1.5;
        max-width: 95%;
        margin: 0 0 30px 0;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-start;
        padding-top: 5px;
        margin-bottom: 25px;
    }
}

/* Overview Section */
.neuro-overview-section {
    padding: 80px 0;
    background: #ffffff;
}

.neuro-overview-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.neuro-overview-header {
    text-align: left;
}

.neuro-overview-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Ensure HTML content inside neuro overview description maintains styling */
.neuro-overview-description *,
.neuro-overview-description p,
.neuro-overview-description span,
.neuro-overview-description div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
}

.neuro-overview-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.neuro-consultation-title {
    font-size: 18px;
    font-weight: 600;
    color: #384C9F;
    margin-bottom: 30px;
    line-height: 1.4;
}

.neuro-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
}

.neuro-left-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.neuro-right-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

.neuro-left-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.neuro-right-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.neuro-overview-image-left, .neuro-overview-image-right {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

.neuro-conditions-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.neuro-condition-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.neuro-condition-icon {
    width: 24px;
    height: 24px;
    background: #384C9F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.neuro-condition-icon i {
    color: white;
    font-size: 12px;
}

.neuro-condition-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Overview */
@media (max-width: 1024px) {
    .neuro-overview-grid {
        gap: 40px;
    }
    
    .neuro-overview-image-left, .neuro-overview-image-right {
        width: 100%;
        height: auto;
    }
    
    .neuro-overview-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .neuro-overview-section {
        padding: 60px 0;
    }
    
    .neuro-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .neuro-left-column {
        order: 1;
    }
    
    .neuro-right-column {
        order: 2;
    }
    
    .neuro-overview-image-left, .neuro-overview-image-right {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    
    .neuro-right-image {
        justify-content: center;
    }
    
    .neuro-overview-title {
        font-size: 36px;
    }
    
    .neuro-overview-header {
        text-align: center;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .neuro-overview-section {
        padding: 40px 0;
    }
    
    .neuro-overview-title {
        font-size: 32px;
    }
    
    .neuro-overview-image-left, .neuro-overview-image-right {
        width: 100%;
        height: auto;
    }
    
    .neuro-consultation-title {
        font-size: 16px;
    }
    
    .neuro-condition-text {
        font-size: 15px;
    }
    
    .neuro-doctors-title {
        font-size: 32px;
    }
    
    .neuro-doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .neuro-doctor-image {
        height: 240px;
    }
}

/* Meet Our Doctors Section */
.neuro-meet-doctors {
    padding: 80px 0;
    background: #f8f9fa;
}

.neuro-doctors-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-align: left;
    line-height: 1.2;
}

.neuro-doctors-highlight {
    color: #384C9F;
}

.neuro-doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.neuro-doctor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.neuro-doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.neuro-doctor-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.neuro-doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.neuro-doctor-card:hover .neuro-doctor-photo {
    transform: scale(1.05);
}

.neuro-doctor-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.neuro-doctor-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.neuro-doctor-specialty {
    font-size: 14px;
    color: #384C9F;
    font-weight: 500;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.neuro-doctor-details {
    margin-bottom: 20px;
    flex: 1;
}

.neuro-experience, .neuro-languages {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.neuro-know-more-link {
    color: #384C9F;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.neuro-know-more-link:hover {
    color: #2a3f7f;
}

.neuro-btn-appointment {
    background: #FDB714;
    color: #333;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.neuro-btn-appointment:hover {
    background: #FFC61E;
    transform: translateY(-1px);
}

/* Responsive Design for Doctors Section */
@media (max-width: 1200px) {
    .neuro-doctors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .neuro-doctors-title {
        font-size: 42px;
    }
    
    .neuro-doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .neuro-meet-doctors {
        padding: 60px 0;
    }
    
    .neuro-doctors-title {
        font-size: 36px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .neuro-doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .neuro-doctor-image {
        height: 220px;
    }
    
    .neuro-doctor-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .neuro-meet-doctors {
        padding: 40px 0;
    }
    
    .neuro-doctors-title {
        font-size: 28px;
    }
    
    .neuro-doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .neuro-doctor-image {
        height: 240px;
    }
    
    .neuro-doctor-info {
        padding: 18px;
    }
    
    .neuro-doctor-name {
        font-size: 18px;
    }
}

/* Treatment Approach Section */
.neuro-treatment-approach {
    padding: 80px 0;
    background: #ffffff;
}

.neuro-treatment-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.neuro-treatment-highlight {
    color: #384C9F;
}

.neuro-treatment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.neuro-treatment-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.neuro-treatment-item:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.neuro-treatment-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.neuro-treatment-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.neuro-treatment-item:hover .neuro-treatment-icon-img {
    transform: scale(1.1);
}

.neuro-treatment-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.neuro-treatment-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Treatment Approach */
@media (max-width: 1024px) {
    .neuro-treatment-title {
        font-size: 42px;
    }
    
    .neuro-treatment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .neuro-treatment-approach {
        padding: 60px 0;
    }
    
    .neuro-treatment-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .neuro-treatment-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .neuro-treatment-item {
        padding: 25px 20px;
    }
    
    .neuro-treatment-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .neuro-treatment-approach {
        padding: 40px 0;
    }
    
    .neuro-treatment-title {
        font-size: 32px;
    }
    
    .neuro-treatment-item {
        padding: 20px 15px;
    }
    
    .neuro-treatment-item-title {
        font-size: 16px;
    }
    
    .neuro-treatment-description {
        font-size: 13px;
    }
}

/* Neurological Rehabilitation Overlay Section */
.neuro-physio-rehab-overlay {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.neuro-physio-background {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.neuro-physio-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.neuro-physio-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px;
}

.neuro-physio-content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.neuro-physio-overlay-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.neuro-physio-overlay-highlight {
    color: #384C9F;
}

.neuro-physio-overlay-services {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.neuro-physio-overlay-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
}

.neuro-overlay-service-icon {
    width: 20px;
    height: 20px;
    background: #384C9F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
    flex-shrink: 0;
}

.neuro-overlay-service-text {
    color: #333;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}

.neuro-physio-overlay-btn {
    display: inline-block;
    background: #FDB714;
    color: #333;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: fit-content;
}

.neuro-physio-overlay-btn:hover {
    background: #FFC61E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 183, 20, 0.3);
}

/* Responsive Design for Overlay Section */
@media (max-width: 1024px) {
    .neuro-physio-background {
        height: 450px;
    }
    
    .neuro-physio-overlay-content {
        padding: 40px;
    }
    
    .neuro-physio-content-card {
        padding: 35px;
        max-width: 350px;
    }
    
    .neuro-physio-overlay-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .neuro-physio-rehab-overlay {
        padding: 60px 0;
    }
    
    .neuro-physio-background {
        height: 400px;
        border-radius: 15px;
    }
    
    .neuro-physio-overlay-content {
        padding: 30px;
        justify-content: center;
    }
    
    .neuro-physio-content-card {
        padding: 30px;
        max-width: 320px;
    }
    
    .neuro-physio-overlay-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .neuro-physio-overlay-item {
        margin-bottom: 12px;
    }
    
    .neuro-overlay-service-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .neuro-physio-rehab-overlay {
        padding: 40px 0;
    }
    
    .neuro-physio-container {
        padding: 0 15px;
    }
    
    .neuro-physio-background {
        height: 350px;
    }
    
    .neuro-physio-overlay-content {
        padding: 20px;
    }
    
    .neuro-physio-content-card {
        padding: 25px;
        max-width: 280px;
    }
    
    .neuro-physio-overlay-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .neuro-physio-overlay-item {
        margin-bottom: 10px;
    }
    
    .neuro-overlay-service-text {
        font-size: 13px;
    }
    
    .neuro-physio-overlay-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}/* Pulmonology Page Specific Styles */

/* Hero Section for Pulmonology */
.pulm-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/pulmnology-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.pulm-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(46, 125, 50, 0.3) 0%, 
        rgba(76, 175, 80, 0.3) 100%);
    z-index: 1;
}

.pulm-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.pulm-hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: white;
    padding: 80px 20px 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 50px;
    font-size: 14px;
    opacity: 0.9;
    padding-top: 20px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Hero Title */
/* Ensure HTML content inside pulm hero title maintains styling */
.pulm-hero-title *,
.pulm-hero-title p,
.pulm-hero-title span,
.pulm-hero-title div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-shadow: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
}

.pulm-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

/* Hero Description */
/* Ensure HTML content inside pulm hero description maintains styling */
.pulm-hero-description *,
.pulm-hero-description p,
.pulm-hero-description span,
.pulm-hero-description div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-shadow: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
    opacity: inherit;
}

.pulm-hero-description {
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 0 40px 0;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bottom Navigation - Active State Override */
.bottom-nav .bottom-nav-item.active {
    color: #FFD700;
    border-bottom: 2px solid #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pulm-hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .pulm-hero-title {
        font-size: 38px;
    }
    
    .pulm-hero-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .pulm-hero {
        height: 70vh;
        min-height: 450px;
    }
    
    .pulm-hero-content {
        text-align: left;
        padding: 60px 20px 0 20px;
    }
    
    .pulm-hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .pulm-hero-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 90%;
    }
    
    .breadcrumb {
        font-size: 12px;
        margin-bottom: 30px;
        justify-content: flex-start;
        padding-top: 10px;
    }
}

@media (max-width: 480px) {
    .pulm-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .pulm-hero-content {
        text-align: left;
        padding: 40px 20px 0 20px;
    }
    
    .pulm-hero-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .pulm-hero-description {
        font-size: 13px;
        line-height: 1.5;
        max-width: 95%;
        margin: 0 0 30px 0;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-start;
        padding-top: 5px;
        margin-bottom: 25px;
    }
}

/* Overview Section */
.pulm-overview-section {
    padding: 80px 0;
    background: #ffffff;
}

.pulm-overview-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pulm-overview-header {
    text-align: left;
}

.pulm-overview-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Ensure HTML content inside pulm overview description maintains styling */
.pulm-overview-description *,
.pulm-overview-description p,
.pulm-overview-description span,
.pulm-overview-description div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
}

.pulm-overview-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.pulm-consultation-title {
    font-size: 18px;
    font-weight: 600;
    color: #384C9F;
    margin-bottom: 30px;
    line-height: 1.4;
}

.pulm-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
}

.pulm-left-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pulm-right-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

.pulm-left-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.pulm-right-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pulm-overview-image-left, .pulm-overview-image-right {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

.pulm-conditions-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pulm-condition-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.pulm-condition-icon {
    width: 24px;
    height: 24px;
    color: #384C9F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.pulm-condition-icon i {
    color: white;
    font-size: 12px;
}

.pulm-condition-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Overview */
@media (max-width: 1024px) {
    .pulm-overview-grid {
        gap: 40px;
    }
    
    .pulm-overview-image-left, .pulm-overview-image-right {
        width: 100%;
        height: auto;
    }
    
    .pulm-overview-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .pulm-overview-section {
        padding: 60px 0;
    }
    
    .pulm-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pulm-left-column {
        order: 1;
    }
    
    .pulm-right-column {
        order: 2;
    }
    
    .pulm-overview-image-left, .pulm-overview-image-right {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    
    .pulm-right-image {
        justify-content: center;
    }
    
    .pulm-overview-title {
        font-size: 36px;
    }
    
    .pulm-overview-header {
        text-align: center;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .pulm-overview-section {
        padding: 40px 0;
    }
    
    .pulm-overview-title {
        font-size: 32px;
    }
    
    .pulm-overview-image-left, .pulm-overview-image-right {
        width: 100%;
        height: auto;
    }
    
    .pulm-consultation-title {
        font-size: 16px;
    }
    
    .pulm-condition-text {
        font-size: 15px;
    }
    
    .pulm-doctors-title {
        font-size: 32px;
    }
    
    .pulm-doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pulm-doctor-image {
        height: 240px;
    }
}

/* Meet Our Doctors Section */
.pulm-meet-doctors {
    padding: 80px 0;
    background: #f8f9fa;
}

.pulm-doctors-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-align: left;
    line-height: 1.2;
}

.pulm-doctors-highlight {
    color: #384C9F;
}

.pulm-doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pulm-doctor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pulm-doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pulm-doctor-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.pulm-doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pulm-doctor-card:hover .pulm-doctor-photo {
    transform: scale(1.05);
}

.pulm-doctor-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pulm-doctor-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.pulm-doctor-specialty {
    font-size: 14px;
    color: #384C9F;
    font-weight: 500;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pulm-doctor-details {
    margin-bottom: 20px;
    flex: 1;
}

.pulm-experience, .pulm-languages {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.pulm-know-more-link {
    color: #384C9F;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.pulm-know-more-link:hover {
    color: #384C9F;
}

.pulm-btn-appointment {
    background: #FDB714;
    color: #333;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.pulm-btn-appointment:hover {
    background: #FFC61E;
    transform: translateY(-1px);
}

/* Responsive Design for Doctors Section */
@media (max-width: 1200px) {
    .pulm-doctors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .pulm-doctors-title {
        font-size: 42px;
    }
    
    .pulm-doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .pulm-meet-doctors {
        padding: 60px 0;
    }
    
    .pulm-doctors-title {
        font-size: 36px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .pulm-doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pulm-doctor-image {
        height: 220px;
    }
    
    .pulm-doctor-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .pulm-meet-doctors {
        padding: 40px 0;
    }
    
    .pulm-doctors-title {
        font-size: 28px;
    }
    
    .pulm-doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pulm-doctor-image {
        height: 240px;
    }
    
    .pulm-doctor-info {
        padding: 18px;
    }
    
    .pulm-doctor-name {
        font-size: 18px;
    }
}

/* Treatment Approach Section */
.pulm-treatment-approach {
    padding: 80px 0;
    background: #ffffff;
}

.pulm-treatment-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.pulm-treatment-highlight {
    color: #384C9F;
}

.pulm-treatment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pulm-treatment-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.pulm-treatment-item:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pulm-treatment-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.pulm-treatment-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.pulm-treatment-item:hover .pulm-treatment-icon-img {
    transform: scale(1.1);
}

.pulm-treatment-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.pulm-treatment-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Treatment Approach */
@media (max-width: 1024px) {
    .pulm-treatment-title {
        font-size: 42px;
    }
    
    .pulm-treatment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .pulm-treatment-approach {
        padding: 60px 0;
    }
    
    .pulm-treatment-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .pulm-treatment-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pulm-treatment-item {
        padding: 25px 20px;
    }
    
    .pulm-treatment-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .pulm-treatment-approach {
        padding: 40px 0;
    }
    
    .pulm-treatment-title {
        font-size: 32px;
    }
    
    .pulm-treatment-item {
        padding: 20px 15px;
    }
    
    .pulm-treatment-item-title {
        font-size: 16px;
    }
    
    .pulm-treatment-description {
        font-size: 13px;
    }
}

/* Pulmonary Rehabilitation Overlay Section */
.pulm-physio-rehab-overlay {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.pulm-physio-background {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.pulm-physio-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pulm-physio-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px;
}

.pulm-physio-content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pulm-physio-overlay-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.pulm-physio-overlay-highlight {
    color: #384C9F;
}

.pulm-physio-overlay-services {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pulm-physio-overlay-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
}

.pulm-overlay-service-icon {
    width: 20px;
    height: 20px;
    color: #384C9F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
    flex-shrink: 0;
}

.pulm-overlay-service-text {
    color: #333;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}

.pulm-physio-overlay-btn {
    display: inline-block;
    background: #FDB714;
    color: #333;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: fit-content;
}

.pulm-physio-overlay-btn:hover {
    background: #FFC61E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 183, 20, 0.3);
}

/* Responsive Design for Overlay Section */
@media (max-width: 1024px) {
    .pulm-physio-background {
        height: 450px;
    }
    
    .pulm-physio-overlay-content {
        padding: 40px;
    }
    
    .pulm-physio-content-card {
        padding: 35px;
        max-width: 350px;
    }
    
    .pulm-physio-overlay-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .pulm-physio-rehab-overlay {
        padding: 60px 0;
    }
    
    .pulm-physio-background {
        height: 400px;
        border-radius: 15px;
    }
    
    .pulm-physio-overlay-content {
        padding: 30px;
        justify-content: center;
    }
    
    .pulm-physio-content-card {
        padding: 30px;
        max-width: 320px;
    }
    
    .pulm-physio-overlay-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .pulm-physio-overlay-item {
        margin-bottom: 12px;
    }
    
    .pulm-overlay-service-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pulm-physio-rehab-overlay {
        padding: 40px 0;
    }
    
    .pulm-physio-container {
        padding: 0 15px;
    }
    
    .pulm-physio-background {
        height: 350px;
    }
    
    .pulm-physio-overlay-content {
        padding: 20px;
    }
    
    .pulm-physio-content-card {
        padding: 25px;
        max-width: 280px;
    }
    
    .pulm-physio-overlay-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .pulm-physio-overlay-item {
        margin-bottom: 10px;
    }
    
    .pulm-overlay-service-text {
        font-size: 13px;
    }
    
    .pulm-physio-overlay-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}/* Nephrology Page Specific Styles */

/* Hero Section for Nephrology */
.neph-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/nephrology-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.neph-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(33, 150, 243, 0.3) 0%, 
        rgba(63, 81, 181, 0.3) 100%);
    z-index: 1;
}

.neph-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.neph-hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: white;
    padding: 80px 20px 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 50px;
    font-size: 14px;
    opacity: 0.9;
    padding-top: 20px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Hero Title */
/* Ensure HTML content inside neph hero title maintains styling */
.neph-hero-title *,
.neph-hero-title p,
.neph-hero-title span,
.neph-hero-title div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-shadow: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
}

.neph-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

/* Hero Description */
/* Ensure HTML content inside neph hero description maintains styling */
.neph-hero-description *,
.neph-hero-description p,
.neph-hero-description span,
.neph-hero-description div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-shadow: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
    opacity: inherit;
}

.neph-hero-description {
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 0 40px 0;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bottom Navigation - Active State Override */
.bottom-nav .bottom-nav-item.active {
    color: #FFD700;
    border-bottom: 2px solid #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .neph-hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .neph-hero-title {
        font-size: 38px;
    }
    
    .neph-hero-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .neph-hero {
        height: 70vh;
        min-height: 450px;
    }
    
    .neph-hero-content {
        text-align: left;
        padding: 60px 20px 0 20px;
    }
    
    .neph-hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .neph-hero-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 90%;
    }
    
    .breadcrumb {
        font-size: 12px;
        margin-bottom: 30px;
        justify-content: flex-start;
        padding-top: 10px;
    }
}

@media (max-width: 480px) {
    .neph-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .neph-hero-content {
        text-align: left;
        padding: 40px 20px 0 20px;
    }
    
    .neph-hero-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .neph-hero-description {
        font-size: 13px;
        line-height: 1.5;
        max-width: 95%;
        margin: 0 0 30px 0;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-start;
        padding-top: 5px;
        margin-bottom: 25px;
    }
}

/* Overview Section */
.neph-overview-section {
    padding: 80px 0;
    background: #ffffff;
}

.neph-overview-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.neph-overview-header {
    text-align: left;
}

.neph-overview-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Ensure HTML content inside neph overview description maintains styling */
.neph-overview-description *,
.neph-overview-description p,
.neph-overview-description span,
.neph-overview-description div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
}

.neph-overview-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.neph-consultation-title {
    font-size: 18px;
    font-weight: 600;
    color: #384C9F;
    margin-bottom: 30px;
    line-height: 1.4;
}

.neph-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
}

.neph-left-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.neph-right-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

.neph-left-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.neph-right-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.neph-overview-image-left, .neph-overview-image-right {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

.neph-conditions-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.neph-condition-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.neph-condition-icon {
    width: 24px;
    height: 24px;
    color: #384C9F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.neph-condition-icon i {
    color: #384C9F;
    font-size: 12px;
}

.neph-condition-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Overview */
@media (max-width: 1024px) {
    .neph-overview-grid {
        gap: 40px;
    }
    
    .neph-overview-image-left, .neph-overview-image-right {
        width: 100%;
        height: auto;
    }
    
    .neph-overview-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .neph-overview-section {
        padding: 60px 0;
    }
    
    .neph-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .neph-left-column {
        order: 1;
    }
    
    .neph-right-column {
        order: 2;
    }
    
    .neph-overview-image-left, .neph-overview-image-right {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    
    .neph-right-image {
        justify-content: center;
    }
    
    .neph-overview-title {
        font-size: 36px;
    }
    
    .neph-overview-header {
        text-align: center;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .neph-overview-section {
        padding: 40px 0;
    }
    
    .neph-overview-title {
        font-size: 32px;
    }
    
    .neph-overview-image-left, .neph-overview-image-right {
        width: 100%;
        height: auto;
    }
    
    .neph-consultation-title {
        font-size: 16px;
    }
    
    .neph-condition-text {
        font-size: 15px;
    }
    
    .neph-doctors-title {
        font-size: 32px;
    }
    
    .neph-doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .neph-doctor-image {
        height: 240px;
    }
}

/* Meet Our Doctors Section */
.neph-meet-doctors {
    padding: 80px 0;
    background: #f8f9fa;
}

.neph-doctors-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-align: left;
    line-height: 1.2;
}

.neph-doctors-highlight {
    color: #384C9F;
}

.neph-doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.neph-doctor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.neph-doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.neph-doctor-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.neph-doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.neph-doctor-card:hover .neph-doctor-photo {
    transform: scale(1.05);
}

.neph-doctor-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.neph-doctor-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.neph-doctor-specialty {
    font-size: 14px;
    color: #384C9F;
    font-weight: 500;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.neph-doctor-details {
    margin-bottom: 20px;
    flex: 1;
}

.neph-experience, .neph-languages {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.neph-know-more-link {
    color: #384C9F;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.neph-know-more-link:hover {
    color: #384C9F;
}

.neph-btn-appointment {
    background: #FDB714;
    color: #333;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.neph-btn-appointment:hover {
    background: #FFC61E;
    transform: translateY(-1px);
}

/* Responsive Design for Doctors Section */
@media (max-width: 1200px) {
    .neph-doctors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .neph-doctors-title {
        font-size: 42px;
    }
    
    .neph-doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .neph-meet-doctors {
        padding: 60px 0;
    }
    
    .neph-doctors-title {
        font-size: 36px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .neph-doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .neph-doctor-image {
        height: 220px;
    }
    
    .neph-doctor-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .neph-meet-doctors {
        padding: 40px 0;
    }
    
    .neph-doctors-title {
        font-size: 28px;
    }
    
    .neph-doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .neph-doctor-image {
        height: 240px;
    }
    
    .neph-doctor-info {
        padding: 18px;
    }
    
    .neph-doctor-name {
        font-size: 18px;
    }
}

/* Treatment Approach Section */
.neph-treatment-approach {
    padding: 80px 0;
    background: #ffffff;
}

.neph-treatment-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.neph-treatment-highlight {
    color: #384C9F;
}

.neph-treatment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.neph-treatment-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.neph-treatment-item:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.neph-treatment-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.neph-treatment-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.neph-treatment-item:hover .neph-treatment-icon-img {
    transform: scale(1.1);
}

.neph-treatment-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.neph-treatment-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Treatment Approach */
@media (max-width: 1024px) {
    .neph-treatment-title {
        font-size: 42px;
    }
    
    .neph-treatment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .neph-treatment-approach {
        padding: 60px 0;
    }
    
    .neph-treatment-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .neph-treatment-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .neph-treatment-item {
        padding: 25px 20px;
    }
    
    .neph-treatment-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .neph-treatment-approach {
        padding: 40px 0;
    }
    
    .neph-treatment-title {
        font-size: 32px;
    }
    
    .neph-treatment-item {
        padding: 20px 15px;
    }
    
    .neph-treatment-item-title {
        font-size: 16px;
    }
    
    .neph-treatment-description {
        font-size: 13px;
    }
}

/* Nephrology Rehabilitation Overlay Section */
.neph-physio-rehab-overlay {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.neph-physio-background {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.neph-physio-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.neph-physio-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px;
}

.neph-physio-content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.neph-physio-overlay-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.neph-physio-overlay-highlight {
    color: #384C9F;
}

.neph-physio-overlay-services {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.neph-physio-overlay-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
}

.neph-overlay-service-icon {
    width: 20px;
    height: 20px;
    color: #384C9F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
    flex-shrink: 0;
}

.neph-overlay-service-text {
    color: #333;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}

.neph-physio-overlay-btn {
    display: inline-block;
    background: #FDB714;
    color: #333;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: fit-content;
}

.neph-physio-overlay-btn:hover {
    background: #FFC61E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 183, 20, 0.3);
}

/* Responsive Design for Overlay Section */
@media (max-width: 1024px) {
    .neph-physio-background {
        height: 450px;
    }
    
    .neph-physio-overlay-content {
        padding: 40px;
    }
    
    .neph-physio-content-card {
        padding: 35px;
        max-width: 350px;
    }
    
    .neph-physio-overlay-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .neph-physio-rehab-overlay {
        padding: 60px 0;
    }
    
    .neph-physio-background {
        height: 400px;
        border-radius: 15px;
    }
    
    .neph-physio-overlay-content {
        padding: 30px;
        justify-content: center;
    }
    
    .neph-physio-content-card {
        padding: 30px;
        max-width: 320px;
    }
    
    .neph-physio-overlay-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .neph-physio-overlay-item {
        margin-bottom: 12px;
    }
    
    .neph-overlay-service-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .neph-physio-rehab-overlay {
        padding: 40px 0;
    }
    
    .neph-physio-container {
        padding: 0 15px;
    }
    
    .neph-physio-background {
        height: 350px;
    }
    
    .neph-physio-overlay-content {
        padding: 20px;
    }
    
    .neph-physio-content-card {
        padding: 25px;
        max-width: 280px;
    }
    
    .neph-physio-overlay-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .neph-physio-overlay-item {
        margin-bottom: 10px;
    }
    
    .neph-overlay-service-text {
        font-size: 13px;
    }
    
    .neph-physio-overlay-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}/* Orthopedics & Sports Injury Page Specific Styles */

/* Hero Section for Orthopedics */
.ortho-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/sports-ingury-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.ortho-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(33, 150, 243, 0.3) 0%, 
        rgba(63, 81, 181, 0.3) 100%);
    z-index: 1;
}

.ortho-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.ortho-hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: white;
    padding: 80px 20px 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 50px;
    font-size: 14px;
    opacity: 0.9;
    padding-top: 20px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Hero Title */
/* Ensure HTML content inside ortho hero title maintains styling */
.ortho-hero-title *,
.ortho-hero-title p,
.ortho-hero-title span,
.ortho-hero-title div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-shadow: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
}

.ortho-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

/* Hero Description */
/* Ensure HTML content inside ortho hero description maintains styling */
.ortho-hero-description *,
.ortho-hero-description p,
.ortho-hero-description span,
.ortho-hero-description div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-shadow: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
    opacity: inherit;
}

.ortho-hero-description {
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 0 40px 0;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bottom Navigation - Active State Override */
.bottom-nav .bottom-nav-item.active {
    color: #FFD700;
    border-bottom: 2px solid #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ortho-hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .ortho-hero-title {
        font-size: 38px;
    }
    
    .ortho-hero-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .ortho-hero {
        height: 70vh;
        min-height: 450px;
    }
    
    .ortho-hero-content {
        text-align: left;
        padding: 60px 20px 0 20px;
    }
    
    .ortho-hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .ortho-hero-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 90%;
    }
    
    .breadcrumb {
        font-size: 12px;
        margin-bottom: 30px;
        justify-content: flex-start;
        padding-top: 10px;
    }
}

@media (max-width: 480px) {
    .ortho-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .ortho-hero-content {
        text-align: left;
        padding: 40px 20px 0 20px;
    }
    
    .ortho-hero-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .ortho-hero-description {
        font-size: 13px;
        line-height: 1.5;
        max-width: 95%;
        margin: 0 0 30px 0;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-start;
        padding-top: 5px;
        margin-bottom: 25px;
    }
}

/* Overview Section */
.ortho-overview-section {
    padding: 80px 0;
    background: #ffffff;
}

.ortho-overview-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ortho-overview-header {
    text-align: left;
}

.ortho-overview-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Ensure HTML content inside ortho overview description maintains styling */
.ortho-overview-description *,
.ortho-overview-description p,
.ortho-overview-description span,
.ortho-overview-description div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
}

.ortho-overview-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.ortho-consultation-title {
    font-size: 18px;
    font-weight: 600;
    color: #384C9F;
    margin-bottom: 30px;
    line-height: 1.4;
}

.ortho-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
}

.ortho-left-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ortho-right-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

.ortho-left-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.ortho-right-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ortho-overview-image-left, .ortho-overview-image-right {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

.ortho-conditions-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ortho-condition-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.ortho-condition-icon {
    width: 24px;
    height: 24px;
    color: #384C9F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.ortho-condition-icon i {
    color: #384C9F;
    font-size: 12px;
}

.ortho-condition-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Overview */
@media (max-width: 1024px) {
    .ortho-overview-grid {
        gap: 40px;
    }
    
    .ortho-overview-image-left, .ortho-overview-image-right {
        width: 100%;
        height: auto;
    }
    
    .ortho-overview-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .ortho-overview-section {
        padding: 60px 0;
    }
    
    .ortho-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ortho-left-column {
        order: 1;
    }
    
    .ortho-right-column {
        order: 2;
    }
    
    .ortho-overview-image-left, .ortho-overview-image-right {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    
    .ortho-right-image {
        justify-content: center;
    }
    
    .ortho-overview-title {
        font-size: 36px;
    }
    
    .ortho-overview-header {
        text-align: center;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .ortho-overview-section {
        padding: 40px 0;
    }
    
    .ortho-overview-title {
        font-size: 32px;
    }
    
    .ortho-overview-image-left, .ortho-overview-image-right {
        width: 100%;
        height: auto;
    }
    
    .ortho-consultation-title {
        font-size: 16px;
    }
    
    .ortho-condition-text {
        font-size: 15px;
    }
    
    .ortho-doctors-title {
        font-size: 32px;
    }
    
    .ortho-doctors-grid {
        gap: 20px;
    }
    
    .ortho-doctor-image {
        height: 240px;
    }
}

/* Meet Our Doctors Section */
.ortho-meet-doctors {
    padding: 80px 0;
    background: #f8f9fa;
}

.ortho-doctors-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.2;
}

.ortho-doctors-highlight {
    color: #384C9F;
}

.ortho-doctors-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ortho-doctor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    max-width: 350px;
    width: 100%;
    flex: 0 1 350px;
}

.ortho-doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.ortho-doctor-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.ortho-doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ortho-doctor-card:hover .ortho-doctor-photo {
    transform: scale(1.05);
}

.ortho-doctor-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ortho-doctor-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.ortho-doctor-specialty {
    font-size: 14px;
    color: #384C9F;
    font-weight: 500;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ortho-doctor-details {
    margin-bottom: 20px;
    flex: 1;
}

.ortho-experience, .ortho-languages {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.ortho-know-more-link {
    color: #384C9F;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.ortho-know-more-link:hover {
    color: #384C9F;
}

.ortho-btn-appointment {
    background: #FDB714;
    color: #333;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.ortho-btn-appointment:hover {
    background: #FFC61E;
    transform: translateY(-1px);
}

/* Responsive Design for Doctors Section */
@media (max-width: 1200px) {
    .ortho-doctors-grid {
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .ortho-doctors-title {
        font-size: 42px;
    }
    
    .ortho-doctors-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .ortho-meet-doctors {
        padding: 60px 0;
    }
    
    .ortho-doctors-title {
        font-size: 36px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .ortho-doctors-grid {
        gap: 20px;
    }
    
    .ortho-doctor-image {
        height: 220px;
    }
    
    .ortho-doctor-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .ortho-meet-doctors {
        padding: 40px 0;
    }
    
    .ortho-doctors-title {
        font-size: 28px;
    }
    
    .ortho-doctors-grid {
        gap: 20px;
    }
    
    .ortho-doctor-image {
        height: 240px;
    }
    
    .ortho-doctor-info {
        padding: 18px;
    }
    
    .ortho-doctor-name {
        font-size: 18px;
    }
}

/* Treatment Approach Section */
.ortho-treatment-approach {
    padding: 80px 0;
    background: #ffffff;
}

.ortho-treatment-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.ortho-treatment-highlight {
    color: #384C9F;
}

.ortho-treatment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.ortho-treatment-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.ortho-treatment-item:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ortho-treatment-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.ortho-treatment-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.ortho-treatment-item:hover .ortho-treatment-icon-img {
    transform: scale(1.1);
}

.ortho-treatment-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.ortho-treatment-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Treatment Approach */
@media (max-width: 1024px) {
    .ortho-treatment-title {
        font-size: 42px;
    }
    
    .ortho-treatment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .ortho-treatment-approach {
        padding: 60px 0;
    }
    
    .ortho-treatment-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .ortho-treatment-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .ortho-treatment-item {
        padding: 25px 20px;
    }
    
    .ortho-treatment-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .ortho-treatment-approach {
        padding: 40px 0;
    }
    
    .ortho-treatment-title {
        font-size: 32px;
    }
    
    .ortho-treatment-item {
        padding: 20px 15px;
    }
    
    .ortho-treatment-item-title {
        font-size: 16px;
    }
    
    .ortho-treatment-description {
        font-size: 13px;
    }
}

/* Orthopedics Rehabilitation Overlay Section */
.ortho-physio-rehab-overlay {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.ortho-physio-background {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.ortho-physio-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ortho-physio-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px;
}

.ortho-physio-content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ortho-physio-overlay-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.ortho-physio-overlay-highlight {
    color: #384C9F;
}

.ortho-physio-overlay-services {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.ortho-physio-overlay-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
}

.ortho-overlay-service-icon {
    width: 20px;
    height: 20px;
    color: #384C9F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
    flex-shrink: 0;
}

.ortho-overlay-service-text {
    color: #333;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}

.ortho-physio-overlay-btn {
    display: inline-block;
    background: #FDB714;
    color: #333;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: fit-content;
}

.ortho-physio-overlay-btn:hover {
    background: #FFC61E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 183, 20, 0.3);
}

/* Responsive Design for Overlay Section */
@media (max-width: 1024px) {
    .ortho-physio-background {
        height: 450px;
    }
    
    .ortho-physio-overlay-content {
        padding: 40px;
    }
    
    .ortho-physio-content-card {
        padding: 35px;
        max-width: 350px;
    }
    
    .ortho-physio-overlay-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .ortho-physio-rehab-overlay {
        padding: 60px 0;
    }
    
    .ortho-physio-background {
        height: 400px;
        border-radius: 15px;
    }
    
    .ortho-physio-overlay-content {
        padding: 30px;
        justify-content: center;
    }
    
    .ortho-physio-content-card {
        padding: 30px;
        max-width: 320px;
    }
    
    .ortho-physio-overlay-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .ortho-physio-overlay-item {
        margin-bottom: 12px;
    }
    
    .ortho-overlay-service-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .ortho-physio-rehab-overlay {
        padding: 40px 0;
    }
    
    .ortho-physio-container {
        padding: 0 15px;
    }
    
    .ortho-physio-background {
        height: 350px;
    }
    
    .ortho-physio-overlay-content {
        padding: 20px;
    }
    
    .ortho-physio-content-card {
        padding: 25px;
        max-width: 280px;
    }
    
    .ortho-physio-overlay-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .ortho-physio-overlay-item {
        margin-bottom: 10px;
    }
    
    .ortho-overlay-service-text {
        font-size: 13px;
    }
    
    .ortho-physio-overlay-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}/* Gynecology Page Specific Styles */

/* Hero Section for Gynecology */
.gyn-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/gynecology-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.gyn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(33, 150, 243, 0.3) 0%, 
        rgba(63, 81, 181, 0.3) 100%);
    z-index: 1;
}

.gyn-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.gyn-hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: white;
    padding: 80px 20px 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 50px;
    font-size: 14px;
    opacity: 0.9;
    padding-top: 20px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Hero Title */
/* Ensure HTML content inside gyn hero title maintains styling */
.gyn-hero-title *,
.gyn-hero-title p,
.gyn-hero-title span,
.gyn-hero-title div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-shadow: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
}

.gyn-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

/* Hero Description */
/* Ensure HTML content inside gyn hero description maintains styling */
.gyn-hero-description *,
.gyn-hero-description p,
.gyn-hero-description span,
.gyn-hero-description div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-shadow: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
    opacity: inherit;
}

.gyn-hero-description {
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 0 40px 0;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bottom Navigation - Active State Override */
.bottom-nav .bottom-nav-item.active {
    color: #FFD700;
    border-bottom: 2px solid #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gyn-hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .gyn-hero-title {
        font-size: 38px;
    }
    
    .gyn-hero-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .gyn-hero {
        height: 70vh;
        min-height: 450px;
    }
    
    .gyn-hero-content {
        text-align: left;
        padding: 60px 20px 0 20px;
    }
    
    .gyn-hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .gyn-hero-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 90%;
    }
    
    .breadcrumb {
        font-size: 12px;
        margin-bottom: 30px;
        justify-content: flex-start;
        padding-top: 10px;
    }
}

@media (max-width: 480px) {
    .gyn-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .gyn-hero-content {
        text-align: left;
        padding: 40px 20px 0 20px;
    }
    
    .gyn-hero-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .gyn-hero-description {
        font-size: 13px;
        line-height: 1.5;
        max-width: 95%;
        margin: 0 0 30px 0;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-start;
        padding-top: 5px;
        margin-bottom: 25px;
    }
}

/* Overview Section */
.gyn-overview-section {
    padding: 80px 0;
    background: #ffffff;
}

.gyn-overview-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gyn-overview-header {
    text-align: left;
}

.gyn-overview-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Ensure HTML content inside gyn overview description maintains styling */
.gyn-overview-description *,
.gyn-overview-description p,
.gyn-overview-description span,
.gyn-overview-description div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
}

.gyn-overview-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.gyn-consultation-title {
    font-size: 18px;
    font-weight: 600;
    color: #384C9F;
    margin-bottom: 30px;
    line-height: 1.4;
}

.gyn-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
}

.gyn-left-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gyn-right-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

.gyn-left-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.gyn-right-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gyn-overview-image-left, .gyn-overview-image-right {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

.gyn-conditions-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.gyn-condition-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.gyn-condition-icon {
    width: 24px;
    height: 24px;
    color: #384C9F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.gyn-condition-icon i {
    color: #384C9F;
    font-size: 12px;
}

.gyn-condition-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Overview */
@media (max-width: 1024px) {
    .gyn-overview-grid {
        gap: 40px;
    }
    
    .gyn-overview-image-left, .gyn-overview-image-right {
        width: 100%;
        height: auto;
    }
    
    .gyn-overview-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .gyn-overview-section {
        padding: 60px 0;
    }
    
    .gyn-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gyn-left-column {
        order: 1;
    }
    
    .gyn-right-column {
        order: 2;
    }
    
    .gyn-overview-image-left, .gyn-overview-image-right {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    
    .gyn-right-image {
        justify-content: center;
    }
    
    .gyn-overview-title {
        font-size: 36px;
    }
    
    .gyn-overview-header {
        text-align: center;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .gyn-overview-section {
        padding: 40px 0;
    }
    
    .gyn-overview-title {
        font-size: 32px;
    }
    
    .gyn-overview-image-left, .gyn-overview-image-right {
        width: 100%;
        height: auto;
    }
    
    .gyn-consultation-title {
        font-size: 16px;
    }
    
    .gyn-condition-text {
        font-size: 15px;
    }
    
    .gyn-doctors-title {
        font-size: 32px;
    }
    
    .gyn-doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gyn-doctor-image {
        height: 240px;
    }
}

/* Meet Our Doctors Section */
.gyn-meet-doctors {
    padding: 80px 0;
    background: #f8f9fa;
}

.gyn-doctors-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-align: left;
    line-height: 1.2;
}

.gyn-doctors-highlight {
    color: #384C9F;
}

.gyn-doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.gyn-doctor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.gyn-doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gyn-doctor-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.gyn-doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gyn-doctor-card:hover .gyn-doctor-photo {
    transform: scale(1.05);
}

.gyn-doctor-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gyn-doctor-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.gyn-doctor-specialty {
    font-size: 14px;
    color: #384C9F;
    font-weight: 500;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gyn-doctor-details {
    margin-bottom: 20px;
    flex: 1;
}

.gyn-experience, .gyn-languages {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.gyn-know-more-link {
    color: #384C9F;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.gyn-know-more-link:hover {
    color: #384C9F;
}

.gyn-btn-appointment {
    background: #FDB714;
    color: #333;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.gyn-btn-appointment:hover {
    background: #FFC61E;
    transform: translateY(-1px);
}

/* Responsive Design for Doctors Section */
@media (max-width: 1200px) {
    .gyn-doctors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .gyn-doctors-title {
        font-size: 42px;
    }
    
    .gyn-doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .gyn-meet-doctors {
        padding: 60px 0;
    }
    
    .gyn-doctors-title {
        font-size: 36px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .gyn-doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gyn-doctor-image {
        height: 220px;
    }
    
    .gyn-doctor-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .gyn-meet-doctors {
        padding: 40px 0;
    }
    
    .gyn-doctors-title {
        font-size: 28px;
    }
    
    .gyn-doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gyn-doctor-image {
        height: 240px;
    }
    
    .gyn-doctor-info {
        padding: 18px;
    }
    
    .gyn-doctor-name {
        font-size: 18px;
    }
}

/* Gynecology Doctors Section - Center single doctor */
.gyn-doctors-section .doctors-title {
    text-align: center;
}

.gyn-doctors-section .doctors-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gyn-doctors-section .doctor-card {
    max-width: 350px;
    width: 100%;
    flex: 0 1 350px;
}

/* Gastroenterology Doctors Section - Center single doctor */
.gastro-doctors-section .doctors-title {
    text-align: center;
}

.gastro-doctors-section .doctors-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gastro-doctors-section .doctor-card {
    max-width: 350px;
    width: 100%;
    flex: 0 1 350px;
}

/* Pediatrics Doctors Section - Center single doctor */
.ped-doctors-section .doctors-title {
    text-align: center;
}

.ped-doctors-section .doctors-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ped-doctors-section .doctor-card {
    max-width: 350px;
    width: 100%;
    flex: 0 1 350px;
}

/* Dental Care Doctors Section - Center single doctor */
.dental-doctors-section .doctors-title {
    text-align: center;
}

.dental-doctors-section .doctors-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.dental-doctors-section .doctor-card {
    max-width: 350px;
    width: 100%;
    flex: 0 1 350px;
}

/* Neuro Rehabilitation Specialists Section - Center single doctor */
.neuro-specialists-section .doctors-title {
    text-align: center;
}

.neuro-specialists-section .doctors-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.neuro-specialists-section .doctor-card {
    max-width: 350px;
    width: 100%;
    flex: 0 1 350px;
}
/* Cardiac Rehabilitation Specialists Section */
.cardiac-specialists-section .doctors-title {
    text-align: center;
}
.cardiac-specialists-section .doctors-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.cardiac-specialists-section .doctor-card {
    max-width: 350px;
    width: 100%;
    flex: 0 1 350px;
}
/* Pulmonary Rehabilitation Specialists Section */
.pulmonary-specialists-section .doctors-title {
    text-align: center;
}
.pulmonary-specialists-section .doctors-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.pulmonary-specialists-section .doctor-card {
    max-width: 350px;
    width: 100%;
    flex: 0 1 350px;
}
/* Renal Rehabilitation Specialists Section */
.renal-specialists-section .doctors-title {
    text-align: center;
}
.renal-specialists-section .doctors-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.renal-specialists-section .doctor-card {
    max-width: 350px;
    width: 100%;
    flex: 0 1 350px;
}
/* Orthopedic Rehabilitation Specialists Section */
.orthopedic-specialists-section .doctors-title {
    text-align: center;
}
.orthopedic-specialists-section .doctors-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.orthopedic-specialists-section .doctor-card {
    max-width: 350px;
    width: 100%;
    flex: 0 1 350px;
}
/* Pediatrics Rehabilitation Specialists Section */
.pediatric-specialists-section .doctors-title {
    text-align: center;
}
.pediatric-specialists-section .doctors-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.pediatric-specialists-section .doctor-card {
    max-width: 350px;
    width: 100%;
    flex: 0 1 350px;
}
/* Cancer Rehabilitation Specialists Section */
.cancer-specialists-section .doctors-title {
    text-align: center;
}
.cancer-specialists-section .doctors-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.cancer-specialists-section .doctor-card {
    max-width: 350px;
    width: 100%;
    flex: 0 1 350px;
}
/* Geriatrics Rehabilitation Specialists Section */
.geriatrics-specialists-section .doctors-title {
    text-align: center;
}
.geriatrics-specialists-section .doctors-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.geriatrics-specialists-section .doctor-card {
    max-width: 350px;
    width: 100%;
    flex: 0 1 350px;
}
/* Women's Healthcare Rehabilitation Specialists Section */
.women-specialists-section .doctors-title {
    text-align: center;
}
.women-specialists-section .doctors-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.women-specialists-section .doctor-card {
    max-width: 350px;
    width: 100%;
    flex: 0 1 350px;
}

/* Treatment Approach Section */
.gyn-treatment-approach {
    padding: 80px 0;
    background: #ffffff;
}

.gyn-treatment-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.gyn-treatment-highlight {
    color: #384C9F;
}

.gyn-treatment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.gyn-treatment-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.gyn-treatment-item:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gyn-treatment-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.gyn-treatment-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.gyn-treatment-item:hover .gyn-treatment-icon-img {
    transform: scale(1.1);
}

.gyn-treatment-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.gyn-treatment-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Treatment Approach */
@media (max-width: 1024px) {
    .gyn-treatment-title {
        font-size: 42px;
    }
    
    .gyn-treatment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .gyn-treatment-approach {
        padding: 60px 0;
    }
    
    .gyn-treatment-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .gyn-treatment-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .gyn-treatment-item {
        padding: 25px 20px;
    }
    
    .gyn-treatment-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .gyn-treatment-approach {
        padding: 40px 0;
    }
    
    .gyn-treatment-title {
        font-size: 32px;
    }
    
    .gyn-treatment-item {
        padding: 20px 15px;
    }
    
    .gyn-treatment-item-title {
        font-size: 16px;
    }
    
    .gyn-treatment-description {
        font-size: 13px;
    }
}

/* Women's Wellness Programs Section */
.gyn-wellness-programs {
    padding: 80px 0;
    background: #ffffff;
}

.gyn-wellness-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.gyn-wellness-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.gyn-wellness-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gyn-wellness-content {
    padding-right: 20px;
}

.gyn-wellness-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.2;
}

.gyn-wellness-highlight {
    color: #384C9F;
}

.gyn-wellness-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gyn-wellness-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-left: 10px;
}

.gyn-wellness-icon {
    width: 24px;
    height: 24px;
    margin-right: 20px;
    color: #384C9F;
    font-size: 20px;
    flex-shrink: 0;
}

.gyn-wellness-text {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive Design for Wellness Programs */
@media (max-width: 1024px) {
    .gyn-wellness-wrapper {
        gap: 60px;
    }
    
    .gyn-wellness-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .gyn-wellness-programs {
        padding: 60px 0;
    }
    
    .gyn-wellness-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .gyn-wellness-image {
        order: 1;
        height: 300px;
    }
    
    .gyn-wellness-content {
        order: 2;
        padding-right: 0;
        text-align: center;
    }
    
    .gyn-wellness-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .gyn-wellness-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .gyn-wellness-programs {
        padding: 40px 0;
    }
    
    .gyn-wellness-title {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .gyn-wellness-item {
        margin-bottom: 20px;
        justify-content: flex-start;
    }
    
    .gyn-wellness-icon {
        font-size: 18px;
        margin-right: 15px;
    }
    
    .gyn-wellness-text {
        font-size: 14px;
    }
    
    .gyn-wellness-image {
        height: 250px;
    }
}

/* Gynecology Wellness Overlay Section */
.gyn-physio-rehab-overlay {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.gyn-physio-background {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.gyn-physio-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gyn-physio-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px;
}

.gyn-physio-content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gyn-physio-overlay-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.gyn-physio-overlay-highlight {
    color: #384C9F;
}

.gyn-physio-overlay-services {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.gyn-physio-overlay-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
}

.gyn-overlay-service-icon {
    width: 20px;
    height: 20px;
    color: #384C9F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
    flex-shrink: 0;
}

.gyn-overlay-service-text {
    color: #333;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}

.gyn-physio-overlay-btn {
    display: inline-block;
    background: #FDB714;
    color: #333;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: fit-content;
}

.gyn-physio-overlay-btn:hover {
    background: #FFC61E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 183, 20, 0.3);
}

/* Responsive Design for Overlay Section */
@media (max-width: 1024px) {
    .gyn-physio-background {
        height: 450px;
    }
    
    .gyn-physio-overlay-content {
        padding: 40px;
    }
    
    .gyn-physio-content-card {
        padding: 35px;
        max-width: 350px;
    }
    
    .gyn-physio-overlay-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .gyn-physio-rehab-overlay {
        padding: 60px 0;
    }
    
    .gyn-physio-background {
        height: 400px;
        border-radius: 15px;
    }
    
    .gyn-physio-overlay-content {
        padding: 30px;
        justify-content: center;
    }
    
    .gyn-physio-content-card {
        padding: 30px;
        max-width: 320px;
    }
    
    .gyn-physio-overlay-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .gyn-physio-overlay-item {
        margin-bottom: 12px;
    }
    
    .gyn-overlay-service-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .gyn-physio-rehab-overlay {
        padding: 40px 0;
    }
    
    .gyn-physio-container {
        padding: 0 15px;
    }
    
    .gyn-physio-background {
        height: 350px;
    }
    
    .gyn-physio-overlay-content {
        padding: 20px;
    }
    
    .gyn-physio-content-card {
        padding: 25px;
        max-width: 280px;
    }
    
    .gyn-physio-overlay-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .gyn-physio-overlay-item {
        margin-bottom: 10px;
    }
    
    .gyn-overlay-service-text {
        font-size: 13px;
    }
    
    .gyn-physio-overlay-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}/* Pediatrics Page Specific Styles */

/* Hero Section for Pediatrics */
.ped-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/pediatrics-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.ped-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(33, 150, 243, 0.3) 0%, 
        rgba(63, 81, 181, 0.3) 100%);
    z-index: 1;
}

.ped-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.ped-hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: white;
    padding: 80px 20px 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 50px;
    font-size: 14px;
    opacity: 0.9;
    padding-top: 20px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Hero Title */
.ped-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

/* Hero Description */
.ped-hero-description {
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 0 40px 0;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bottom Navigation - Active State Override */
.bottom-nav .bottom-nav-item.active {
    color: #FFD700;
    border-bottom: 2px solid #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ped-hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .ped-hero-title {
        font-size: 38px;
    }
    
    .ped-hero-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .ped-hero {
        height: 70vh;
        min-height: 450px;
    }
    
    .ped-hero-content {
        text-align: left;
        padding: 60px 20px 0 20px;
    }
    
    .ped-hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .ped-hero-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 90%;
    }
    
    .breadcrumb {
        font-size: 12px;
        margin-bottom: 30px;
        justify-content: flex-start;
        padding-top: 10px;
    }
}

@media (max-width: 480px) {
    .ped-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .ped-hero-content {
        text-align: left;
        padding: 40px 20px 0 20px;
    }
    
    .ped-hero-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .ped-hero-description {
        font-size: 13px;
        line-height: 1.5;
        max-width: 95%;
        margin: 0 0 30px 0;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-start;
        padding-top: 5px;
        margin-bottom: 25px;
    }
}

/* Overview Section */
.ped-overview-section {
    padding: 80px 0;
    background: #ffffff;
}

.ped-overview-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ped-overview-header {
    text-align: left;
}

.ped-overview-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ped-overview-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.ped-consultation-title {
    font-size: 18px;
    font-weight: 600;
    color: #384C9F;
    margin-bottom: 30px;
    line-height: 1.4;
}

.ped-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
}

.ped-left-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ped-right-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

.ped-left-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.ped-right-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ped-overview-image-left, .ped-overview-image-right {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

.ped-conditions-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ped-condition-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.ped-condition-icon {
    width: 24px;
    height: 24px;
    color: #384C9F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.ped-condition-icon i {
    color: #384C9F;
    font-size: 12px;
}

.ped-condition-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Overview */
@media (max-width: 1024px) {
    .ped-overview-grid {
        gap: 40px;
    }
    
    .ped-overview-image-left, .ped-overview-image-right {
        width: 100%;
        height: auto;
    }
    
    .ped-overview-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .ped-overview-section {
        padding: 60px 0;
    }
    
    .ped-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ped-left-column {
        order: 1;
    }
    
    .ped-right-column {
        order: 2;
    }
    
    .ped-overview-image-left, .ped-overview-image-right {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    
    .ped-right-image {
        justify-content: center;
    }
    
    .ped-overview-title {
        font-size: 36px;
    }
    
    .ped-overview-header {
        text-align: center;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .ped-overview-section {
        padding: 40px 0;
    }
    
    .ped-overview-title {
        font-size: 32px;
    }
    
    .ped-overview-image-left, .ped-overview-image-right {
        width: 100%;
        height: auto;
    }
    
    .ped-consultation-title {
        font-size: 16px;
    }
    
    .ped-condition-text {
        font-size: 15px;
    }
    
    .ped-doctors-title {
        font-size: 32px;
    }
    
    .ped-doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ped-doctor-image {
        height: 240px;
    }
}

/* Meet Our Doctors Section */
.ped-meet-doctors {
    padding: 80px 0;
    background: #f8f9fa;
}

.ped-doctors-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-align: left;
    line-height: 1.2;
}

.ped-doctors-highlight {
    color: #384C9F;
}

.ped-doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ped-doctor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ped-doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.ped-doctor-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.ped-doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ped-doctor-card:hover .ped-doctor-photo {
    transform: scale(1.05);
}

.ped-doctor-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ped-doctor-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.ped-doctor-specialty {
    font-size: 14px;
    color: #384C9F;
    font-weight: 500;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ped-doctor-details {
    margin-bottom: 20px;
    flex: 1;
}

.ped-experience, .ped-languages {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.ped-know-more-link {
    color: #384C9F;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.ped-know-more-link:hover {
    color: #384C9F;
}

.ped-btn-appointment {
    background: #FDB714;
    color: #333;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.ped-btn-appointment:hover {
    background: #FFC61E;
    transform: translateY(-1px);
}

/* Responsive Design for Doctors Section */
@media (max-width: 1200px) {
    .ped-doctors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .ped-doctors-title {
        font-size: 42px;
    }
    
    .ped-doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .ped-meet-doctors {
        padding: 60px 0;
    }
    
    .ped-doctors-title {
        font-size: 36px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .ped-doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .ped-doctor-image {
        height: 220px;
    }
    
    .ped-doctor-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .ped-meet-doctors {
        padding: 40px 0;
    }
    
    .ped-doctors-title {
        font-size: 28px;
    }
    
    .ped-doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ped-doctor-image {
        height: 240px;
    }
    
    .ped-doctor-info {
        padding: 18px;
    }
    
    .ped-doctor-name {
        font-size: 18px;
    }
}

/* Treatment Approach Section */
.ped-treatment-approach {
    padding: 80px 0;
    background: #ffffff;
}

.ped-treatment-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.ped-treatment-highlight {
    color: #384C9F;
}

.ped-treatment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.ped-treatment-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.ped-treatment-item:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ped-treatment-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.ped-treatment-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.ped-treatment-item:hover .ped-treatment-icon-img {
    transform: scale(1.1);
}

.ped-treatment-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.ped-treatment-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Treatment Approach */
@media (max-width: 1024px) {
    .ped-treatment-title {
        font-size: 42px;
    }
    
    .ped-treatment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .ped-treatment-approach {
        padding: 60px 0;
    }
    
    .ped-treatment-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .ped-treatment-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .ped-treatment-item {
        padding: 25px 20px;
    }
    
    .ped-treatment-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .ped-treatment-approach {
        padding: 40px 0;
    }
    
    .ped-treatment-title {
        font-size: 32px;
    }
    
    .ped-treatment-item {
        padding: 20px 15px;
    }
    
    .ped-treatment-item-title {
        font-size: 16px;
    }
    
    .ped-treatment-description {
        font-size: 13px;
    }
}

/* Comfortable Facilities Section */
.ped-facilities-section {
    padding: 80px 0;
    background: #ffffff;
}

.ped-facilities-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.ped-facilities-highlight {
    color: #384C9F;
}

.ped-facilities-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ped-facility-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    flex: 1;
    max-width: 380px;
    background: #F5F9FF;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.ped-facility-card:hover {
    background: #EBF3FF;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(56, 76, 159, 0.1);
}

.ped-facility-image {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ped-facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ped-facility-card:hover .ped-facility-image img {
    transform: scale(1.05);
}

.ped-facility-text {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
    flex: 1;
}

/* Preventative & Routine Care Section */
.ped-preventive-care-section {
    padding: 80px 0;
    background: #ffffff;
}

.ped-preventive-care-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.ped-preventive-care-content {
    padding-left: 20px;
}

.ped-preventive-care-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.2;
}

.ped-preventive-care-highlight {
    color: #384C9F;
}

.ped-preventive-care-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ped-preventive-care-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-left: 10px;
}

.ped-care-icon {
    width: 24px;
    height: 24px;
    margin-right: 20px;
    color: #384C9F;
    font-size: 20px;
    flex-shrink: 0;
}

.ped-care-text {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}

.ped-preventive-care-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.ped-preventive-care-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design for New Sections */
@media (max-width: 1200px) {
    .ped-facilities-grid {
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .ped-facility-card {
        min-width: 350px;
    }
}

@media (max-width: 1024px) {
    .ped-facilities-grid {
        flex-direction: column;
        gap: 25px;
    }
    
    .ped-facility-card {
        max-width: 500px;
        width: 100%;
    }
    
    .ped-preventive-care-wrapper {
        gap: 60px;
    }
    
    .ped-preventive-care-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .ped-facilities-section,
    .ped-preventive-care-section {
        padding: 60px 0;
    }
    
    .ped-facilities-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .ped-facilities-grid {
        padding: 0 20px;
    }
    
    .ped-facility-image {
        width: 100px;
        height: 100px;
    }
    
    .ped-preventive-care-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .ped-preventive-care-content {
        padding-left: 0;
        order: 2;
    }
    
    .ped-preventive-care-image {
        order: 1;
        height: 300px;
    }
    
    .ped-preventive-care-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .ped-facilities-section,
    .ped-preventive-care-section {
        padding: 40px 0;
    }
    
    .ped-facilities-title {
        font-size: 28px;
    }
    
    .ped-facility-card {
        gap: 12px;
    }
    
    .ped-facility-image {
        width: 80px;
        height: 80px;
        border-radius: 12px;
    }
    
    .ped-facility-text {
        font-size: 14px;
    }
    
    .ped-preventive-care-title {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .ped-preventive-care-item {
        margin-bottom: 20px;
    }
    
    .ped-care-icon {
        font-size: 18px;
        margin-right: 15px;
    }
    
    .ped-care-text {
        font-size: 14px;
    }
    
    .ped-preventive-care-image {
        height: 250px;
    }
}

/* Pediatrics Rehabilitation Overlay Section */
.ped-physio-rehab-overlay {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.ped-physio-background {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.ped-physio-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ped-physio-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px;
}

.ped-physio-content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ped-physio-overlay-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.ped-physio-overlay-highlight {
    color: #384C9F;
}

.ped-physio-overlay-services {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.ped-physio-overlay-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
}

.ped-overlay-service-icon {
    width: 20px;
    height: 20px;
    color: #384C9F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
    flex-shrink: 0;
}

.ped-overlay-service-text {
    color: #333;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}

.ped-physio-overlay-btn {
    display: inline-block;
    background: #FDB714;
    color: #333;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: fit-content;
}

.ped-physio-overlay-btn:hover {
    background: #FFC61E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 183, 20, 0.3);
}

/* Responsive Design for Overlay Section */
@media (max-width: 1024px) {
    .ped-physio-background {
        height: 450px;
    }
    
    .ped-physio-overlay-content {
        padding: 40px;
    }
    
    .ped-physio-content-card {
        padding: 35px;
        max-width: 350px;
    }
    
    .ped-physio-overlay-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .ped-physio-rehab-overlay {
        padding: 60px 0;
    }
    
    .ped-physio-background {
        height: 400px;
        border-radius: 15px;
    }
    
    .ped-physio-overlay-content {
        padding: 30px;
        justify-content: center;
    }
    
    .ped-physio-content-card {
        padding: 30px;
        max-width: 320px;
    }
    
    .ped-physio-overlay-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .ped-physio-overlay-item {
        margin-bottom: 12px;
    }
    
    .ped-overlay-service-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .ped-physio-rehab-overlay {
        padding: 40px 0;
    }
    
    .ped-physio-container {
        padding: 0 15px;
    }
    
    .ped-physio-background {
        height: 350px;
    }
    
    .ped-physio-overlay-content {
        padding: 20px;
    }
    
    .ped-physio-content-card {
        padding: 25px;
        max-width: 280px;
    }
    
    .ped-physio-overlay-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .ped-physio-overlay-item {
        margin-bottom: 10px;
    }
    
    .ped-overlay-service-text {
        font-size: 13px;
    }
    
    .ped-physio-overlay-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Dental Care Page Specific Styles */

/* Hero Section for Dental Care */
.dental-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/images/dentalcare-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.dental-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(33, 150, 243, 0.3) 0%, 
        rgba(63, 81, 181, 0.3) 100%);
    z-index: 1;
}

.dental-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.dental-hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: white;
    padding: 80px 20px 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Hero Title */
.dental-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

/* Hero Description */
.dental-hero-description {
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 0 40px 0;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease;
}

/* Bottom Navigation - Active State Override */
.bottom-nav .bottom-nav-item.active {
    color: #FFD700;
    border-bottom: 2px solid #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dental-hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .dental-hero-title {
        font-size: 38px;
    }
    
    .dental-hero-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .dental-hero {
        height: 70vh;
        min-height: 450px;
    }
    
    .dental-hero-content {
        text-align: left;
        padding: 60px 20px 0 20px;
    }
    
    .dental-hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .dental-hero-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .dental-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .dental-hero-content {
        text-align: left;
        padding: 40px 20px 0 20px;
    }
    
    .dental-hero-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .dental-hero-description {
        font-size: 13px;
        line-height: 1.5;
        max-width: 95%;
        margin: 0 0 30px 0;
    }
}

/* Overview Section */
.dental-overview-section {
    padding: 80px 0;
    background: #ffffff;
}

.dental-overview-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dental-overview-header {
    text-align: left;
}

.dental-overview-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.dental-overview-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.dental-consultation-title {
    font-size: 18px;
    font-weight: 600;
    color: #384C9F;
    margin-bottom: 30px;
    line-height: 1.4;
}

.dental-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
}

.dental-left-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dental-right-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

.dental-left-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.dental-right-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dental-overview-image-left, .dental-overview-image-right {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

.dental-conditions-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.dental-condition-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.dental-condition-icon {
    width: 24px;
    height: 24px;
    color: #384C9F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.dental-condition-icon i {
    color: #384C9F;
    font-size: 12px;
}

.dental-condition-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Overview */
@media (max-width: 1024px) {
    .dental-overview-grid {
        gap: 40px;
    }
    
    .dental-overview-image-left, .dental-overview-image-right {
        width: 100%;
        height: auto;
    }
    
    .dental-overview-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .dental-overview-section {
        padding: 60px 0;
    }
    
    .dental-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dental-left-column {
        order: 1;
    }
    
    .dental-right-column {
        order: 2;
    }
    
    .dental-overview-image-left, .dental-overview-image-right {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    
    .dental-right-image {
        justify-content: center;
    }
    
    .dental-overview-title {
        font-size: 36px;
    }
    
    .dental-overview-header {
        text-align: center;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .dental-overview-section {
        padding: 40px 0;
    }
    
    .dental-overview-title {
        font-size: 32px;
    }
    
    .dental-overview-image-left, .dental-overview-image-right {
        width: 100%;
        height: auto;
    }
    
    .dental-consultation-title {
        font-size: 16px;
    }
    
    .dental-condition-text {
        font-size: 15px;
    }
    
    .dental-doctors-title {
        font-size: 32px;
    }
    
    .dental-doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dental-doctor-image {
        height: 240px;
    }
}

/* Meet Our Doctors Section */
.dental-meet-doctors {
    padding: 80px 0;
    background: #f8f9fa;
}

.dental-doctors-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-align: left;
    line-height: 1.2;
}

.dental-doctors-highlight {
    color: #384C9F;
}

.dental-doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.dental-doctor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.dental-doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.dental-doctor-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.dental-doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dental-doctor-card:hover .dental-doctor-photo {
    transform: scale(1.05);
}

.dental-doctor-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dental-doctor-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.dental-doctor-specialty {
    font-size: 14px;
    color: #384C9F;
    font-weight: 500;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dental-doctor-details {
    margin-bottom: 20px;
    flex: 1;
}

.dental-experience, .dental-languages {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.dental-know-more-link {
    color: #384C9F;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.dental-know-more-link:hover {
    color: #384C9F;
}

.dental-btn-appointment {
    background: #FDB714;
    color: #333;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.dental-btn-appointment:hover {
    background: #FFC61E;
    transform: translateY(-1px);
}

/* Responsive Design for Doctors Section */
@media (max-width: 1200px) {
    .dental-doctors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .dental-doctors-title {
        font-size: 42px;
    }
    
    .dental-doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .dental-meet-doctors {
        padding: 60px 0;
    }
    
    .dental-doctors-title {
        font-size: 36px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .dental-doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .dental-doctor-image {
        height: 220px;
    }
    
    .dental-doctor-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .dental-meet-doctors {
        padding: 40px 0;
    }
    
    .dental-doctors-title {
        font-size: 28px;
    }
    
    .dental-doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dental-doctor-image {
        height: 240px;
    }
    
    .dental-doctor-info {
        padding: 18px;
    }
    
    .dental-doctor-name {
        font-size: 18px;
    }
}

/* Treatment Approach Section */
.dental-treatment-approach {
    padding: 80px 0;
    background: #ffffff;
}

.dental-treatment-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.dental-treatment-highlight {
    color: #384C9F;
}

.dental-treatment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.dental-treatment-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.dental-treatment-item:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dental-treatment-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.dental-treatment-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.dental-treatment-item:hover .dental-treatment-icon-img {
    transform: scale(1.1);
}

.dental-treatment-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.dental-treatment-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Treatment Approach */
@media (max-width: 1024px) {
    .dental-treatment-title {
        font-size: 42px;
    }
    
    .dental-treatment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .dental-treatment-approach {
        padding: 60px 0;
    }
    
    .dental-treatment-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .dental-treatment-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .dental-treatment-item {
        padding: 25px 20px;
    }
    
    .dental-treatment-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .dental-treatment-approach {
        padding: 40px 0;
    }
    
    .dental-treatment-title {
        font-size: 32px;
    }
    
    .dental-treatment-item {
        padding: 20px 15px;
    }
    
    .dental-treatment-item-title {
        font-size: 16px;
    }
    
    .dental-treatment-description {
        font-size: 13px;
    }
}

/* Before & After Section */
.dental-before-after {
    padding: 80px 0;
    background: #ffffff;
}

.dental-before-after-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.dental-before-after-highlight {
    color: #384C9F;
}

.dental-before-after-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dental-before-after-image-container {
    width: 700px;
    max-width: 90%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dental-before-after-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.dental-before-after-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.dental-before-after-image:hover {
    transform: scale(1.02);
}

/* Responsive Design for Before & After Section */
@media (max-width: 1024px) {
    .dental-before-after-title {
        font-size: 42px;
    }
    
    .dental-before-after-content {
        max-width: 700px;
    }
    
    .dental-before-after-image-container {
        max-width: 550px;
    }
}

@media (max-width: 768px) {
    .dental-before-after {
        padding: 60px 0;
    }
    
    .dental-before-after-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .dental-before-after-content {
        max-width: 90%;
    }
    
    .dental-before-after-image-container {
        max-width: 100%;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .dental-before-after {
        padding: 40px 0;
    }
    
    .dental-before-after-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .dental-before-after-image-container {
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
}

/* Dental Rehabilitation Overlay Section */
.dental-physio-rehab-overlay {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.dental-physio-background {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.dental-physio-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dental-physio-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px;
}

.dental-physio-content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dental-physio-overlay-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.dental-physio-overlay-highlight {
    color: #384C9F;
}

.dental-physio-overlay-services {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.dental-physio-overlay-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
}

.dental-overlay-service-icon {
    width: 20px;
    height: 20px;
    color: #384C9F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
    flex-shrink: 0;
}

.dental-overlay-service-text {
    color: #333;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}

.dental-physio-overlay-btn {
    display: inline-block;
    background: #FDB714;
    color: #333;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: fit-content;
}

.dental-physio-overlay-btn:hover {
    background: #FFC61E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 183, 20, 0.3);
}

/* Responsive Design for Overlay Section */
@media (max-width: 1024px) {
    .dental-physio-background {
        height: 450px;
    }
    
    .dental-physio-overlay-content {
        padding: 40px;
    }
    
    .dental-physio-content-card {
        padding: 35px;
        max-width: 350px;
    }
    
    .dental-physio-overlay-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .dental-physio-rehab-overlay {
        padding: 60px 0;
    }
    
    .dental-physio-background {
        height: 400px;
        border-radius: 15px;
    }
    
    .dental-physio-overlay-content {
        padding: 30px;
        justify-content: center;
    }
    
    .dental-physio-content-card {
        padding: 30px;
        max-width: 320px;
    }
    
    .dental-physio-overlay-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .dental-physio-overlay-item {
        margin-bottom: 12px;
    }
    
    .dental-overlay-service-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .dental-physio-rehab-overlay {
        padding: 40px 0;
    }
    
    .dental-physio-container {
        padding: 0 15px;
    }
    
    .dental-physio-background {
        height: 350px;
    }
    
    .dental-physio-overlay-content {
        padding: 20px;
    }
    
    .dental-physio-content-card {
        padding: 25px;
        max-width: 280px;
    }
    
    .dental-physio-overlay-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .dental-physio-overlay-item {
        margin-bottom: 10px;
    }
    
    .dental-overlay-service-text {
        font-size: 13px;
    }
    
    .dental-physio-overlay-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}
/* Neuro-Rehabilitation Page Specific Styles */

/* Hero Section for Neuro-Rehabilitation */
.neuro-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/svayou-healthcare-2/neuro-rehab-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.neuro-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(33, 150, 243, 0.3) 0%, 
        rgba(63, 81, 181, 0.3) 100%);
    z-index: 1;
}

.neuro-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.neuro-hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: white;
    padding: 80px 20px 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 50px;
    font-size: 14px;
    opacity: 0.9;
    padding-top: 20px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Hero Title */
/* Ensure HTML content inside neuro hero title maintains styling */
.neuro-hero-title *,
.neuro-hero-title p,
.neuro-hero-title span,
.neuro-hero-title div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-shadow: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
}

.neuro-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

/* Hero Description */
/* Ensure HTML content inside neuro hero description maintains styling */
.neuro-hero-description *,
.neuro-hero-description p,
.neuro-hero-description span,
.neuro-hero-description div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-shadow: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
    opacity: inherit;
}

.neuro-hero-description {
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 0 40px 0;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Overview Section */
.neuro-overview-section {
    padding: 80px 0;
    background: #ffffff;
}

.neuro-overview-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.neuro-overview-header {
    text-align: left;
}

.neuro-overview-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Ensure HTML content inside neuro overview description maintains styling */
.neuro-overview-description *,
.neuro-overview-description p,
.neuro-overview-description span,
.neuro-overview-description div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
}

.neuro-overview-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.neuro-consultation-title {
    font-size: 18px;
    font-weight: 600;
    color: #384C9F;
    margin-bottom: 30px;
    line-height: 1.4;
}

.neuro-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
}

.neuro-left-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.neuro-right-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

.neuro-left-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.neuro-right-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.neuro-overview-image-left, .neuro-overview-image-right {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

.neuro-conditions-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.neuro-conditions-two-column {
    display: flex;
    gap: 40px;
}

.neuro-conditions-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.neuro-condition-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.neuro-condition-icon {
    width: 24px;
    height: 24px;
    background-color: #FDB714;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.neuro-condition-icon i {
    color: white;
    font-size: 12px;
}

.neuro-condition-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Symptoms Section */
.neuro-symptoms {
    padding: 80px 0;
    background: #f8f9fa;
}

.neuro-symptoms-title {
    font-size: 48px;
    font-weight: 700;
    color: #384C9F;
    text-align: left;
    margin-bottom: 60px;
    line-height: 1.2;
}

.neuro-symptoms-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.neuro-symptom-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.neuro-symptom-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.neuro-symptom-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.neuro-symptom-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.neuro-symptom-item:hover .neuro-symptom-icon {
    transform: scale(1.1);
}

.neuro-symptom-text {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
}

/* Technology That Cares Section */
.neuro-technology {
    padding: 60px 0;
    background: #ffffff;
}

.neuro-technology-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.neuro-technology-highlight {
    color: #384C9F;
}

.neuro-technology-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.neuro-technology-slider {
    position: relative;
    width: 100%;
    height: 400px;
    min-height: 400px;
}

.neuro-technology-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
}

.neuro-technology-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.neuro-technology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100%;
    align-items: center;
}

.neuro-technology-text {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.neuro-technology-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.neuro-technology-text-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 85%;
    transform: translateY(-50%);
    padding: 30px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    z-index: 2;
    overflow-y: auto;
    box-sizing: border-box;
}

.neuro-technology-slide-title {
    font-size: 24px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 12px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.neuro-technology-description {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    overflow-y: auto;
    flex: 1;
    padding-right: 10px;
}

.neuro-technology-image {
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.neuro-technology-slide.active .neuro-technology-img {
    transform: scale(1.02);
}

/* Navigation Arrows */
.neuro-technology-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #384C9F;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.neuro-technology-nav:hover {
    background: #384C9F;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.neuro-technology-prev {
    left: 20px;
}

.neuro-technology-next {
    right: 20px;
}

/* Slide Counter */
.neuro-technology-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #384C9F;
    z-index: 15;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Navigation Dots */
.neuro-technology-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.neuro-technology-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(56, 76, 159, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.neuro-technology-dot.active,
.neuro-technology-dot:hover {
    background: #384C9F;
    transform: scale(1.2);
}

/* Standard Desktop Optimization for Technology That Cares */
@media (min-width: 1440px) {
    .neuro-technology-carousel {
        max-width: 90%;
    }
}

/* Large Screen Optimization for Technology That Cares */
@media (min-width: 1920px) {
    .neuro-technology {
        padding: 50px 0;
    }

    .neuro-technology-title {
        font-size: 38px;
        margin-bottom: 35px;
    }

    .neuro-technology-carousel {
        max-width: 1600px;
    }

    .neuro-technology-slider {
        height: 450px;
        min-height: 450px;
    }

    .neuro-technology-text-overlay {
        padding: 35px;
    }

    .neuro-technology-slide-title {
        font-size: 26px;
    }

    .neuro-technology-description {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Extra Large Screen Optimization */
@media (min-width: 2560px) {
    .neuro-technology-carousel {
        max-width: 1800px;
    }

    .neuro-technology-slider {
        height: 500px;
        min-height: 500px;
    }
}

/* Why and Who Should Count on Neuro Rehabilitation Section */
.neuro-why-who {
    padding: 80px 0;
    background: #ffffff;
}

.neuro-why-who-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.neuro-why-who-highlight {
    color: #384C9F;
}

.neuro-why-who-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.neuro-why-who-btn {
    background: #FDB714;
    color: #333;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
    white-space: nowrap;
}

.neuro-why-who-btn:hover,
.neuro-why-who-btn.active {
    background: #333;
    color: #FDB714;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.neuro-why-who-category {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.neuro-why-who-category.active {
    display: block;
    opacity: 1;
}

.neuro-why-who-description {
    text-align: center;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0 auto 50px;
    max-width: 600px;
}

.neuro-why-who-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.neuro-why-who-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.neuro-why-who-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.neuro-why-who-check {
    width: 24px;
    height: 24px;
    background-color: #FDB714;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.neuro-why-who-check i {
    color: white;
    font-size: 12px;
}

.neuro-why-who-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.neuro-why-who-img {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Meet Our Doctors Section */
.neuro-meet-doctors {
    padding: 80px 0;
    background: #f8f9fa;
}

.neuro-doctors-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-align: left;
    line-height: 1.2;
}

.neuro-doctors-highlight {
    color: #384C9F;
}

.neuro-doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.neuro-doctor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.neuro-doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.neuro-doctor-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.neuro-doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.neuro-doctor-card:hover .neuro-doctor-photo {
    transform: scale(1.05);
}

.neuro-doctor-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.neuro-doctor-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.neuro-doctor-specialty {
    font-size: 14px;
    color: #384C9F;
    font-weight: 500;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.neuro-doctor-details {
    margin-bottom: 20px;
    flex: 1;
}

.neuro-experience, .neuro-languages {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.neuro-know-more-link {
    color: #384C9F;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.neuro-know-more-link:hover {
    color: #384C9F;
}

.neuro-btn-appointment {
    background: #FDB714;
    color: #333;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.neuro-btn-appointment:hover {
    background: #FFC61E;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .neuro-hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .neuro-hero-title {
        font-size: 38px;
    }
    
    .neuro-hero-description {
        font-size: 15px;
    }
    
    .neuro-overview-grid {
        gap: 40px;
    }
    
    .neuro-overview-title {
        font-size: 42px;
    }
    
    .neuro-symptoms-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .neuro-technology-title {
        font-size: 42px;
    }
    
    .neuro-technology-slider {
        height: 450px;
        min-height: 450px;
    }
    
    .neuro-why-who-title {
        font-size: 42px;
    }
    
    .neuro-doctors-title {
        font-size: 42px;
    }
    
    .neuro-doctors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .neuro-hero {
        height: 70vh;
        min-height: 450px;
    }
    
    .neuro-hero-content {
        text-align: left;
        padding: 60px 20px 0 20px;
    }
    
    .neuro-hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .neuro-hero-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 90%;
    }
    
    .breadcrumb {
        font-size: 12px;
        margin-bottom: 30px;
        justify-content: flex-start;
        padding-top: 10px;
    }
    
    .neuro-overview-section {
        padding: 60px 0;
    }
    
    .neuro-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .neuro-left-column {
        order: 1;
    }
    
    .neuro-right-column {
        order: 2;
    }
    
    .neuro-overview-title {
        font-size: 36px;
    }
    
    .neuro-overview-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .neuro-conditions-two-column {
        flex-direction: column;
        gap: 20px;
    }
    
    .neuro-symptoms {
        padding: 60px 0;
    }
    
    .neuro-symptoms-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .neuro-symptoms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .neuro-technology {
        padding: 60px 0;
    }
    
    .neuro-technology-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .neuro-technology-content {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }
    
    .neuro-technology-slider {
        height: 550px;
        min-height: 550px;
    }
    
    .neuro-why-who {
        padding: 60px 0;
    }
    
    .neuro-why-who-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .neuro-why-who-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .neuro-why-who-btn {
        min-width: 200px;
    }
    
    .neuro-why-who-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .neuro-meet-doctors {
        padding: 60px 0;
    }
    
    .neuro-doctors-title {
        font-size: 36px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .neuro-doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .neuro-doctor-image {
        height: 220px;
    }
    
    .neuro-doctor-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .neuro-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .neuro-hero-content {
        text-align: left;
        padding: 40px 20px 0 20px;
    }
    
    .neuro-hero-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .neuro-hero-description {
        font-size: 13px;
        line-height: 1.5;
        max-width: 95%;
        margin: 0 0 30px 0;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-start;
        padding-top: 5px;
        margin-bottom: 25px;
    }
    
    .neuro-overview-section {
        padding: 40px 0;
    }
    
    .neuro-overview-title {
        font-size: 32px;
    }
    
    .neuro-consultation-title {
        font-size: 16px;
    }
    
    .neuro-condition-text {
        font-size: 15px;
    }
    
    .neuro-symptoms {
        padding: 40px 0;
    }
    
    .neuro-symptoms-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .neuro-symptoms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .neuro-symptom-item {
        padding: 20px 15px;
    }
    
    .neuro-symptom-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .neuro-symptom-image {
        width: 30px;
        height: 30px;
    }
    
    .neuro-symptom-text {
        font-size: 14px;
    }
    
    .neuro-technology {
        padding: 40px 0;
    }
    
    .neuro-technology-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .neuro-technology-slider {
        height: 500px;
        min-height: 500px;
    }
    
    .neuro-why-who {
        padding: 40px 0;
    }
    
    .neuro-why-who-title {
        font-size: 32px;
    }
    
    .neuro-why-who-btn {
        min-width: 180px;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .neuro-why-who-description {
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .neuro-why-who-benefit-item {
        font-size: 15px;
    }
    
    .neuro-meet-doctors {
        padding: 40px 0;
    }
    
    .neuro-doctors-title {
        font-size: 28px;
    }
    
    .neuro-doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .neuro-doctor-image {
        height: 240px;
    }
    
    .neuro-doctor-info {
        padding: 18px;
    }
    
    .neuro-doctor-name {
        font-size: 18px;
    }
}

/* Cardiac Rehabilitation Page Specific Styles */

/* Hero Section for Cardiac Rehabilitation */
.cardiac-hero {
    background-image: url('/svayou-healthcare-2/cardiac-rehab-bg.png') !important;
}

/* Cardiac rehabilitation specific symptom images */
.cardiac-symptoms-grid .neuro-symptom-item:nth-child(1) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/cardiac-symptom1.png');
}

.cardiac-symptoms-grid .neuro-symptom-item:nth-child(2) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/cardiac-symptom2.png');
}

.cardiac-symptoms-grid .neuro-symptom-item:nth-child(3) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/cardiac-symptoms3.png');
}

.cardiac-symptoms-grid .neuro-symptom-item:nth-child(4) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/cardiac-symptoms4.png');
}

.cardiac-symptoms-grid .neuro-symptom-item:nth-child(5) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/cardiac-symptoms5.png');
}

/* Ensure cardiac rehabilitation uses the same base styles as neuro-rehabilitation */
/* All existing neuro- classes will work for cardiac rehabilitation as well */

/* Pulmonary Rehabilitation Page Specific Styles */

/* Hero Section for Pulmonary Rehabilitation */
.pulmonary-hero {
    background-image: url('/svayou-healthcare-2/pulm-rehab-bg.png') !important;
}

/* Pulmonary rehabilitation specific symptom images */
.pulmonary-symptoms-grid .neuro-symptom-item:nth-child(1) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/pulm-symptoms1.png');
}

.pulmonary-symptoms-grid .neuro-symptom-item:nth-child(2) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/pulm-symptoms2.png');
}

.pulmonary-symptoms-grid .neuro-symptom-item:nth-child(3) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/pulm-symptoms3.png');
}

.pulmonary-symptoms-grid .neuro-symptom-item:nth-child(4) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/pulm-symptoms4.png');
}

.pulmonary-symptoms-grid .neuro-symptom-item:nth-child(5) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/pulm-symptoms5.png');
}

/* Ensure pulmonary rehabilitation uses the same base styles as neuro-rehabilitation */
/* All existing neuro- classes will work for pulmonary rehabilitation as well */

/* Renal Rehabilitation Page Specific Styles */

/* Hero Section for Renal Rehabilitation */
.renal-hero {
    background-image: url('/svayou-healthcare-2/renal-rehab-bg.png') !important;
}

/* Renal rehabilitation specific symptom images */
.renal-symptoms-grid .neuro-symptom-item:nth-child(1) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/renal-symptoms1.png');
}

.renal-symptoms-grid .neuro-symptom-item:nth-child(2) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/renal-symptoms2.png');
}

.renal-symptoms-grid .neuro-symptom-item:nth-child(3) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/renal-symptoms3.png');
}

.renal-symptoms-grid .neuro-symptom-item:nth-child(4) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/renal-symptoms4.png');
}

.renal-symptoms-grid .neuro-symptom-item:nth-child(5) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/renal-symptoms5.png');
}

/* Ensure renal rehabilitation uses the same base styles as neuro-rehabilitation */
/* All existing neuro- classes will work for renal rehabilitation as well */

/* Orthopedic Rehabilitation Page Specific Styles */

/* Hero Section for Orthopedic Rehabilitation */
.orthopedic-hero {
    background-image: url('/svayou-healthcare-2/ortho-rehab-bg.png') !important;
}

/* Orthopedic rehabilitation specific symptom images */
.orthopedic-symptoms-grid .neuro-symptom-item:nth-child(1) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/ortho-symptoms1.png');
}

.orthopedic-symptoms-grid .neuro-symptom-item:nth-child(2) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/ortho-symptoms2.png');
}

.orthopedic-symptoms-grid .neuro-symptom-item:nth-child(3) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/ortho-symptoms3.png');
}

.orthopedic-symptoms-grid .neuro-symptom-item:nth-child(4) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/ortho-symptoms4.png');
}

.orthopedic-symptoms-grid .neuro-symptom-item:nth-child(5) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/ortho-symptoms5.png');
}

/* Ensure orthopedic rehabilitation uses the same base styles as neuro-rehabilitation */
/* All existing neuro- classes will work for orthopedic rehabilitation as well */

/* Sports Rehabilitation Page Specific Styles */

/* Hero Section for Sports Rehabilitation */
.sports-hero {
    background-image: url('/svayou-healthcare-2/sports-rehab-bg.png') !important;
}

/* Sports rehabilitation specific symptom images */
.sports-symptoms-grid .neuro-symptom-item:nth-child(1) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/sports-symptoms1.png');
}

.sports-symptoms-grid .neuro-symptom-item:nth-child(2) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/sports-symptoms2.png');
}

.sports-symptoms-grid .neuro-symptom-item:nth-child(3) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/sports-symptoms3.png');
}

.sports-symptoms-grid .neuro-symptom-item:nth-child(4) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/sports-symptoms4.png');
}

.sports-symptoms-grid .neuro-symptom-item:nth-child(5) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/sports-symptoms5.png');
}

/* Ensure sports rehabilitation uses the same base styles as neuro-rehabilitation */
/* All existing neuro- classes will work for sports rehabilitation as well */

/* Pediatrics Rehabilitation Page Specific Styles */

/* Hero Section for Pediatrics Rehabilitation */
.pediatrics-hero {
    background-image: url('/svayou-healthcare-2/pediatrics-rehab-bg.png') !important;
}

/* Pediatrics rehabilitation specific symptom images */
.pediatrics-symptoms-grid .neuro-symptom-item:nth-child(1) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/pediatric-symptoms1.png');
}

.pediatrics-symptoms-grid .neuro-symptom-item:nth-child(2) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/pediatrics-symptoms2.png');
}

.pediatrics-symptoms-grid .neuro-symptom-item:nth-child(3) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/pediatrics-symptoms3.png');
}

.pediatrics-symptoms-grid .neuro-symptom-item:nth-child(4) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/pediatrics-symptoms4.png');
}

.pediatrics-symptoms-grid .neuro-symptom-item:nth-child(5) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/pediatrics-symptoms5.png');
}

/* Pediatric Why Who Section Styles */
.pediatric-why-who {
    padding: 80px 0;
    background: #f8f9fa;
}

.pediatric-why-who-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pediatric-why-who-highlight {
    color: #e74c3c;
}

.pediatric-why-who-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Ensure pediatrics rehabilitation uses the same base styles as neuro-rehabilitation */
/* All existing neuro- classes will work for pediatrics rehabilitation as well */

/* Cancer Rehabilitation Page Specific Styles */

/* Hero Section for Cancer Rehabilitation */
.cancer-hero {
    background-image: url('/svayou-healthcare-2/cancer-rehab-bg.png') !important;
}

/* Cancer rehabilitation specific symptom images */
.cancer-symptoms-grid .neuro-symptom-item:nth-child(1) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/cancer-symptoms1.png');
}

.cancer-symptoms-grid .neuro-symptom-item:nth-child(2) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/cancer-symptoms2.png');
}

.cancer-symptoms-grid .neuro-symptom-item:nth-child(3) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/cancer-symptoms3.png');
}

.cancer-symptoms-grid .neuro-symptom-item:nth-child(4) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/cancer-symptoms4.png');
}

.cancer-symptoms-grid .neuro-symptom-item:nth-child(5) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/cancer-symptoms5.png');
}

/* Ensure cancer rehabilitation uses the same base styles as neuro-rehabilitation */
/* All existing neuro- classes will work for cancer rehabilitation as well */

/* Women Healthcare Rehabilitation Page Specific Styles */

/* Hero Section for Women Healthcare Rehabilitation */
.women-hero {
    background-image: url('/svayou-healthcare-2/women-rehab-bg.png') !important;
}

/* Women healthcare rehabilitation specific symptom images */
.women-symptoms-grid .neuro-symptom-item:nth-child(1) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/women-symptoms1.png');
}

.women-symptoms-grid .neuro-symptom-item:nth-child(2) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/women-symptoms-image2.png');
}

.women-symptoms-grid .neuro-symptom-item:nth-child(3) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/women-symptoms3.png');
}

.women-symptoms-grid .neuro-symptom-item:nth-child(4) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/women-symptoms4.png');
}

.women-symptoms-grid .neuro-symptom-item:nth-child(5) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/women-symptoms5.png');
}

/* Ensure women healthcare rehabilitation uses the same base styles as neuro-rehabilitation */
/* All existing neuro- classes will work for women healthcare rehabilitation as well */

/* Geriatrics Rehabilitation Page Specific Styles */

/* Hero Section for Geriatrics Rehabilitation */
.geriatrics-hero {
    background-image: url('/svayou-healthcare-2/geriatrics-bg.png') !important;
}

/* Pathology Hero */
.pathology-hero {
    background-image: url('/svayou-healthcare-2/pathology-bg.png') !important;
}

/* Radiology Hero */
.radiology-hero {
    background-image: url('/svayou-healthcare-2/radiology-bg.png') !important;
}

/* Diagnostic Cardiology Hero */
.diagnostic-cardiology-hero {
    background-image: url('/svayou-healthcare-2/Diagno-cardiology-bg.png') !important;
}

/* TMT Hero */
.tmt-hero {
    background-image: url('/svayou-healthcare-2/tmt-bg.png') !important;
}

/* PFT Hero */
.pft-hero {
    background-image: url('/svayou-healthcare-2/diagno-pulmonology-bg.png') !important;
}

/* PFT specific styles */
.pft-overview-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pft-overview-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pft-overview-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.pft-overview-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.pft-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pft-overview-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pft-overview-card:hover {
    transform: translateY(-5px);
}

.pft-overview-image {
    margin-bottom: 1.5rem;
}

.pft-card-image {
    max-width: 80px;
    height: auto;
    object-fit: contain;
}

.pft-card-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.pft-card-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.steps-content-pft {
    text-align: center;
    padding: 2rem 0;
}

.steps-content-pft .steps-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .pft-overview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pft-overview-title {
        font-size: 2rem;
    }
    
    .pft-overview-card {
        padding: 1.5rem;
    }
}

/* TMT specific styles */
.steps-content-tmt {
    text-align: center;
    padding: 2rem 0;
}

.steps-content-tmt .steps-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Diagnostic Cardiology specific styles */
.steps-content-cardiology {
    text-align: center;
    padding: 2rem 0;
}

.steps-content-cardiology .steps-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.steps-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .steps-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Pathology specific styles */
.pathology-tests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pathology-image-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pathology-feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.pathology-test-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.pathology-test-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pathology-test-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.pathology-test-highlight {
    color: #e74c3c;
}

.pathology-test-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.pathology-test-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pathology-test-left {
    display: flex;
    flex-direction: column;
}

.pathology-test-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pathology-test-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pathology-test-item:hover {
    transform: translateY(-5px);
}

.pathology-test-icon {
    flex-shrink: 0;
}

.pathology-test-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.pathology-test-info-content p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.pathology-test-name {
    font-weight: bold;
    color: #2c3e50;
}

.pathology-test-separator {
    color: #666;
}

.pathology-test-symptoms {
    color: #555;
}

.pathology-test-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pathology-test-image {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.pathology-test-lab-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .pathology-test-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pathology-test-title {
        font-size: 2rem;
    }
    
    .pathology-test-item {
        padding: 1rem;
    }
    
    .pathology-test-info-content p {
        font-size: 1rem;
    }
}

/* Health Packages Card Styles */
.health-packages-wrapper {
    width: 100%;
    margin-top: 2rem;
}

.packages-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.packages-cards-grid::-webkit-scrollbar {
    width: 8px;
}

.packages-cards-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.packages-cards-grid::-webkit-scrollbar-thumb {
    background: #384C9F;
    border-radius: 10px;
}

.packages-cards-grid::-webkit-scrollbar-thumb:hover {
    background: #2d3d7f;
}

.package-card-col {
    width: 100%;
}

/* Bootstrap Utility Classes */
.d-flex {
    display: flex !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

/* Health Package Card */
.health-package-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.health-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-header-custom {
    background: linear-gradient(135deg, #384C9F 0%, #5468B3 100%);
    padding: 1.5rem;
    color: white;
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
}

.package-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.badge-report {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    color: white;
}

.package-card-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.card-body-custom {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.parameters-section {
    flex: 1;
}

.section-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.parameters-content {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.badges-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge-prereq {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.badge-report-inline {
    display: inline-block;
    background: #384C9F;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tests-section-custom {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
}

.tests-label-custom {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
}

.tests-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #384C9F;
}

.tests-unit {
    font-size: 0.85rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .packages-cards-grid {
        gap: 1rem;
    }

    .health-package-card {
        flex-direction: column;
    }

    .card-header-custom {
        padding: 1.25rem;
        flex: 1;
    }

    .package-card-name {
        font-size: 1.1rem;
    }

    .badge-report {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .package-card-price {
        font-size: 1.5rem;
    }

    .card-body-custom {
        padding: 1.25rem;
    }

    .parameters-content {
        font-size: 0.85rem;
        word-wrap: break-word;
    }

    .tests-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .packages-cards-grid {
        gap: 1rem;
        max-height: 500px;
    }

    .health-package-card {
        flex-direction: column;
    }

    .card-header-custom {
        padding: 1rem;
        flex: 1;
    }

    .package-card-name {
        font-size: 1rem;
    }

    .package-card-price {
        font-size: 1.35rem;
    }

    .card-body-custom {
        padding: 1rem;
    }

    .parameters-content {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .tests-value {
        font-size: 1.35rem;
    }
}

.health-packages-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.health-packages-table thead {
    background: linear-gradient(135deg, #384C9F 0%, #5468B3 100%);
    color: white;
}

.health-packages-table thead th {
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.health-packages-table thead th.col-package {
    width: 20%;
}

.health-packages-table thead th.col-parameters {
    width: 60%;
}

.health-packages-table thead th.col-tests {
    width: 20%;
    text-align: center;
}

.health-packages-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
}

.health-packages-table tbody tr:hover {
    background-color: #f8f9fa;
}

.health-packages-table tbody tr:last-child {
    border-bottom: none;
}

.health-packages-table tbody td {
    padding: 1.5rem 1rem;
    vertical-align: top;
}

.package-info-cell {
    font-weight: 600;
}

.package-name {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.package-price {
    font-size: 1.3rem;
    color: #384C9F;
    font-weight: 700;
}

.parameters-cell {
    font-size: 0.95rem;
    line-height: 1.6;
}

.parameters-text {
    color: #555;
    margin-bottom: 0.75rem;
}

.parameters-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.75rem;
}

.prereq, .report {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: #f0f0f0;
    border-radius: 20px;
    font-weight: 500;
}

.tests-cell {
    text-align: center;
}

.tests-count {
    font-size: 2rem;
    font-weight: 700;
    color: #384C9F;
    line-height: 1;
}

.tests-label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Responsive Styles for Health Packages Table */
@media (max-width: 1024px) {
    .health-packages-table thead th {
        padding: 1rem 0.75rem;
        font-size: 0.85rem;
    }

    .health-packages-table tbody td {
        padding: 1rem 0.75rem;
    }

    .package-name {
        font-size: 1rem;
    }

    .package-price {
        font-size: 1.2rem;
    }

    .parameters-text {
        font-size: 0.9rem;
    }

    .tests-count {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .health-packages-wrapper {
        overflow: visible;
        margin: 1.5rem 0;
        padding: 0;
    }

    .packages-table-wrapper {
        min-width: 100%;
    }

    /* Hide table header on mobile */
    .health-packages-table thead {
        display: none;
    }

    /* Convert table to card layout */
    .health-packages-table,
    .health-packages-table tbody {
        display: block;
        width: 100%;
    }

    .health-packages-table tbody {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .health-packages-table tbody tr {
        display: block;
        background: white;
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border: none;
        transition: all 0.3s ease;
    }

    .health-packages-table tbody tr:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .health-packages-table tbody td {
        display: block;
        padding: 0;
        margin-bottom: 1rem;
        border: none;
    }

    .health-packages-table tbody td:last-child {
        margin-bottom: 0;
    }

    /* Mobile card header */
    .package-info-cell {
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 1rem !important;
        margin-bottom: 1.25rem !important;
    }

    .package-name {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        color: #2c3e50;
    }

    .package-price {
        font-size: 1.6rem;
        color: #384C9F;
    }

    /* Add labels for mobile */
    .parameters-cell::before {
        content: 'Parameters';
        font-weight: 700;
        color: #2c3e50;
        display: block;
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .parameters-text {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1rem;
        color: #555;
    }

    .parameters-meta {
        display: flex;
        flex-direction: row;
        gap: 0.75rem;
        flex-wrap: wrap;
        margin-top: 0.75rem;
    }

    .prereq, .report {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    /* Tests cell */
    .tests-cell {
        text-align: left;
        border-top: 2px solid #f0f0f0;
        padding-top: 1rem !important;
    }

    .tests-cell::before {
        content: 'Number of Tests';
        font-weight: 700;
        color: #2c3e50;
        display: block;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .tests-count {
        font-size: 2rem;
        display: inline-block;
        margin-right: 0.5rem;
    }

    .tests-label {
        font-size: 0.9rem;
        display: inline-block;
        color: #666;
        text-transform: none;
    }
}

@media (max-width: 480px) {
    .health-packages-wrapper {
        margin: 1rem 0;
        padding: 0;
    }

    .packages-table-wrapper {
        min-width: 100%;
    }

    /* Smaller cards on small mobile */
    .health-packages-table tbody {
        gap: 1.25rem;
    }

    .health-packages-table tbody tr {
        padding: 1.25rem;
    }

    .package-info-cell {
        padding-bottom: 0.75rem !important;
        margin-bottom: 1rem !important;
    }

    .package-name {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .package-price {
        font-size: 1.4rem;
    }

    .parameters-cell::before {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    .parameters-text {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 0.75rem;
    }

    .parameters-meta {
        gap: 0.5rem;
    }

    .prereq, .report {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }

    .tests-cell {
        padding-top: 0.75rem !important;
    }

    .tests-cell::before {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .tests-count {
        font-size: 1.75rem;
    }

    .tests-label {
        font-size: 0.85rem;
    }
}

/* Geriatrics rehabilitation specific symptom images */
.geriatrics-symptoms-grid .neuro-symptom-item:nth-child(1) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/geriatric-symptom1.png');
}

.geriatrics-symptoms-grid .neuro-symptom-item:nth-child(2) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/geriatric-symptom2.png');
}

.geriatrics-symptoms-grid .neuro-symptom-item:nth-child(3) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/geriatric-symptom3.png');
}

.geriatrics-symptoms-grid .neuro-symptom-item:nth-child(4) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/geriatric-symptom4.png');
}

.geriatrics-symptoms-grid .neuro-symptom-item:nth-child(5) .neuro-symptom-image {
    content: url('/svayou-healthcare-2/geriatric-symptoms5.png');
}

/* Ensure geriatrics rehabilitation uses the same base styles as neuro-rehabilitation */
/* All existing neuro- classes will work for geriatrics rehabilitation as well */

/* Diagnostic Page Specific Styles */

/* Hero Section for Diagnostic */
.diagnostic-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Welcome Section */
.welcome {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.welcome-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.welcome-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.welcome-doctor-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: white;
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.benefits-highlight {
    color: #e74c3c;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Benefits Section Styles */
.benefits-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.benefits-highlight {
    color: #384C9F;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.benefit-image {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-img {
    /* width: 150px; */
    /* height: 150px; */
    object-fit: contain;
    border-radius: 8px;
}

.benefit-description {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

/* Diagnostics Section */
.diagnostics {
    padding: 80px 0;
    background: #f8f9fa;
}

.diagnostics-header {
    text-align: center;
    margin-bottom: 60px;
}

.diagnostics-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.diagnostics-highlight {
    color: #e74c3c;
}

.diagnostics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.diagnostic-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.diagnostic-card:hover {
    transform: translateY(-5px);
}

.diagnostic-icon {
    margin-bottom: 20px;
}

.diagnostic-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.diagnostic-name {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.diagnostic-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn-diagnostic-more {
    background: #e74c3c;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-diagnostic-more:hover {
    background: #c0392b;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: white;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.brand-name {
    color: #e74c3c;
}

.why-choose-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card-item {
    text-align: center;
    padding: 20px;
}

.feature-icon-wrapper {
    margin-bottom: 20px;
}

.feature-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.doctor-hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: #f8f9fa;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-it-works-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.title-highlight {
    color: #e74c3c;
}

.how-it-works-subtitle {
    font-size: 16px;
    color: #666;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
}

.step-1 { background: #e74c3c; }
.step-2 { background: #3498db; }
.step-3 { background: #27ae60; }

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.step-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn-book-appointment,
.btn-get-directions {
    background: #e74c3c;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.btn-book-appointment:hover,
.btn-get-directions:hover {
    background: #c0392b;
}

.btn-get-directions {
    background: #27ae60;
}

.btn-get-directions:hover {
    background: #229954;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .welcome-content,
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-grid,
    .diagnostics-grid,
    .feature-cards-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-title,
    .diagnostics-title,
    .why-choose-title,
    .how-it-works-title {
        font-size: 28px;
    }
}


/* Doctors Section Component Styles */
.doctors-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.doctors-header {
    text-align: center;
    margin-bottom: 60px;
}

.doctors-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.doctors-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* For larger screens - show all 3 columns */
@media (min-width: 1200px) {
    .doctors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

.doctor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.doctor-image {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.doctor-card:hover .doctor-photo {
    transform: scale(1.05);
}

.doctor-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.doctor-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.doctor-specialty {
    font-size: 0.9rem;
    color: #384C9F;
    font-weight: 500;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.doctor-details {
    margin-bottom: 20px;
    flex: 1;
}

.doctor-experience,
.doctor-languages {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.doctor-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-read-more {
    background: transparent;
    color: #384C9F;
    border: 2px solid #384C9F;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-read-more:hover {
    background: #384C9F;
    color: white;
    transform: translateY(-1px);
}

.btn-appointment {
    background: #FDB714;
    color: #333;
    padding: 10px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-appointment:hover {
    background: #FFC61E;
    transform: translateY(-1px);
    text-decoration: none;
    color: #333;
}

/* Doctor Modal Styles */
.doctor-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.doctor-modal {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.modal-close i {
    font-size: 16px;
    color: #333;
}

.modal-content {
    padding: 40px 30px 30px;
}

.modal-doctor-image {
    text-align: center;
    margin-bottom: 30px;
}

.modal-doctor-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #FDB714;
}

.modal-doctor-info {
    text-align: center;
}

.modal-doctor-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.2;
}

.modal-doctor-specialty {
    font-size: 1.1rem;
    color: #384C9F;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-doctor-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    text-align: left;
}

.detail-row {
    display: flex;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

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

.detail-label {
    font-weight: 600;
    color: #333;
    min-width: 90px;
    flex-shrink: 0;
}

.detail-value {
    color: #666;
    line-height: 1.4;
    flex: 1;
}

.modal-doctor-description {
    text-align: left;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #555;
}

.modal-doctor-description p {
    margin: 0;
}

.modal-actions {
    text-align: center;
}

.btn-book-appointment-modal {
    background: #FDB714;
    color: #333;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-book-appointment-modal:hover {
    background: #FFC61E;
    transform: translateY(-2px);
    text-decoration: none;
    color: #333;
    box-shadow: 0 8px 25px rgba(253, 183, 20, 0.3);
}

/* Responsive Design for Doctors Section */
@media (max-width: 1024px) {
    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .doctors-section {
        padding: 60px 0;
    }
    
    .doctors-title {
        font-size: 2rem;
    }
    
    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .doctor-image {
        height: 220px;
    }
    
    .doctor-info {
        padding: 20px;
    }
    
    .doctor-name {
        font-size: 1.1rem;
    }
    
    .doctor-modal {
        margin: 10px;
        max-height: 85vh;
    }
    
    .modal-content {
        padding: 30px 20px 20px;
    }
    
    .modal-doctor-name {
        font-size: 1.5rem;
    }
    
    .modal-doctor-image img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .doctors-grid {
        grid-template-columns: 1fr;
    }
    
    .doctor-actions {
        flex-direction: column;
    }
    
    .detail-row {
        flex-direction: column;
        gap: 4px;
    }
    
    .detail-label {
        min-width: auto;
    }
}

/* Gastroenterology Page Specific Styles */

/* Hero Section for Gastroenterology */
.gastro-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/images/gastro-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.gastro-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.3) 0%, 
        rgba(118, 75, 162, 0.3) 100%);
    z-index: 1;
}

.gastro-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.gastro-hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: white;
    padding: 80px 20px 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 50px;
    font-size: 14px;
    opacity: 0.9;
    padding-top: 20px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Hero Title */
.gastro-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

/* Ensure HTML content inside gastro hero title maintains styling */
.gastro-hero-title *,
.gastro-hero-title p,
.gastro-hero-title span,
.gastro-hero-title div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-shadow: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
}

/* Ensure HTML content inside gastro hero description maintains styling */
.gastro-hero-description *,
.gastro-hero-description p,
.gastro-hero-description span,
.gastro-hero-description div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-shadow: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
    opacity: inherit;
}

/* Hero Description */
.gastro-hero-description {
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 0 40px 0;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease;
}

/* Using btn-yellow class from main styles.css */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bottom Navigation - Active State Override */
.bottom-nav .bottom-nav-item.active {
    color: #FFD700;
    border-bottom: 2px solid #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gastro-hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .gastro-hero-title {
        font-size: 38px;
    }
    
    .gastro-hero-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .gastro-hero {
        height: 70vh;
        min-height: 450px;
    }
    
    .gastro-hero-content {
        text-align: left;
        padding: 60px 20px 0 20px;
    }
    
    .gastro-hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .gastro-hero-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 90%;
    }
    
    .breadcrumb {
        font-size: 12px;
        margin-bottom: 30px;
        justify-content: flex-start;
        padding-top: 10px;
    }
    
}

@media (max-width: 480px) {
    .gastro-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .gastro-hero-content {
        text-align: left;
        padding: 40px 20px 0 20px;
    }
    
    .gastro-hero-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .gastro-hero-description {
        font-size: 13px;
        line-height: 1.5;
        max-width: 95%;
        margin: 0 0 30px 0;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-start;
        padding-top: 5px;
        margin-bottom: 25px;
    }
    
}

/* Overview Section */
.gastro-overview-section {
    padding: 80px 0;
    background: #ffffff;
}

.gastro-overview-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gastro-overview-header {
    text-align: left;
}

.gastro-overview-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Ensure HTML content inside gastro overview description maintains styling */
.gastro-overview-description *,
.gastro-overview-description p,
.gastro-overview-description span,
.gastro-overview-description div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
}

.gastro-overview-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.gastro-consultation-title {
    font-size: 18px;
    font-weight: 600;
    color: #4A5FC1;
    margin-bottom: 30px;
    line-height: 1.4;
}

.gastro-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
}

.gastro-left-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gastro-right-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

.gastro-left-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.gastro-right-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gastro-overview-image-left, .gastro-overview-image-right {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

.gastro-conditions-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.gastro-condition-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.gastro-condition-icon {
    width: 24px;
    height: 24px;
    background: #4A5FC1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.gastro-condition-icon i {
    color: white;
    font-size: 12px;
}

.gastro-condition-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Overview */
@media (max-width: 1024px) {
    .gastro-overview-grid {
        gap: 40px;
    }
    
    .gastro-overview-image-left, .gastro-overview-image-right {
        width: 100%;
        height: auto;
    }
    
    .gastro-overview-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .gastro-overview-section {
        padding: 60px 0;
    }
    
    .gastro-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gastro-left-column {
        order: 1;
    }
    
    .gastro-right-column {
        order: 2;
    }
    
    .gastro-overview-image-left, .gastro-overview-image-right {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    
    .gastro-right-image {
        justify-content: center;
    }
    
    .gastro-overview-title {
        font-size: 36px;
    }
    
    .gastro-overview-header {
        text-align: center;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .gastro-overview-section {
        padding: 40px 0;
    }
    
    .gastro-overview-title {
        font-size: 32px;
    }
    
    .gastro-overview-image-left, .gastro-overview-image-right {
        width: 100%;
        height: auto;
    }
    
    .gastro-consultation-title {
        font-size: 16px;
    }
    
    .gastro-condition-text {
        font-size: 15px;
    }
    
    .gastro-doctors-title {
        font-size: 32px;
    }
    
    .gastro-doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gastro-doctor-image {
        height: 240px;
    }
}

/* Responsive Design for Doctors Section */
@media (max-width: 1200px) {
    .gastro-doctors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .gastro-doctors-title {
        font-size: 42px;
    }
    
    .gastro-doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .gastro-meet-doctors {
        padding: 60px 0;
    }
    
    .gastro-doctors-title {
        font-size: 36px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .gastro-doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gastro-doctor-image {
        height: 220px;
    }
    
    .gastro-doctor-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .gastro-meet-doctors {
        padding: 40px 0;
    }
    
    .gastro-doctors-title {
        font-size: 28px;
    }
    
    .gastro-doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gastro-doctor-image {
        height: 240px;
    }
    
    .gastro-doctor-info {
        padding: 18px;
    }
    
    .gastro-doctor-name {
        font-size: 18px;
    }
}

/* Meet Our Doctors Section */
.gastro-meet-doctors {
    padding: 80px 0;
    background: #f8f9fa;
}

.gastro-doctors-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-align: left;
    line-height: 1.2;
}

.gastro-doctors-highlight {
    color: #384C9F;
}

.gastro-doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.gastro-doctor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.gastro-doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gastro-doctor-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.gastro-doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gastro-doctor-card:hover .gastro-doctor-photo {
    transform: scale(1.05);
}

.gastro-doctor-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gastro-doctor-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.gastro-doctor-specialty {
    font-size: 14px;
    color: #384C9F;
    font-weight: 500;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gastro-doctor-details {
    margin-bottom: 20px;
    flex: 1;
}

.gastro-experience, .gastro-languages {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.gastro-know-more-link {
    color: #384C9F;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.gastro-know-more-link:hover {
    color: #2a3f7f;
}

.gastro-btn-appointment {
    background: #FDB714;
    color: #333;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.gastro-btn-appointment:hover {
    background: #FFC61E;
    transform: translateY(-1px);
}

/* Treatment Approach Section */
.gastro-treatment-approach {
    padding: 80px 0;
    background: #ffffff;
}

.gastro-treatment-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.gastro-treatment-highlight {
    color: #384C9F;
}

.gastro-treatment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.gastro-treatment-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.gastro-treatment-item:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gastro-treatment-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.gastro-treatment-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.gastro-treatment-item:hover .gastro-treatment-icon-img {
    transform: scale(1.1);
}

.gastro-treatment-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.gastro-treatment-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Treatment Approach */
@media (max-width: 1024px) {
    .gastro-treatment-title {
        font-size: 42px;
    }
    
    .gastro-treatment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .gastro-treatment-approach {
        padding: 60px 0;
    }
    
    .gastro-treatment-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .gastro-treatment-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .gastro-treatment-item {
        padding: 25px 20px;
    }
    
    .gastro-treatment-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .gastro-treatment-approach {
        padding: 40px 0;
    }
    
    .gastro-treatment-title {
        font-size: 32px;
    }
    
    .gastro-treatment-item {
        padding: 20px 15px;
    }
    
    .gastro-treatment-item-title {
        font-size: 16px;
    }
    
    .gastro-treatment-description {
        font-size: 13px;
    }
}

/* Physiotherapy & Rehabilitation Overlay Section */
.gastro-physio-rehab-overlay {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.gastro-physio-background {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.gastro-physio-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gastro-physio-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px;
}

.gastro-physio-content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gastro-physio-overlay-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.3;
}

.gastro-physio-overlay-highlight {
    color: #384C9F;
}

.gastro-physio-overlay-services {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.gastro-physio-overlay-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
}

.gastro-overlay-service-icon {
    width: 20px;
    height: 20px;
    background: #384C9F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
    flex-shrink: 0;
}

.gastro-overlay-service-text {
    color: #333;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}

.gastro-physio-overlay-btn {
    display: inline-block;
    background: #FDB714;
    color: #333;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: fit-content;
}

.gastro-physio-overlay-btn:hover {
    background: #FFC61E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 183, 20, 0.3);
}

/* Responsive Design for Overlay Section */
@media (max-width: 1024px) {
    .gastro-physio-background {
        height: 450px;
    }
    
    .gastro-physio-overlay-content {
        padding: 40px;
    }
    
    .gastro-physio-content-card {
        padding: 35px;
        max-width: 350px;
    }
    
    .gastro-physio-overlay-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .gastro-physio-rehab-overlay {
        padding: 60px 0;
    }
    
    .gastro-physio-background {
        height: 400px;
        border-radius: 15px;
    }
    
    .gastro-physio-overlay-content {
        padding: 30px;
        justify-content: center;
    }
    
    .gastro-physio-content-card {
        padding: 30px;
        max-width: 320px;
    }
    
    .gastro-physio-overlay-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .gastro-physio-overlay-item {
        margin-bottom: 12px;
    }
    
    .gastro-overlay-service-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .gastro-physio-rehab-overlay {
        padding: 40px 0;
    }
    
    .gastro-physio-container {
        padding: 0 15px;
    }
    
    .gastro-physio-background {
        height: 350px;
    }
    
    .gastro-physio-overlay-content {
        padding: 20px;
    }
    
    .gastro-physio-content-card {
        padding: 25px;
        max-width: 280px;
    }
    
    .gastro-physio-overlay-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .gastro-physio-overlay-item {
        margin-bottom: 10px;
    }
    
    .gastro-overlay-service-text {
        font-size: 13px;
    }
    
    .gastro-physio-overlay-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Additional Styles for Content Below Hero */
.gastro-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.gastro-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gastro-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.gastro-section-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

/* Service Cards Grid */
.gastro-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gastro-service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.gastro-service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: #667eea;
}

.gastro-service-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.gastro-service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Mobile Doctor Image Fixes - Override all doctor image heights for mobile */
@media (max-width: 768px) {
    .doctor-image,
    .gm-doctor-image,
    .cardio-doctor-image,
    .neuro-doctor-image,
    .gastro-doctor-image,
    .pulm-doctor-image,
    .neph-doctor-image,
    .ortho-doctor-image,
    .gyn-doctor-image,
    .ped-doctor-image,
    .dental-doctor-image {
        height: auto !important;
    }

    .doctor-image img,
    .gm-doctor-photo,
    .cardio-doctor-photo,
    .neuro-doctor-photo,
    .gastro-doctor-photo,
    .pulm-doctor-photo,
    .neph-doctor-photo,
    .ortho-doctor-photo,
    .gyn-doctor-photo,
    .ped-doctor-photo,
    .dental-doctor-photo {
        object-fit: contain !important;
        object-position: center top !important;
        height: auto !important;
    }

    /* Homepage banner image positioning fix for mobile */
    .homepage-hero {
        background-position: center right !important;
        background-size: cover !important;
    }
}

/* Additional mobile fix for smaller screens */
@media (max-width: 480px) {
    .homepage-hero {
        background-position: right center !important;
        min-height: 500px !important;
    }

    .homepage-hero-content {
        padding: 40px 15px 0 15px !important;
    }

    .homepage-hero-title {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }

    .homepage-hero-description {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
}

/* Meta Editor Panel Styles */
.meta-editor-panel {
    position: fixed;
    top: 120px;
    right: 20px;
    background: white;
    border: 2px solid #384C9F;
    border-radius: 12px;
    padding: 20px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(56, 76, 159, 0.15);
    z-index: 1000;
    font-family: 'Arial', sans-serif;
}

.meta-editor-panel h3 {
    color: #384C9F;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

.meta-field {
    margin-bottom: 15px;
}

.meta-field label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.meta-title-editor input,
.meta-description-editor textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: inherit;
    resize: vertical;
}

/* Readonly input and textarea styling for meta fields display */
.meta-title-editor input[readonly],
.meta-description-editor textarea[readonly] {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    cursor: pointer;
    color: #495057;
    font-size: 0.85rem;
    padding: 8px 10px;
}

.meta-title-editor input[readonly]:hover,
.meta-description-editor textarea[readonly]:hover {
    border-color: #384C9F;
    background-color: rgba(56, 76, 159, 0.05);
}

.meta-title-editor input:focus,
.meta-description-editor textarea:focus {
    outline: none;
    border-color: #384C9F;
    box-shadow: 0 0 0 3px rgba(56, 76, 159, 0.1);
}

.meta-description-editor textarea {
    min-height: 80px;
    line-height: 1.4;
}

.meta-title-editor input::placeholder,
.meta-description-editor textarea::placeholder {
    color: #6c757d;
    font-size: 0.8rem;
}

/* Edit Mode Toggle Button Enhancement */
.edit-mode-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #384C9F;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(56, 76, 159, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    height: auto !important;
    width: auto !important;
    max-height: 60px;
    max-width: 300px;
}

.edit-mode-toggle:hover {
    background: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(56, 76, 159, 0.4);
}

.edit-mode-toggle.active {
    background: #48bb78;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 20px rgba(72, 187, 120, 0.3);
    }
    50% {
        box-shadow: 0 5px 25px rgba(72, 187, 120, 0.6);
    }
    100% {
        box-shadow: 0 5px 20px rgba(72, 187, 120, 0.3);
    }
}

/* Mobile Responsive for Meta Editor */
@media (max-width: 768px) {
    .meta-editor-panel {
        top: 80px;
        right: 10px;
        left: 10px;
        max-width: none;
        width: auto;
        padding: 15px;
    }

    .meta-editor-panel h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .meta-field {
        margin-bottom: 12px;
    }

    .edit-mode-toggle {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Ensure HTML content inside ped hero title maintains styling */
.ped-hero-title *,
.ped-hero-title p,
.ped-hero-title span,
.ped-hero-title div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-shadow: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
}

/* Ensure HTML content inside ped hero description maintains styling */
.ped-hero-description *,
.ped-hero-description p,
.ped-hero-description span,
.ped-hero-description div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
}

/* Ensure HTML content inside ped overview description maintains styling */
.ped-overview-description *,
.ped-overview-description p,
.ped-overview-description span,
.ped-overview-description div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
}

/* Ensure HTML content inside dental hero title maintains styling */
.dental-hero-title *,
.dental-hero-title p,
.dental-hero-title span,
.dental-hero-title div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-shadow: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
}

/* Ensure HTML content inside dental hero description maintains styling */
.dental-hero-description *,
.dental-hero-description p,
.dental-hero-description span,
.dental-hero-description div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
}

/* Ensure HTML content inside dental overview description maintains styling */
.dental-overview-description *,
.dental-overview-description p,
.dental-overview-description span,
.dental-overview-description div {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
}