:root {
    --primary-color: #102343;
    --secondary-color: #F88379;
    --accent-orange: #f1971f;
    --accent-purple: #662a66;
    --accent-green: #91c100;
    --light-bg: #ffffff;
    --gray-bg: #f2f2f2;
    --dark-text: #6f6f6f;
    --text-dark: #1a1a2e;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
}

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

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.header-top {
    background: #102343;
    padding: 8px 0;
    color: #fff;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-top .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.header-contact {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.header-contact a i {
    font-size: 13px;
    color: var(--secondary-color);
}

.header-contact a:hover {
    color: var(--secondary-color);
}

.header-social-lang {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s;
}

.social-link:hover {
    background: #f1971f;
    color: #102343;
    transform: translateY(-2px);
}

.lang-toggle {
    display: flex;
    gap: 5px;
}

.lang-toggle button {
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,0.5);
    background: transparent;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s;
}

.lang-toggle button.active,
.lang-toggle button:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

.site-header, .header-main {
    background: #fff !important;
}

.header-top {
    background: #102343 !important;
}

.header-main {
    background: #fff;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-height: 70px;
    position: relative;
}

.header-main .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    min-height: 70px;
    gap: 20px;
}

.header-main .logo {
    flex-shrink: 0;
}

.header-main .logo img {
    width: 150px;
    height: auto;
}

.header-main .main-nav {
    display: flex;
    align-items: center;
}

@media (max-width: 992px) {
    .header-main .logo img {
        width: 130px;
    }
    
    .header-contact {
        gap: 20px;
    }
    
    .header-contact a {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .site-header {
        position: relative;
    }
    
    main {
        padding-top: 0;
    }
    
    .header-top {
        padding: 5px 0;
    }
    
    .header-top .container {
        padding: 0 15px !important;
    }
    
    .header-top-content {
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    
    .header-contact {
        gap: 15px;
    }
    
    .header-contact a {
        font-size: 11px;
    }
    
    .header-contact a span {
        display: none;
    }
    
    .header-contact a i {
        font-size: 15px;
    }
    
    .header-social-lang {
        gap: 10px;
    }
    
    .social-links {
        gap: 5px;
    }
    
    .social-link {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
    
    .lang-toggle button {
        padding: 3px 8px;
        font-size: 11px;
    }
    
    .header-main {
        min-height: 55px;
    }
    
    .header-main .container {
        padding: 8px 15px !important;
        min-height: 55px;
    }
    
    .header-main .logo img {
        width: 100px;
    }
    
    .nav-toggle {
        font-size: 20px;
        padding: 5px;
        color: #102343;
    }
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
}

.logo-img {
    flex-shrink: 0;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

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

.logo-img {
    flex-shrink: 0;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

.logo-text h1 {
    font-size: 26px;
    color: var(--primary-color);
    line-height: 1.1;
}

.logo .tagline {
    font-size: 11px;
    color: var(--secondary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #102343;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-menu a {
    color: #102343;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

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

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

/* Dropdown */
.nav-menu li {
    position: relative;
}

.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 5px;
    z-index: 100;
}

.nav-menu li:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 13px;
    text-transform: none;
}

.dropdown-menu a::after {
    display: none;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 900px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.slide-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: -1;
}

.slide-content h1 {
    font-size: 52px;
    margin-bottom: 15px;
    color: #fff;
}

.slide-content p {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #fff;
}

.slide-content .btn {
    margin-top: 10px;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--secondary-color);
    color: #fff;
}

.btn-primary:hover {
    background: #e06a5f;
    transform: translateY(-2px);
}

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

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

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Doctor Profile Section */
.doctor-profile {
    padding: 80px 0;
    background: var(--gray-bg);
}

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

.profile-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: 4px solid var(--primary-color);
}

.profile-info h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.profile-info .credentials {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.profile-info .designation {
    color: var(--dark-text);
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.profile-info p {
    color: var(--dark-text);
    margin-bottom: 20px;
    text-align: justify;
}

/* Stats Counter */
.stats-section {
    padding: 60px 0;
    background: #102343;
    color: #fff;
}

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

.stat-item h3 {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--dark-text);
    font-size: 16px;
}

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

.service-box {
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 50px 0;
    padding: 0 20px 25px;
    text-align: center;
    position: relative;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

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

.service-box:hover .read-more {
    background: var(--secondary-color);
}

.service-box::before,
.service-box::after {
    content: '';
    width: 25px;
    height: 25px;
    border-top: 7px solid var(--primary-color);
    border-right: 7px solid var(--primary-color);
    position: absolute;
    top: -7px;
    right: -7px;
}

.service-box::after {
    border-top: none;
    border-right: none;
    border-bottom: 7px solid var(--primary-color);
    border-left: 7px solid var(--primary-color);
    top: auto;
    right: auto;
    bottom: -7px;
    left: -7px;
}

.service-icon {
    color: #fff;
    background: var(--primary-color);
    width: 80px;
    height: 70px;
    padding: 10px 0 5px;
    margin: 0 auto 20px;
    border-radius: 0 0 15px 15px;
    position: relative;
}

.service-icon::before {
    content: '';
    background: var(--primary-color);
    width: calc(100% + 14px);
    height: 10px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.service-icon span::before,
.service-icon span::after {
    content: '';
    background-color: var(--primary-color);
    height: 10px;
    width: 15px;
    border-radius: 10px 10px 0 0;
    position: absolute;
    left: -15px;
    top: -10px;
}

.service-icon span::after {
    left: auto;
    right: -15px;
}

.service-box h4 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    font-family: 'Inter', sans-serif;
}

.service-box .description {
    font-size: 14px;
    color: var(--dark-text);
    line-height: 1.6;
    text-align: justify;
}

.service-box .read-more {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: var(--primary-color);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s;
}

a.service-box {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-box .read-more:hover {
    background: var(--secondary-color);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: var(--gray-bg);
}

.gallery-slideshow {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.slideshow-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.gallery-slide {
    display: none;
    animation: fade 0.5s;
}

.gallery-slide img {
    width: 100%;
    max-height: 500px;
    height: auto;
    object-fit: contain;
    filter: blur(2px) brightness(0.95);
}

.gallery-slide.active {
    display: block;
}

@keyframes fade {
    from {opacity: 0.4} 
    to {opacity: 1}
}

.gallery-prev, .gallery-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s;
    border-radius: 0 3px 3px 0;
    background: rgba(0,0,0,0.4);
    user-select: none;
}

.gallery-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.gallery-prev:hover, .gallery-next:hover {
    background: var(--primary-color);
}

.gallery-dots {
    text-align: center;
    margin-top: 20px;
}

.gallery-dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
}

.gallery-dot.active, .gallery-dot:hover {
    background-color: var(--primary-color);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.3s;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16,35,67,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #fff;
    font-size: 30px;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background: #fff;
    border: 10px solid var(--primary-color);
    padding: 40px 30px 25px;
    text-align: center;
    position: relative;
    margin: 20px;
}

.testimonial-card .title {
    padding: 10px 0;
    margin: 0 -20px 20px;
    border: 7px solid #fff;
    background: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    position: relative;
}

.testimonial-card .description {
    color: var(--dark-text);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.testimonial-card .post {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Modern Testimonial Cards */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card.modern {
    background: #fff;
    border-radius: 16px;
    padding: 35px 30px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(16,35,67,0.08);
}

.testimonial-card.modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(16,35,67,0.12);
}

.testimonial-card.modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    color: rgba(16,35,67,0.06);
    line-height: 1;
}

.rating {
    margin-bottom: 15px;
    display: flex;
    gap: 3px;
    justify-content: center;
}

.rating .star {
    color: #ddd;
    font-size: 18px;
}

.rating .star.filled {
    color: #f1971f;
}

.testimonial-text {
    color: var(--dark-text);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    min-height: 80px;
    font-style: italic;
}

.patient-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.patient-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.patient-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.patient-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-color);
}

.patient-service {
    font-size: 13px;
    color: #999;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card.modern {
        padding: 30px 25px 25px;
    }
}

/* Appointment Section */
.appointment-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a5c 100%);
    color: #fff;
}

.appointment-section .section-title h2,
.appointment-section .section-title p {
    color: #fff;
}

.appointment-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
}

.form-group select option {
    background: #1e3a5f;
    color: #fff;
    padding: 10px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255,255,255,0.15);
}

.form-success-msg {
    background: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

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

.contact-info {
    padding: 30px;
    background: var(--gray-bg);
    border-radius: 20px;
}

.contact-info h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 25px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item h4 {
    color: var(--secondary-color);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.contact-item p {
    color: var(--dark-text);
    font-size: 15px;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Hours Grid */
.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-grid .day {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background: #fff;
    border-radius: 8px;
}

.hours-grid .day span:first-child {
    font-weight: 600;
    color: var(--primary-color);
}

.hours-grid .day span:last-child {
    color: var(--dark-text);
}

/* Footer */
.site-footer {
    background: var(--primary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section p {
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.9;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
}

.footer-bottom span {
    color: var(--secondary-color);
}

/* Sticky CTA */
.sticky-cta {
    position: relative;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sticky-cta .cta-btn {
    padding: 14px 24px;
    background: var(--secondary-color);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(248,131,121,0.5);
    transition: all 0.3s;
}

.sticky-cta .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(248,131,121,0.6);
}

.whatsapp-btn {
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37,211,102,0.5);
    transition: transform 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

/* WhatsApp Popup */
.whatsapp-popup {
    display: none;
    position: relative;
    left: 0;
    top: 0;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.whatsapp-popup.show {
    display: flex;
}

.whatsapp-popup-content {
    background: #e0e1e6;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    position: relative;
    animation: fadeInUp 0.3s ease;
}

.whatsapp-popup-content img {
    border-radius: 10px;
    max-width: 100%;
}

.whatsapp-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.whatsapp-popup-close::before,
.whatsapp-popup-close::after {
    content: '';
    position: absolute;
    top: 14px;
    width: 16px;
    height: 3px;
    background: #000;
}

.whatsapp-popup-close::before {
    transform: rotate(45deg);
    left: 7px;
}

.whatsapp-popup-close::after {
    transform: rotate(-45deg);
    right: 7px;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
    .profile-content { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .hero-slider { height: 600px; }
}

@media (max-width: 992px) {
    .footer-content { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .profile-content { grid-template-columns: 1fr; gap: 30px; }
    .profile-image { max-width: 400px; margin: 0 auto; }
    .profile-info h2 { font-size: 32px; }
    .section-title h2 { font-size: 32px; }
    .services-grid { gap: 20px; }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-toggle { display: block; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        max-height: 70vh;
        overflow-y: auto;
        gap: 0;
    }
    .nav-menu.active { display: flex; }
    .nav-menu li { border-bottom: 1px solid #eee; }
    .nav-menu li:last-child { border-bottom: none; }
    .nav-menu a {
        display: block;
        padding: 12px 10px;
        font-size: 15px;
        text-transform: none;
    }
    .nav-menu .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        background: #f8f9fa;
        border-radius: 8px;
        margin-top: 5px;
    }
    .dropdown-menu a { padding: 10px 15px; }
    
    /* Mobile Hero */
    .hero-slider { height: 500px; }
    .slide-content h1 { font-size: 28px !important; }
    .slide-content p { font-size: 16px !important; padding: 0 15px; }
    .slide-content .btn { padding: 12px 24px; font-size: 13px; }
    
    /* Mobile Grids */
    .services-grid { grid-template-columns: 1fr; gap: 25px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .footer-content { grid-template-columns: 1fr; gap: 30px; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
    
    /* Mobile Typography */
    .section-title h2 { font-size: 28px; }
    .section-title p { font-size: 15px; }
    .profile-info h2 { font-size: 28px; }
    .stat-item h3 { font-size: 36px; }
    .stat-item p { font-size: 12px; }
    
    /* Mobile Forms */
    .appointment-form { padding: 25px; }
    .form-group input, .form-group select, .form-group textarea { padding: 12px 15px; }
    
    /* Mobile Sticky CTA */
    .sticky-cta { bottom: 15px; right: 15px; }
    .sticky-cta .cta-btn { padding: 12px 18px; font-size: 12px; }
    .whatsapp-btn { width: 48px; height: 48px; }
    .whatsapp-btn svg { width: 24px; height: 24px; }
    
    /* Mobile Header */
    .header-top .container { gap: 10px; font-size: 12px; }
    .header-top a span { display: none; }
    .header-main .logo img { width: 120px; }
    
    /* Mobile Footer */
    .site-footer { padding: 40px 0 20px; }
    .footer-section h3 { font-size: 18px; }
    .footer-bottom { font-size: 12px; }
    
    /* Mobile Emergency Banner */
    .emergency-banner { 
        font-size: 11px; 
        padding: 6px 10px;
        top: 65px;
    }
    .emergency-banner .container { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 576px) {
    .hero-slider { height: 450px; }
    .slide-content h1 { font-size: 24px !important; }
    .slide-content p { font-size: 14px !important; }
    .services-grid { gap: 20px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .stat-item h3 { font-size: 32px; }
    .stat-item p { font-size: 11px; letter-spacing: 0.5px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .gallery-item img { height: 150px; }
    .appointment-form { padding: 20px 15px; }
    .profile-image { margin-bottom: 20px; }
    .profile-info h2 { font-size: 24px; }
    .profile-info .credentials { font-size: 16px; }
    .profile-info .designation { font-size: 13px; }
    .profile-info p { font-size: 14px; }
    .section-title h2 { font-size: 24px; }
    .section-title p { font-size: 14px; }
    .counter { font-size: 32px !important; }
    .contact-wrapper { gap: 30px; }
    .contact-info { padding: 20px; }
    .contact-info h3 { font-size: 22px; }
    .map-container iframe { height: 250px; }
    .doctor-profile { padding: 50px 0; }
    .services-section { padding: 50px 0; }
    .stats-section { padding: 40px 0; }
    .contact-section { padding: 50px 0; }
    .appointment-section { padding: 50px 0; }
    .testimonials-section { padding: 50px 0; }
    .service-box { padding: 0 15px 20px; }
    .service-box h4 { font-size: 16px; }
    .service-box .description { font-size: 13px; }
}

/* Extra small screens */
@media (max-width: 375px) {
    .hero-slider { height: 400px; }
    .slide-content h1 { font-size: 20px !important; }
    .slide-content p { font-size: 13px !important; }
    .section-title h2 { font-size: 22px; }
    .stat-item h3 { font-size: 28px; }
    .appointment-form { padding: 15px; }
}

/* Scroll animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Header logo positioning */
.header-main .logo {
    flex-shrink: 0 !important;
    margin-left: 0 !important;
    margin-right: 20px !important;
}
.site-footer .footer-section img {
    background: #fff !important;
    border-radius: 10px !important;
    padding: 10px !important;
}

/* Hide hero slider dots */
.hero-slider .slider-dot { display: none; }


/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(90deg, #f1971f, #F88379);
    padding: 8px 15px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.emergency-banner a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
    margin-left: 5px;
}

.emergency-banner a:hover {
    color: #102343;
}

.emergency-banner .container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.emergency-banner p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.emergency-banner p i {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .emergency-banner {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    .emergency-banner .container {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .emergency-banner p {
        font-size: 11px;
        gap: 5px;
    }
    
    .emergency-banner a {
        margin-left: 0;
        margin-right: 5px;
    }
}


/* About Timeline Section */
.about-timeline-item {
    margin-bottom: 60px;
}

.about-timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-icon i {
    color: #fff;
    font-size: 22px;
}

.timeline-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-entry {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 25px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(16,35,67,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-entry:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(16,35,67,0.08);
    border-color: var(--secondary-color);
}

.timeline-entry::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-entry:hover::before {
    opacity: 1;
}

.entry-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(16,35,67,0.06), rgba(248,131,121,0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.entry-icon i {
    color: var(--primary-color);
    font-size: 18px;
}

.entry-details {
    flex: 1;
}

.entry-title {
    font-weight: 700;
    font-size: 17px;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.entry-subtitle {
    font-size: 14px;
    color: var(--dark-text);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-header h3 {
        font-size: 20px;
    }
    
    .timeline-entry {
        padding: 15px 20px;
        gap: 15px;
    }
    
    .entry-icon {
        width: 36px;
        height: 36px;
    }
    
    .entry-icon i {
        font-size: 16px;
    }
    
    .entry-title {
        font-size: 15px;
    }
    
    .entry-subtitle {
        font-size: 13px;
    }
}
/* Social Links in Header */
.social-link {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.social-link:hover {
    background: #f1971f;
    color: #102343;
    transform: translateY(-2px);
}

/* Mobile Header Fixes */
@media (max-width: 768px) {
    @media (max-width: 480px) {
    .header-top-content {
        flex-wrap: nowrap;
    }
    
    .header-contact {
        gap: 12px;
    }
    
    .header-contact a {
        font-size: 11px;
    }
    
    .header-contact a i {
        font-size: 14px;
    }
    
    .social-link {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
    
    .lang-toggle button {
        padding: 3px 6px;
        font-size: 10px;
    }
}

/* Accordion Styles */
.about-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 18px 25px;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #102343;
    transition: all 0.3s;
    text-align: left;
}

.accordion-header:hover {
    background: #f8f9fa;
}

.accordion-header i.fa-chevron-down {
    transition: transform 0.3s;
}

.accordion-header.active i.fa-chevron-down {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f8f9fa;
}

.accordion-content.active {
    max-height: 500px;
}

.accordion-content ul {
    list-style: none;
    padding: 20px 25px;
    margin: 0;
}

.accordion-content ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 15px;
    color: #555;
}

.accordion-content ul li:last-child {
    border-bottom: none;
}

.accordion-content ul li i {
    color: #f1971f;
    margin-right: 10px;
}

/* Animated Counter */
.counter {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* Nav CTA Button */
.nav-cta {
    background: #102343 !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 35, 67, 0.4);
}

/* Footer Appointment Form */
.footer-appointment-form input,
.footer-appointment-form select {
    transition: all 0.3s;
}

.footer-appointment-form input:focus,
.footer-appointment-form select:focus {
    border-color: #f1971f !important;
    background: rgba(255,255,255,0.15) !important;
}

/* Responsive styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* Push main content below fixed header on desktop */
@media (min-width: 769px) {
    main {
        padding-top: 95px;
    }
}

@media (max-width: 768px) {
    main {
        padding-top: 0;
    }
}

/* Footer Grid Layout */
.site-footer .container {
    display: block;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 0;
}

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

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

.footer-logo-wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo {
    width: 180px;
    height: auto;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 15px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #f1971f;
    transform: translateY(-2px);
}

.footer-links h3, .footer-contact h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #F88379;
    border-bottom: 2px solid rgba(248,131,121,0.3);
    padding-bottom: 10px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav a {
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    padding: 4px 0;
}

.footer-nav a:hover {
    color: #F88379;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-info p {
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-info p i {
    color: #F88379;
    width: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-info p a {
    color: #25D366;
}

/* Mobile Footer */
@media (max-width: 768px) {
    .site-footer .footer-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        gap: 20px !important;
        padding: 30px 0 !important;
    }
    
    .site-footer .footer-about {
        width: 100%;
        text-align: center;
    }
    
    .site-footer .footer-links, 
    .site-footer .footer-contact {
        width: 48%;
        text-align: left;
    }
    
    .footer-logo-wrapper {
        display: inline-block;
        padding: 12px;
    }
    
    .site-footer .footer-logo {
        width: 140px;
        margin: 0 auto;
    }
    
    .site-footer .footer-desc {
        font-size: 14px;
        text-align: center;
    }
    
    .site-footer .footer-social {
        display: flex !important;
        gap: 12px;
        justify-content: center;
    }
    
    .site-footer .footer-social a {
        width: 36px !important;
        height: 36px !important;
        font-size: 14px;
        display: inline-flex !important;
    }
    
    .site-footer .footer-links h3, 
    .site-footer .footer-contact h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .site-footer .footer-nav {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .site-footer .footer-nav a {
        font-size: 13px;
    }
    
    .site-footer .footer-contact-info {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .site-footer .footer-contact-info p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .site-footer .footer-grid {
        gap: 15px;
        padding: 20px 0;
    }
    
    .site-footer .footer-logo {
        width: 120px;
    }
    
    .site-footer .footer-links, 
    .site-footer .footer-contact {
        width: 48%;
    }
    
    .site-footer .footer-links h3, 
    .site-footer .footer-contact h3 {
        font-size: 14px;
    }
    
    .site-footer .footer-nav a {
        font-size: 12px;
    }
    
    .site-footer .footer-contact-info p {
        font-size: 12px;
    }
}
