/* CSS Variables */
:root {
    --primary-color: #FF8000;
    --accent-color: #FFB366;
    --background-color: #FFFFFF;
    --neutral-color: #F5F5F5;
    --text-color: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

main {
    margin: 0;
    padding: 0;
}

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

/* Image Carousel Section */
.image-carousel-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.carousel-container {
    width: 100%;
    position: relative;
    height: 500px;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

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

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.carousel-dots .dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

.carousel-dots .dot:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

/* Ticker Bar */
.ticker-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 0;
    overflow: hidden;
    position: relative;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ticker-content {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
    animation: ticker-scroll 25s linear infinite;
    will-change: transform;
}

.ticker-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ticker-text {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.brand-name {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 600;
    color: #1E88E5;
    letter-spacing: 0.02em;
    margin-left: 0.75rem;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
    display: inline-block;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(30, 136, 229, 0.15);
}

.brand-name::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #E53935, #FF6B6B);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.brand-name:hover {
    color: #1565C0;
    transform: translateY(-1px);
    text-shadow: 0 3px 12px rgba(30, 136, 229, 0.25);
}

.brand-name:hover::after {
    transform: scaleX(1);
}

/* Navigation */
.nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.hero > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path fill="rgba(255,255,255,0.05)" d="M0,0 L1200,300 L0,600 Z"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Stats Section */
.stats-section {
    width: auto;
    margin: 0;
    margin-left: auto;
    padding: 0;
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
}

.hero .stats-numbers {
    display: flex;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    flex-shrink: 0;
    height: 100%;
    align-items: stretch;
}

.stats-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

.stats-number-item {
    padding: 3rem 2rem;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.hero .stats-number-item {
    padding: 1.5rem 1.25rem;
    min-height: 100%;
    min-width: 0;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stats-number-value {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero .stats-number-value {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.stats-number-label {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero .stats-number-label {
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .stats-number-value {
        font-size: 3rem;
    }
    
    .stats-number-label {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .stats-numbers {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-number-item {
        padding: 2rem 1.5rem;
        min-height: 150px;
    }
    
    .stats-number-value {
        font-size: 2.5rem;
    }
    
    .stats-number-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-numbers {
        grid-template-columns: 1fr;
    }
    
    .stats-number-item {
        padding: 1.5rem 1rem;
        min-height: 120px;
    }
    
    .stats-number-value {
        font-size: 2rem;
    }
    
    .stats-number-label {
        font-size: 0.9rem;
    }
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #FF8000 0%, #FFB366 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 128, 0, 0.3);
}

.btn-primary:hover {
    background: #CC6600;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 128, 0, 0.4);
}

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

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

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

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

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.section-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Intro Section */
.intro-section {
    position: relative;
    background: #F4F9FF;
    overflow: hidden;
    padding: 6rem 0 5rem;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: -140px;
    left: 0;
    width: 100%;
    height: 260px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23E0F6FF' fill-opacity='1' d='M0,160L60,154.7C120,149,240,139,360,128C480,117,600,107,720,128C840,149,960,203,1080,229.3C1200,256,1320,256,1380,256L1440,256L1440,320L1380,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-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.intro-section::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 220px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23B0E0E6' fill-opacity='0.55' d='M0,160L40,170.7C80,181,160,203,240,208C320,213,400,203,480,181.3C560,160,640,128,720,144C800,160,880,224,960,240C1040,256,1120,224,1200,197.3C1280,171,1360,149,1400,138.7L1440,128L1440,0L1400,0C1360,0,1280,0,1200,0C1120,0,1040,0,960,0C880,0,800,0,720,0C640,0,560,0,480,0C400,0,320,0,240,0C160,0,80,0,40,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.intro-section .extra-wave {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 240px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23D6F2FF' fill-opacity='0.65' d='M0,224L60,213.3C120,203,240,181,360,197.3C480,213,600,267,720,266.7C840,267,960,213,1080,176C1200,139,1320,117,1380,106.7L1440,96L1440,320L1380,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-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

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

.intro-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}

.intro-content {
    animation: fadeInLeft 0.8s ease;
}

.intro-image {
    animation: fadeInRight 0.8s ease;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-medium);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #87CEEB;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.6s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(135, 206, 235, 0.4), 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: #4DB6AC;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.feature-card:active {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 10px 30px rgba(135, 206, 235, 0.3), 0 3px 10px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 128, 0, 0.12), rgba(77, 182, 172, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-color);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.feature-icon circle {
    fill: var(--primary-color);
    stroke: none;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 5px 10px rgba(135, 206, 235, 0.5));
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
}

/* About Section */
.about-section {
    position: relative;
    padding: 5rem 0 7rem;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 240px;
    background: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220%200%201440%20320%22%3E%3Cpath fill=%22%23dfe3ec%22 d=%22M0,224L80,197.3C160,171,320,117,480,117.3C640,117,800,171,960,186.7C1120,203,1280,181,1360,170.7L1440,160L1440,320L0,320Z%22/%3E%3C/svg%3E") no-repeat center bottom / cover;
    opacity: 0.95;
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -110px;
    left: 0;
    width: 100%;
    height: 260px;
    background: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220%200%201440%20320%22%3E%3Cpath fill=%22%23c6cbda%22 d=%22M0,240L120,245.3C240,251,480,261,720,240C960,219,1200,165,1320,138.7L1440,112L1440,320L1320,320C1200,320,960,320,720,320C480,320,240,320,120,320L0,320Z%22/%3E%3C/svg%3E") no-repeat center bottom / cover;
    opacity: 0.75;
    z-index: 0;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.about-image-wrapper {
    animation: fadeInLeft 0.8s ease;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    margin-bottom: 1.5rem;
}

.clinic-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    display: block;
}

.clickable-image {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clickable-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

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

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

.modal-content {
    background-color: var(--white);
    margin: auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideDown 0.3s ease;
}

.modal-close {
    color: var(--text-light);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    transition: var(--transition);
}

.modal-close:hover,
.modal-close:focus {
    color: var(--primary-color);
    transform: scale(1.2);
}

.modal-body {
    padding: 1rem 0;
    text-align: center;
}

.modal-body h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modal-body p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

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

.about-text {
    animation: fadeInRight 0.8s ease;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-role {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-bio {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Qualifications Section */
.qualifications-section {
    background: var(--neutral-color);
}

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

.qual-card {
    background: #E0F6FF;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #000080;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
}

.qual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.qual-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.qual-card p {
    color: var(--text-light);
}

/* Certificates Section */
.certificates-section,
.certificates-gallery-section {
    padding: 4rem 0;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.certificate-item {
    background: var(--white);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.certificate-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Professional Achievements Section */
.professional-achievements-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.professional-achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23E0F6FF' fill-opacity='0.9' 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,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%3Cpath fill='%23B0E0E6' fill-opacity='0.7' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,213.3C672,224,768,224,864,213.3C960,203,1056,181,1152,181.3C1248,181,1344,203,1392,213.3L1440,224L1440,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-repeat: no-repeat;
    background-position: bottom;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}

.professional-achievements-section .container {
    position: relative;
    z-index: 1;
}

.achievements-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #000080;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
    position: relative;
    z-index: 1;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.achievement-item h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.achievement-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Clinical Approach Section */
.clinical-approach-section {
    padding: 4rem 0;
    background: var(--neutral-color);
    background-image: url('n/Untitled design (30).png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.clinical-approach-section .container {
    position: relative;
    z-index: 1;
}

.approach-content {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-text {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Approach Carousel */
.approach-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.approach-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.approach-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.approach-slide {
    min-width: 100%;
    display: none;
    padding: 3rem;
    text-align: center;
}

.approach-slide.active {
    display: block;
    animation: fadeInSlide 0.5s ease-in-out;
}

.approach-slide-content {
    max-width: 600px;
    margin: 0 auto;
}

.approach-slide-content h4 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.approach-slide-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.approach-carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.approach-carousel-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 128, 0, 0.3);
}

.approach-carousel-btn:hover {
    background: #CC6600;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 128, 0, 0.4);
}

.approach-carousel-btn:active {
    transform: scale(0.95);
}

.approach-carousel-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.approach-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 128, 0, 0.3);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

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

.approach-dot:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

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

/* Expertise Section */
.expertise-section {
    background: var(--neutral-color);
    background-image: url('n/Untitled design (30).png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

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

/* Expertise Carousel */
.expertise-carousel-wrapper {
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
    padding: 1rem 0;
}

.expertise-carousel {
    display: flex;
    gap: 2rem;
    will-change: transform;
}

.expertise-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    flex: 0 0 350px;
    min-width: 350px;
    max-width: 350px;
}

@keyframes expertise-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-350px * 9 - 2rem * 9));
    }
}

/* Infinite scroll - scrolls exactly half the content width */
.expertise-carousel {
    animation: expertise-scroll 60s linear infinite;
}

/* Reset animation on hover for better control */
.expertise-carousel-wrapper:hover .expertise-carousel {
    animation-play-state: paused;
}

.expertise-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px var(--shadow-medium);
    z-index: 10;
    position: relative;
}

.expertise-item h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.expertise-item p {
    color: var(--text-light);
}

.expertise-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
}

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

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

/* Services Section */
.services-section {
    padding: 4rem 0;
}

.services-header {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}

.services-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    gap: 2.75rem;
    align-items: flex-start;
}

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

.service-list-item {
    background: var(--white);
    border-radius: 16px;
    border: 2px solid rgba(255, 128, 0, 0.35);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    padding: 1.5rem 1.75rem;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.service-list-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 128, 0, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.service-list-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(255, 128, 0, 0.18);
    border-color: var(--primary-color);
}

.service-list-item:hover::after {
    opacity: 1;
}

.service-list-item h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.service-list-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
}

.service-gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
    cursor: pointer;
    transition: transform 0.4s ease;
    aspect-ratio: 4 / 5;
}

.service-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 128, 0, 0.25), rgba(255, 128, 0, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-gallery-item:hover {
    transform: translateY(-10px);
}

.service-gallery-item:hover::after {
    opacity: 1;
}

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

/* Service Modals */
.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.service-modal.show {
    display: flex;
}

.service-modal-content {
    background: var(--white);
    border-radius: 24px;
    padding: 2.25rem;
    max-width: 760px;
    width: 100%;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    position: relative;
    text-align: center;
    animation: slideDown 0.4s ease;
}

.service-modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.service-modal-close:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.service-modal-image {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 1.75rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.service-modal-content h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-modal-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    background: var(--white);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

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

.gallery-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: var(--transition);
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: #F4F7FF;
}

.testimonials-wrapper {
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.testimonials-horizontal {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
}

.testimonials-horizontal::-webkit-scrollbar {
    height: 8px;
}

.testimonials-horizontal::-webkit-scrollbar-thumb {
    background: rgba(255, 128, 0, 0.4);
    border-radius: 999px;
}

.testimonial-card {
    scroll-snap-align: start;
    min-width: 360px;
    max-width: 360px;
    background: #EEF3FF;
    border-radius: 18px;
    padding: 1.75rem;
    display: flex;
    gap: 1.25rem;
    box-shadow: 0 12px 30px rgba(46, 91, 255, 0.12);
    transition: var(--transition);
    border: 2px solid rgba(0, 32, 96, 0.35);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(46, 91, 255, 0.18);
    border-color: rgba(0, 32, 96, 0.55);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 128, 0, 0.85), rgba(77, 182, 172, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-name {
    font-weight: 700;
    color: var(--text-color);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1rem;
}

.testimonial-meta {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #E0F3FF 0%, #F8FBFF 100%);
}

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

.contact-info h2,
.contact-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 128, 0, 0.15), rgba(77, 182, 172, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-color);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.contact-item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}

.contact-item p,
.contact-item a {
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.landmark {
    font-weight: 600;
    color: var(--primary-color);
}

.appointment-link-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
}

.appointment-link-box h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Forms */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

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

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: #263238;
    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 h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-landmark {
    font-weight: 600;
    color: var(--accent-color);
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.05rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    transition: var(--transition);
    color: var(--white);
    font-weight: 500;
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@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 Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .intro-grid,
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .intro-image,
    .about-image-wrapper {
        order: -1;
    }

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

    .services-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .testimonials-horizontal {
        padding-bottom: 1rem;
    }

    .testimonial-card {
        min-width: 320px;
        max-width: 320px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        box-shadow: -4px 0 25px rgba(0, 0, 0, 0.12);
        transition: right 0.35s ease;
        z-index: 1000;
        overflow-y: auto;
        border-top-left-radius: 24px;
        border-bottom-left-radius: 24px;
    }

    .nav::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255, 128, 0, 0.08) 0%, rgba(77, 182, 172, 0.08) 100%);
        opacity: 0.65;
        pointer-events: none;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        position: relative;
        flex-direction: column;
        gap: 0.75rem;
        padding: 4.5rem 2.5rem 2.5rem;
        align-items: flex-start;
    }

    .nav-link {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 1.05rem;
        position: relative;
        transition: color 0.3s ease, transform 0.3s ease;
    }

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

    .nav-link:hover {
        color: var(--primary-color);
        transform: translateX(6px);
    }

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

    .mobile-nav-header {
        position: absolute;
        top: 1.25rem;
        right: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .mobile-close-btn {
        background: none;
        border: none;
        font-size: 1.75rem;
        color: var(--primary-color);
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .mobile-close-btn:hover {
        transform: rotate(90deg);
    }

    .brand-name {
        font-family: 'Dancing Script', cursive;
        font-size: 1.4rem;
        font-weight: 600;
        color: #1E88E5;
        margin-left: 0.6rem;
        letter-spacing: 0.02em;
        display: inline-block;
        line-height: 1.2;
        text-shadow: 0 2px 6px rgba(30, 136, 229, 0.15);
    }
    
    .brand-name::after {
        height: 1.5px;
    }
}

@media (max-width: 768px) {
    .approach-slide {
        padding: 2rem 1.5rem;
    }
    
    .approach-slide-content h4 {
        font-size: 1.5rem;
    }
    
    .approach-slide-content p {
        font-size: 1rem;
    }
    
    .approach-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .ticker-content {
        flex-direction: row;
        gap: 0.75rem;
        padding: 0 15px;
        animation: none;
        justify-content: center;
    }
    
    .ticker-duplicate {
        display: none;
    }
    
    .ticker-text {
        font-size: 0.85rem;
        text-align: center;
        white-space: normal;
    }
    
    .ticker-icon {
        flex-shrink: 0;
    }
    
    .carousel-container {
        height: 350px;
    }
    
    .carousel-dots {
        bottom: 15px;
    }
    
    .carousel-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: -2px 0 10px var(--shadow);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 5rem 2rem 2rem;
        align-items: flex-start;
    }

    .nav-link {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid #E0E0E0;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-link.active {
        color: var(--primary-color);
        font-weight: 600;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero > .container {
        padding: 0 1rem;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .page-subtitle {
        font-size: 1rem;
    }

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

    section {
        padding: 3rem 0;
    }

    .features-grid,
    .services-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .qualifications-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-item {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
    }
    
    .expertise-carousel {
        animation: expertise-scroll-mobile 60s linear infinite;
    }
    
    @keyframes expertise-scroll-mobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 9 - 2rem * 9));
        }
    }

    .certificates-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .service-list-item {
        padding: 1.25rem 1.5rem;
    }

    .services-layout {
        grid-template-columns: 1fr;
    }

    .services-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-modal-content {
        padding: 1.25rem;
    }

    .service-modal-content h3 {
        font-size: 1.5rem;
    }

    .service-modal-content p {
        font-size: 1rem;
    }

    .testimonials-wrapper {
        padding: 2rem;
    }

    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonial-avatar {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }

    .contact-item {
        align-items: center;
    }

    .about-section {
        padding: 4rem 0 5rem;
    }

    .about-section::before {
        height: 200px;
        bottom: -40px;
    }

    .about-section::after {
        height: 220px;
        bottom: -140px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        height: 300px;
    }
    
    .container {
        padding: 0 15px;
    }

    .logo img {
        height: 50px;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        box-sizing: border-box;
    }

    .hero .stats-number-value {
        font-size: 1.5rem;
    }

    .hero .stats-number-label {
        font-size: 0.7rem;
    }

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

    .page-title {
        font-size: 1.75rem;
    }

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

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .services-gallery {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .service-gallery-item {
        aspect-ratio: 4 / 4;
    }

    .service-modal-content {
        padding: 1.25rem;
    }

    .service-modal-content h3 {
        font-size: 1.5rem;
    }

    .service-modal-content p {
        font-size: 1rem;
    }

    .testimonials-wrapper {
        padding: 1.75rem;
    }

    .testimonials-summary h2 {
        font-size: 1.6rem;
    }

    .summary-score {
        font-size: 2rem;
    }

    .testimonial-card {
        min-width: 240px;
        max-width: 240px;
        padding: 1.5rem;
    }
}

.testimonials-summary {
    display: flex;
    flex-direction: column;
}

.summary-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.summary-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
}

/* Blog Page */
.alt-hero {
    background: linear-gradient(135deg, #FF8000 0%, #FFB366 100%);
}

.blog-section {
    padding: 4rem 0;
}

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

.blog-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 128, 0, 0.25);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 128, 0, 0.5);
}

.blog-image {
    height: 260px;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.blog-category {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.8;
}

.blog-meta {
    display: flex;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-cta {
    padding: 4rem 0;
}

.blog-cta-card {
    background: linear-gradient(135deg, rgba(255, 128, 0, 0.15), rgba(77, 182, 172, 0.15));
    border-radius: 22px;
    padding: 2.75rem;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 128, 0, 0.35);
}

.blog-cta-card h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.blog-cta-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* FAQ Page */
.faq-section {
    position: relative;
    padding: 4rem 0 2rem;
    background: linear-gradient(180deg, rgba(232, 245, 255, 0.7) 0%, rgba(244, 247, 255, 0.9) 100%);
    overflow: hidden;
    --faq-bg-img: url("blo fq/4.png");
}

.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--faq-bg-img, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35;
    transition: opacity 0.4s ease, background-image 0.4s ease;
    z-index: 0;
}

.faq-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.faq-section > .container {
    position: relative;
    z-index: 2;
}

.faq-heading {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    text-align: center;
    color: var(--primary-color);
}

.faq-subheading {
    max-width: 720px;
    margin: 0.75rem auto 2rem;
    text-align: center;
    color: var(--text-light);
}

.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.faq-tab {
    border: 1.5px solid rgba(255, 128, 0, 0.35);
    background: var(--white);
    color: var(--primary-color);
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.faq-tab:hover,
.faq-tab.active {
    background: linear-gradient(135deg, rgba(255, 128, 0, 0.18), rgba(77, 182, 172, 0.18));
    border-color: var(--primary-color);
}

.faq-card {
    background: var(--white);
    border-radius: 26px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    padding: 2.75rem;
    max-width: 1100px;
    margin: 0 auto;
    border: 2px solid rgba(255, 128, 0, 0.25);
}

.faq-card:hover {
    border-color: rgba(255, 128, 0, 0.45);
}

.faq-card-visible {
    animation: fadeInUp 0.4s ease;
}

.faq-card-header {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.75rem;
}

.faq-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 128, 0, 0.1), rgba(77, 182, 172, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-card-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-color);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.faq-card-title h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 0.35rem;
}

.faq-card-title p {
    color: var(--text-light);
}

.faq-divider {
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 128, 0, 0.4), rgba(77, 182, 172, 0.4));
    margin-bottom: 2rem;
}

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

.faq-question {
    background: #EEF3FF;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(46, 91, 255, 0.12);
    border: 1px solid rgba(255, 128, 0, 0.15);
}

.faq-question h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.faq-question p {
    color: var(--text-light);
    line-height: 1.8;
}

.faq-cta {
    padding: 4rem 0;
}

.faq-cta-card {
    background: linear-gradient(135deg, rgba(255, 128, 0, 0.15), rgba(77, 182, 172, 0.15));
    border-radius: 22px;
    padding: 2.75rem;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 128, 0, 0.35);
}

.faq-cta-card h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.faq-cta-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .faq-card {
        padding: 2rem;
    }

    .faq-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-card-icon {
        width: 60px;
        height: 60px;
    }

    .faq-tabs {
        justify-content: flex-start;
    }
}

.blog-details {
    margin-top: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.blog-list {
    margin: 1rem 0 0;
    padding-left: 1.25rem;
    color: var(--text-light);
    display: grid;
    gap: 0.6rem;
}

.blog-list li strong {
    color: var(--primary-color);
}

.blog-toggle {
    margin-top: 1.25rem;
    align-self: flex-start;
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-toggle::after {
    content: '▾';
    transition: transform 0.3s ease;
}

.blog-toggle.active::after {
    transform: rotate(180deg);
}

.blog-highlight {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.emoji-list {
    list-style: none;
    padding-left: 0;
    margin: 0.75rem 0 0;
}

.mobile-nav-header {
    display: none;
}

.mobile-nav-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--primary-color);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-address {
    display: inline-block;
    color: var(--text-light);
    line-height: 1.8;
    text-decoration: none;
}

.contact-address:hover {
    color: var(--primary-color);
}

.footer-address {
    display: inline-block;
    color: var(--text-light);
    line-height: 1.7;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer-address:hover {
    color: var(--primary-color);
}

.floating-contact {
    position: fixed;
    left: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 1200;
}

.floating-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF8000 0%, #FFB366 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
}

.floating-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .floating-contact {
        left: 15px;
        bottom: 80px;
    }

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

    .floating-btn svg {
        width: 18px;
        height: 18px;
    }
}

