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

:root {
    --primary-color: #A0F3F0;
    --secondary-color: #2c3e50;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Top Header Bar */
.top-header {
    background-color: #e8f4f3;
    padding: 0.5rem 0;
    border-bottom: 1px solid #d0e8e6;
}

.top-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-header-left .header-logo-text {
    font-size: 1rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.top-header-center {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.header-hours {
    font-weight: 600;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-hours::before {
    content: '🕐';
    font-size: 1rem;
}

.header-phone {
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-phone::before {
    content: '📞';
    font-size: 1rem;
}

.header-phone:hover {
    color: var(--accent-color);
    transform: translateY(-1px);
}

.top-header-right .header-email {
    font-size: 0.9rem;
    color: #e91e63;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-header-right .header-email::before {
    content: '✉';
    font-size: 1rem;
}

.top-header-right .header-email:hover {
    color: #c2185b;
    transform: translateY(-1px);
}

/* Navigation */
.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.nav-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.btn-nav-cta {
    padding: 10px 25px;
    background-color: #2ecc71;
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-nav-cta:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-nav-cta-mobile {
    display: none;
    padding: 12px 25px;
    background-color: #2ecc71;
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 1rem;
    text-align: center;
}

.btn-nav-cta-mobile:hover {
    background-color: #27ae60;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #f5f5f5;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay-box {
    position: relative;
    z-index: 2;
    background-color: rgba(44, 62, 80, 0.9);
    max-width: 600px;
    margin-left: 5%;
    padding: 4rem 3rem;
    color: var(--white);
    border-radius: 0;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-hero {
    background-color: #e91e63;
    color: var(--white);
    padding: 15px 35px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
}

.btn-primary-hero:hover {
    background-color: #c2185b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary-hero {
    background-color: transparent;
    color: var(--white);
    border: 2px solid #2ecc71;
    padding: 15px 35px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
}

.btn-secondary-hero:hover {
    background-color: #2ecc71;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #faf8ff 0%, #f5f0ff 50%, #f0f5ff 100%);
    position: relative;
    overflow: hidden;
}

/* SVG Waves Background - Top Wave */
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23A0F3F0' fill-opacity='0.5' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.7;
    animation: waveAnimation 20s ease-in-out infinite;
}

/* SVG Waves Background - Bottom Wave */
.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23A0F3F0' fill-opacity='0.5' d='M0,224L48,208C96,192,192,160,288,160C384,160,480,192,576,208C672,224,768,224,864,208C960,192,1056,160,1152,144C1248,128,1344,128,1392,128L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.7;
    animation: waveAnimationBottom 25s ease-in-out infinite;
}

/* Middle Wave Decorative Element */
.about-wave-middle {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 300px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23A0F3F0' fill-opacity='0.35' d='M0,160L48,144C96,128,192,96,288,96C384,96,480,128,576,144C672,160,768,160,864,138.7C960,117,1056,75,1152,64C1248,53,1344,75,1392,85.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.6;
    transform: translateY(-50%);
    pointer-events: none;
    animation: waveAnimation 30s ease-in-out infinite;
}

/* Wave Animation */
@keyframes waveAnimation {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(-20px) translateY(10px);
    }
}

.about::after {
    animation: waveAnimationBottom 25s ease-in-out infinite reverse;
}

@keyframes waveAnimationBottom {
    0%, 100% {
        transform: rotate(180deg) translateX(0) translateY(0);
    }
    50% {
        transform: rotate(180deg) translateX(20px) translateY(-10px);
    }
}

/* Ensure all content appears above waves */
.about .container {
    position: relative;
    z-index: 1;
}

.about-doctor-main {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.doctor-card {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.4s ease;
    text-align: center;
    max-width: 380px;
    width: 100%;
    border: 2px solid transparent;
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.doctor-image {
    width: 200px;
    height: 240px;
    margin: 0 auto 1.5rem;
    border-radius: 18px;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, #7ED4D1 100%);
    padding: 4px;
}

.doctor-card:hover .doctor-image {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    border-color: #2ecc71;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.doctor-info h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 0.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.doctor-qualifications {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.doctor-specialty {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.doctor-position {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(46, 204, 113, 0.2);
}

.doctor-role {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.doctor-department {
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.doctor-institution {
    color: #666;
    font-size: 0.85rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
}

/* Stats Cards */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border-left: 4px solid var(--primary-color);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-left-color: #2ecc71;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #7ED4D1 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.stat-content h4 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.stat-content p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* About Text Content - Carousel */
.about-carousel-wrapper {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    margin: 0 auto;
    max-width: 1400px;
}

.about-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    perspective: 1500px;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(160, 243, 240, 0.05) 0%, rgba(46, 204, 113, 0.05) 100%);
    border-radius: 20px;
    margin: 2rem 0;
}

.about-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    gap: 3rem;
    padding: 0 2rem;
    will-change: transform;
    touch-action: pan-y pinch-zoom;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.about-text-block.carousel-card {
    background: var(--white);
    padding: 4rem 3.5rem;
    border-radius: 20px;
    border: 2px solid #2ecc71;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex: 0 0 calc(85% - 1.5rem);
    min-width: calc(85% - 1.5rem);
    max-width: calc(85% - 1.5rem);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    opacity: 0.6;
    transform: scale(0.8) translateZ(-150px);
    cursor: pointer;
    position: relative;
}

.about-text-block.carousel-card.active {
    opacity: 1;
    transform: scale(1) translateZ(0);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.about-text-block.carousel-card.prev {
    transform: scale(0.9) translateX(-50px) translateZ(-50px) rotateY(15deg);
    opacity: 0.8;
}

.about-text-block.carousel-card.next {
    transform: scale(0.9) translateX(50px) translateZ(-50px) rotateY(-15deg);
    opacity: 0.8;
}

.about-text-block.carousel-card:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.about-text-block.carousel-card.active:hover {
    transform: scale(1) translateZ(0);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.about-text-block.carousel-card.prev:hover {
    transform: scale(0.9) translateX(-50px) translateZ(-50px) rotateY(15deg);
}

.about-text-block.carousel-card.next:hover {
    transform: scale(0.9) translateX(50px) translateZ(-50px) rotateY(-15deg);
}

.about-text-block h4 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
}

.about-text-block h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #2ecc71);
    border-radius: 2px;
}

.about-text-block p {
    color: #555;
    line-height: 2;
    font-size: 1.1rem;
    margin: 0;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--secondary-color);
    font-size: 1.2rem;
    pointer-events: auto;
    border: 2px solid var(--primary-color);
    outline: none;
}

.carousel-nav:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-nav:disabled:hover {
    transform: translateY(-50%);
    background: var(--white);
    color: var(--secondary-color);
}

/* Carousel Pagination */
.carousel-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    z-index: 100;
    position: relative;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.pagination-dot:hover {
    transform: scale(1.3);
    background: var(--primary-color);
}

.pagination-dot.active {
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    border-color: #2ecc71;
    box-shadow: 0 0 10px rgba(160, 243, 240, 0.5);
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #faf8ff 0%, #f5f0ff 50%, #f0f5ff 100%);
    position: relative;
    overflow: hidden;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-item-left {
    grid-template-columns: 1fr 1fr;
}

.service-item-right {
    grid-template-columns: 1fr 1fr;
}

.service-item-right .service-content {
    order: 2;
}

.service-item-right .service-image {
    order: 1;
}

.service-content {
    padding: 2rem;
}

.service-number {
    width: 60px;
    height: 60px;
    background-color: #2ecc71;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-content h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.clickable-service-heading {
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
}

.clickable-service-heading:hover {
    color: #2ecc71;
    transform: scale(1.05);
}

.clickable-service-heading::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #2ecc71;
    transition: width 0.3s;
}

.clickable-service-heading:hover::after {
    width: 100%;
}

.service-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-content ul {
    list-style: none;
    padding: 0;
}

.service-content ul li {
    padding: 0.8rem 0;
    color: #555;
    position: relative;
    padding-left: 2rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.service-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.2rem;
}

.clickable-service-item {
    cursor: pointer;
    transition: all 0.3s;
    padding-right: 1rem;
    border-radius: 5px;
    padding: 0.8rem 1rem;
    margin: 0.2rem 0;
}

.clickable-service-item:hover {
    color: #2ecc71;
    transform: translateX(5px);
    font-weight: 600;
    background-color: rgba(46, 204, 113, 0.05);
}

.clickable-service-item.active {
    color: #2ecc71;
    font-weight: 600;
    background-color: rgba(46, 204, 113, 0.1);
    transform: translateX(5px);
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    animation: zoomIn 0.3s;
}

.modal-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10001;
}

.modal-close:hover {
    color: #2ecc71;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Doctor Modal */
.doctor-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

.doctor-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-modal-content {
    position: relative;
    background-color: var(--white);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: zoomIn 0.3s;
}

.doctor-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #999;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.doctor-modal-close:hover {
    color: var(--secondary-color);
}

.doctor-modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.doctor-modal-image {
    width: 200px;
    height: 250px;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, var(--primary-color) 0%, #7ED4D1 100%);
    padding: 4px;
}

.doctor-modal-image img {
    border-radius: 16px;
}

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

.doctor-modal-content h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.doctor-modal-qualifications {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.doctor-modal-specialty {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.8rem;
}

.doctor-modal-position {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(46, 204, 113, 0.2);
}

.doctor-modal-role {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.doctor-modal-department {
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.doctor-modal-institution {
    color: #666;
    font-size: 0.85rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
}

.service-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

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

.service-item:hover .service-image img {
    transform: scale(1.05);
}

/* Gallery Section */
.gallery {
    background: linear-gradient(135deg, #faf8ff 0%, #f5f0ff 50%, #f0f5ff 100%);
    position: relative;
    overflow: hidden;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #7ED4D1 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Lab Facilities Section */
.lab-facilities-section {
    margin-top: 4rem;
    text-align: center;
}

.lab-facilities-heading {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.lab-facilities-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #2ecc71);
    border-radius: 2px;
}

.lab-facilities-flyer {
    max-width: 550px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 2px solid #2ecc71;
    position: relative;
}

.lab-facilities-flyer:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.lab-facilities-flyer img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Flyer Clickable Links */
/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.lab-test-description {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(160, 243, 240, 0.1) 100%);
    border-radius: 12px;
    border-left: 4px solid #2ecc71;
}

/* Lab Tests Carousel */
.lab-tests-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    margin-top: 2rem;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.lab-tests-carousel-track {
    display: flex;
    gap: 2.5rem;
    animation: scrollLabTests 35s linear infinite;
    will-change: transform;
    width: fit-content;
}

.lab-tests-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLabTests {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 1.25rem));
    }
}

.lab-test-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #2ecc71;
    flex: 0 0 400px;
    min-width: 400px;
    cursor: default;
    z-index: 2;
}

.lab-test-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.lab-test-content h4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.lab-test-content h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #2ecc71);
    border-radius: 2px;
}

.lab-test-image-placeholder {
    width: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(160, 243, 240, 0.1) 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--secondary-color);
    border: 2px dashed #2ecc71;
}

.lab-test-image-placeholder i {
    font-size: 3rem;
    color: #2ecc71;
}

.lab-test-image-placeholder p {
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

.lab-test-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #faf8ff 0%, #f5f0ff 50%, #f0f5ff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials .section-title {
    font-size: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.testimonials .section-title::after {
    background: linear-gradient(90deg, var(--primary-color), #2ecc71);
    width: 120px;
    height: 5px;
}

/* SVG Waves Background - Top Wave */
.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23A0F3F0' fill-opacity='0.5' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.7;
    animation: waveAnimation 20s ease-in-out infinite;
}

/* SVG Waves Background - Bottom Wave */
.testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23A0F3F0' fill-opacity='0.5' d='M0,224L48,208C96,192,192,160,288,160C384,160,480,192,576,208C672,224,768,224,864,208C960,192,1056,160,1152,144C1248,128,1344,128,1392,128L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.7;
    transform: rotate(180deg);
    animation: waveAnimationBottom 25s ease-in-out infinite;
}

/* Middle Wave Decorative Element for Testimonials */
.testimonials-wave-middle {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 300px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23A0F3F0' fill-opacity='0.35' d='M0,160L48,144C96,128,192,96,288,96C384,96,480,128,576,144C672,160,768,160,864,138.7C960,117,1056,75,1152,64C1248,53,1344,75,1392,85.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.6;
    transform: translateY(-50%);
    pointer-events: none;
    animation: waveAnimation 30s ease-in-out infinite;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    z-index: 2;
}

.testimonials-track {
    display: flex;
    gap: 2.5rem;
    animation: scrollTestimonials 40s linear infinite;
    will-change: transform;
    width: fit-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 1.25rem));
    }
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    flex: 0 0 350px;
    min-width: 350px;
    cursor: default;
    z-index: 2;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #2ecc71);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: rgba(46, 204, 113, 0.1);
    font-weight: bold;
    line-height: 1;
    z-index: 0;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #2ecc71;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}


.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    gap: 0.3rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

.testimonial-rating i {
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-rating i {
    transform: scale(1.2) rotate(5deg);
    animation: starPulse 0.6s ease;
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1.2) rotate(5deg);
    }
    50% {
        transform: scale(1.4) rotate(-5deg);
    }
}

.testimonial-text {
    font-style: italic;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 2;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    padding-left: 1.5rem;
    border-left: 3px solid #2ecc71;
}

.testimonial-author {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 0;
    text-align: right;
    position: relative;
    z-index: 1;
    padding-top: 1rem;
    border-top: 1px solid rgba(46, 204, 113, 0.2);
}

.testimonial-author::before {
    content: '—';
    margin-right: 0.5rem;
    color: #2ecc71;
    font-size: 1.5rem;
}

/* FAQ Section */
.faq {
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    background-image: url('feedback/Untitled design (54).png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    padding: 2rem;
    overflow: visible;
    min-height: 600px;
}

.faq-item {
    position: relative;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(46, 204, 113, 0.3);
}

.faq-item.active {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: #2ecc71;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.15);
}

.faq-question,
.faq-answer {
    position: relative;
    z-index: 2;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer !important;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
}

.faq-question * {
    pointer-events: none !important;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
    background-color: #e9ecef;
}

.faq-item.active .faq-question {
    background-color: rgba(46, 204, 113, 0.1);
    border-bottom: 1px solid rgba(46, 204, 113, 0.2);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin: 0;
}

.faq-question i {
    color: var(--accent-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    padding: 0;
    color: #555;
    line-height: 1.8;
    font-size: 1.15rem;
    margin: 0;
    transition: opacity 0.3s ease-in-out;
}

.faq-item.active .faq-answer p {
    animation: fadeInText 0.4s ease-in-out;
}

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

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #faf8ff 0%, #f5f0ff 50%, #f0f5ff 100%);
    position: relative;
    overflow: hidden;
}

/* Logo Background in Contact Section */
.contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-image: url('logo/1764058046135-678805648.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact .section-title {
    font-size: 3rem;
    margin-bottom: 4rem;
}

.contact .section-title::after {
    background: linear-gradient(90deg, var(--primary-color), #2ecc71);
    width: 100px;
    height: 5px;
}

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

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

.contact-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #2ecc71;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-left-color: var(--primary-color);
}

.contact-item i {
    font-size: 2.2rem;
    color: #2ecc71;
    margin-top: 0.3rem;
    min-width: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.contact-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-item p {
    color: #555;
    line-height: 1.8;
    font-size: 1.15rem;
}

.contact-item a {
    color: #2ecc71;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1.15rem;
}

.contact-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
    transform: translateX(3px);
}

/* Address Link Styling */
.address-link {
    display: inline-block;
    color: #2ecc71;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    line-height: 1.8;
}

.address-link i {
    font-size: 0.85rem;
    margin-left: 0.5rem;
    vertical-align: middle;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.address-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.address-link:hover i {
    opacity: 1;
    transform: translate(3px, -3px);
}

/* Book Appointment Button */
.contact-appointment {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-left: 4px solid var(--primary-color);
}

.contact-appointment:hover {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    border-left-color: #2ecc71;
}

.contact-appointment i {
    color: var(--white);
}

.contact-appointment:hover i {
    color: var(--white);
    transform: scale(1.15);
}

.contact-appointment h4 {
    color: var(--white);
}

.book-appointment-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--white);
    color: #2ecc71;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
}

.book-appointment-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.book-appointment-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.book-appointment-btn:hover i {
    transform: translateX(3px);
}

.contact-form-container {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #2ecc71;
    transition: all 0.3s ease;
}

.contact-form-container:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1.15rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2ecc71;
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
    transform: translateY(-2px);
}

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

.contact-form .btn {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border: none;
    border-radius: 12px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.contact-form .btn:hover {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.contact-form .btn:active {
    transform: translateY(0);
}

/* Contact Map Container */
.contact-map-container {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(46, 204, 113, 0.2);
}

.contact-map-container h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-map-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-map-wrapper:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 12px;
    display: block;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #bbb;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section p a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-section p a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Footer Social Media Links */
.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-radius: 8px;
    padding-left: 0.5rem;
}

.social-link i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.social-link span {
    font-size: 1rem;
    font-weight: 500;
}

.social-link:hover {
    color: var(--white);
    background-color: rgba(160, 243, 240, 0.1);
    transform: translateX(5px);
}

.social-link:hover i {
    transform: scale(1.2);
}

/* Instagram specific hover */
.social-link[aria-label="Instagram"]:hover {
    color: #E4405F;
}

.social-link[aria-label="Instagram"]:hover i {
    color: #E4405F;
}

/* Facebook specific hover */
.social-link[aria-label="Facebook"]:hover {
    color: #1877F2;
}

.social-link[aria-label="Facebook"]:hover i {
    color: #1877F2;
}

/* Google specific hover */
.social-link[aria-label="Google Profile"]:hover {
    color: #4285F4;
}

.social-link[aria-label="Google Profile"]:hover i {
    color: #4285F4;
}

/* WhatsApp specific hover */
.social-link[aria-label="WhatsApp"]:hover {
    color: #25D366;
}

.social-link[aria-label="WhatsApp"]:hover i {
    color: #25D366;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #bbb;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .top-header-container {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0.5rem 10px;
    }

    .top-header-center {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .btn-nav-cta {
        display: none;
    }

    .btn-nav-cta-mobile {
        display: inline-block;
    }

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

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

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

    .hero {
        min-height: 70vh;
    }

    .hero-overlay-box {
        margin-left: 0;
        margin: 2rem auto;
        max-width: 90%;
        padding: 2.5rem 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        text-align: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-carousel-wrapper {
        padding: 1rem 0;
    }

    .about-carousel-container {
        padding: 2rem 0;
    }

    .about-carousel-track {
        gap: 2rem;
        padding: 0 1rem;
    }

    .about-text-block.carousel-card {
        flex: 0 0 calc(92% - 1rem);
        min-width: calc(92% - 1rem);
        max-width: calc(92% - 1rem);
        padding: 2.5rem 1.5rem;
    }

    .about-carousel-track {
        gap: 1.5rem;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

    .about-text-block h4 {
        font-size: 1.4rem;
    }

    .about-text-block p {
        font-size: 1rem;
    }

    .doctor-image {
        width: 200px;
        height: 250px;
    }

    .doctor-card {
        padding: 2rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .doctor-modal-content {
        padding: 2rem 1.5rem;
    }

    .doctor-modal-image {
        width: 180px;
        height: 220px;
    }

    .about-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-card {
        flex: 1;
        min-width: 150px;
    }

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

    .service-item-right .service-content {
        order: 1;
    }

    .service-item-right .service-image {
        order: 2;
    }

    .service-image {
        min-height: 300px;
    }

    .service-content {
        padding: 1.5rem;
        text-align: center;
    }

    .service-number {
        margin: 0 auto 1rem;
    }

    .service-content h3 {
        font-size: 1.6rem;
        text-align: center;
    }

    .service-content p,
    .service-content ul {
        text-align: left;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .lab-facilities-section {
        margin-top: 3rem;
    }

    .lab-facilities-heading {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .lab-facilities-flyer {
        max-width: 100%;
        border-radius: 15px;
    }

    .lab-test-description {
        font-size: 1.1rem;
        margin-top: 1.5rem;
        margin-bottom: 2rem;
        padding: 0.75rem;
    }

    .lab-tests-carousel-container {
        padding: 1.5rem 0;
    }

    .lab-test-card {
        flex: 0 0 320px;
        min-width: 320px;
        padding: 2rem 1.5rem;
    }

    .lab-test-content h4 {
        font-size: 1.3rem;
    }

    .lab-test-image-placeholder {
        min-height: 250px;
    }

    .testimonials-container {
        padding: 1.5rem 0;
    }

    .testimonial-card {
        flex: 0 0 300px;
        min-width: 300px;
        padding: 2rem 1.5rem;
    }

    .testimonials-track {
        gap: 2rem;
        animation-duration: 35s;
    }

    .testimonials .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .testimonial-card::after {
        font-size: 4rem;
        top: 15px;
        right: 20px;
    }

    .testimonial-rating {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }

    .testimonial-text {
        font-size: 1.05rem;
        padding-left: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .testimonial-author {
        font-size: 1.1rem;
    }

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

    .contact .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .faq-container {
        padding: 1.5rem;
        min-height: 500px;
    }

    .faq-question {
        padding: 1.25rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }

    .faq-answer p {
        font-size: 1.05rem;
    }

    .contact-item {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .contact-item i {
        font-size: 1.8rem;
    }

    .contact-item h4 {
        font-size: 1.3rem;
    }

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

    .contact-item a {
        font-size: 1.05rem;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 1.05rem;
        padding: 15px 18px;
    }

    .contact-form .btn {
        font-size: 1.1rem;
        padding: 15px 25px;
    }

    .contact-map-container {
        margin-top: 2.5rem;
        padding-top: 2.5rem;
    }

    .contact-map-container h3 {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }

    .contact-map-wrapper iframe {
        height: 350px;
    }

    .contact::before {
        width: 400px;
        height: 400px;
        opacity: 0.06;
    }

    /* Footer Mobile Centering */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4 {
        text-align: center;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .footer-section ul li {
        text-align: center;
    }

    .footer-section p {
        text-align: center;
    }

    .footer-social-links {
        align-items: center;
    }

    .social-link {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .top-header-left .header-logo-text,
    .top-header-center,
    .top-header-right .header-email {
        font-size: 0.75rem;
    }

    .hero {
        min-height: 60vh;
    }

    .hero-overlay-box {
        padding: 2rem 1.5rem;
        margin: 1rem auto;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .nav-logo span {
        font-size: 1rem;
    }

    .contact .section-title {
        font-size: 2rem;
    }

    .testimonials .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .service-content {
        text-align: center;
    }

    .service-number {
        margin: 0 auto 1rem;
    }

    .service-content h3 {
        text-align: center;
    }

    .service-content p,
    .service-content ul {
        text-align: left;
    }

    .lab-facilities-section {
        margin-top: 2.5rem;
    }

    .lab-facilities-heading {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }

    .lab-facilities-flyer {
        border-radius: 12px;
    }

    .lab-test-description {
        font-size: 1rem;
        margin-top: 1.25rem;
        margin-bottom: 1.75rem;
        padding: 0.75rem;
    }

    .lab-tests-carousel-container {
        padding: 1.25rem 0;
    }

    .lab-test-card {
        flex: 0 0 280px;
        min-width: 280px;
        padding: 1.75rem 1.25rem;
    }

    .lab-test-content h4 {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }

    .lab-test-image-placeholder {
        min-height: 200px;
    }

    .lab-test-image-placeholder i {
        font-size: 2.5rem;
    }

    .testimonial-card {
        padding: 1.75rem 1.25rem;
    }

    .testimonial-card::after {
        font-size: 3.5rem;
        top: 10px;
        right: 15px;
    }

    .testimonial-rating {
        font-size: 1.1rem;
    }

    .testimonial-text {
        font-size: 1rem;
        padding-left: 1rem;
    }

    .testimonial-author {
        font-size: 1rem;
    }

    .testimonial-card {
        flex: 0 0 280px;
        min-width: 280px;
        padding: 1.75rem 1.25rem;
    }

    .faq-container {
        padding: 1rem;
        min-height: 400px;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }

    .faq-answer p {
        font-size: 1rem;
    }

    .testimonials-track {
        gap: 1.5rem;
        animation-duration: 30s;
    }

    .contact-item {
        padding: 1.25rem;
        gap: 1.25rem;
    }

    .contact-item i {
        font-size: 1.6rem;
        min-width: 35px;
    }

    .contact-item h4 {
        font-size: 1.2rem;
    }

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

    .contact-item a {
        font-size: 1rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

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

    .form-group input,
    .form-group textarea {
        font-size: 1rem;
        padding: 14px 16px;
    }

    .contact-form .btn {
        font-size: 1.05rem;
        padding: 14px 20px;
    }

    .contact-map-container {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .contact-map-container h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .contact-map-wrapper iframe {
        height: 300px;
    }

    .contact::before {
        width: 300px;
        height: 300px;
        opacity: 0.05;
    }

    /* Footer Mobile Centering */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4 {
        text-align: center;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .footer-section ul li {
        text-align: center;
    }

    .footer-section p {
        text-align: center;
    }

    .footer-social-links {
        align-items: center;
    }

    .social-link {
        justify-content: center;
    }
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
    border: none;
    box-shadow: none;
}

.floating-btn i {
    font-size: 2.5rem;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.floating-call i {
    color: #e91e63;
}

.floating-call:hover i {
    color: #c2185b;
    transform: scale(1.15);
    filter: drop-shadow(0 4px 8px rgba(233, 30, 99, 0.5));
}

.floating-whatsapp i {
    color: #25D366;
}

.floating-whatsapp:hover i {
    color: #128C7E;
    transform: scale(1.15);
    filter: drop-shadow(0 4px 8px rgba(37, 211, 102, 0.5));
}

.floating-btn:active i {
    transform: scale(0.9);
}

/* Mobile Responsive for Floating Buttons */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
    }

    .floating-btn i {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .floating-btn i {
        font-size: 2rem;
    }
}

