* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
.header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    color: #2d6a5f;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #5a9d8a;
    transform: scale(1.05);
}

.logo i {
    margin-right: 10px;
}

.header-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.header-nav .nav-item {
    position: relative;
}

.header-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-nav a:hover {
    color: #5a9d8a;
}

.header-nav .dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 12px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    margin-top: 10px;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: #f0f9f7;
    color: #5a9d8a;
    padding-left: 25px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.facebook-btn {
    background: linear-gradient(135deg, #1877F2, #0C63D4);
}

.facebook-btn:hover {
    background: linear-gradient(135deg, #0C63D4, #1877F2);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.twitter-btn {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
}

.twitter-btn:hover {
    background: linear-gradient(135deg, #0d8bd9, #1DA1F2);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(29, 161, 242, 0.4);
}

.linkedin-btn {
    background: linear-gradient(135deg, #0077B5, #005885);
}

.linkedin-btn:hover {
    background: linear-gradient(135deg, #005885, #0077B5);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

.instagram-btn {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
}

.instagram-btn:hover {
    background: linear-gradient(135deg, #C13584, #E4405F, #F56040);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

.contact-btn {
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    animation: pulse-whatsapp 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.whatsapp-text {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-left: 5px;
}

.whatsapp-btn i {
    font-size: 20px;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

.phone-btn {
    background: linear-gradient(135deg, #5a9d8a, #2d6a5f);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.phone-btn::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;
}

.phone-btn:hover::before {
    left: 100%;
}

.phone-btn .phone-number {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.contact-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #2d6a5f;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.mobile-nav-item > a:hover {
    background: #f0f9f7;
    color: #5a9d8a;
}

.mobile-nav-item .dropdown-toggle-icon {
    font-size: 14px;
    color: #5a9d8a;
    transition: transform 0.3s;
}

.mobile-nav-item.active .dropdown-toggle-icon {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background: #f9f9f9;
    transition: max-height 0.3s ease;
}

.mobile-submenu.active {
    max-height: 500px;
}

.mobile-submenu a {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
}

.mobile-submenu a:hover {
    background: #e0f2ed;
    color: #2d6a5f;
    padding-left: 45px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(90, 157, 138, 0.9), rgba(45, 106, 95, 0.9)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f0f0f0" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 100px 20px 60px;
    color: #fff;
    position: relative;
}

.hero .container {
    max-width: 1440px;
    margin: 0 auto;
}

.hero-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: #a8e6cf;
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a4d43;
    padding: 8px 20px;
    border-radius: 10px;
    display: inline-block;
    font-weight: 800;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.hero-content h1 .highlight::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 12px;
    opacity: 0.3;
    z-index: -1;
    filter: blur(8px);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
    }
}

.hero-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    position: relative;
    padding-left: 20px;
}

.hero-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 3px;
}

.hero-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    opacity: 0.95;
    font-size: 16px;
}

.hero-content .key-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.hero-content .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-content .feature-item i {
    color: #FFD700;
    font-size: 20px;
    min-width: 20px;
}

.hero-content .feature-item span {
    font-size: 15px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-btn {
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-btn-primary {
    background: #fff;
    color: #2d6a5f;
}

.hero-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid #fff;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

.contact-form h2 {
    color: #2d6a5f;
    margin-bottom: 30px;
    font-size: 26px;
    text-align: center;
    font-weight: 700;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
    background: #f9f9f9;
}

.form-group input:focus {
    outline: none;
    border-color: #5a9d8a;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(90, 157, 138, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
    background: #f9f9f9;
    color: #333;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: #5a9d8a;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(90, 157, 138, 0.1);
}

.form-group select option {
    padding: 10px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #5a9d8a, #2d6a5f);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #2d6a5f, #1a4d43);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 106, 95, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.recaptcha-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.recaptcha-wrapper iframe {
    border: none;
}

/* Hide reCAPTCHA error messages */
.g-recaptcha > div {
    margin: 0 auto;
}

/* Statistics Section */
.statistics {
    background: #f9f9f9;
    padding: 60px 20px;
}

.statistics.hero-stats {
    background: transparent;
    padding: 0;
}

.statistics.hero-stats h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.statistics.hero-stats .stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.statistics .container {
    max-width: 1440px;
    margin: 0 auto;
}

.statistics h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2d6a5f;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #5a9d8a, #2d6a5f);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.95;
}

/* TMS Therapy Services Section */
.services {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
}

.services .container {
    max-width: 1440px;
    margin: 0 auto;
}

.services h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d6a5f;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(45, 106, 95, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #5a9d8a, #2d6a5f);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(45, 106, 95, 0.2);
    border-color: rgba(90, 157, 138, 0.3);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #5a9d8a, #2d6a5f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    box-shadow: 0 15px 30px rgba(90, 157, 138, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(90, 157, 138, 0.4);
}

.service-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d6a5f;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

/* Services Offered Section */
.services-offered {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f7 100%);
}

.services-offered .container {
    max-width: 1440px;
    margin: 0 auto;
}

.services-offered h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d6a5f;
}

.services-offered .subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-offered-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-offered-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(45, 106, 95, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-offered-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #5a9d8a, #2d6a5f);
}

.service-offered-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(45, 106, 95, 0.15);
}

.service-offered-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #5a9d8a, #2d6a5f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(90, 157, 138, 0.3);
}

.service-offered-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d6a5f;
}

.service-offered-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5a9d8a;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.learn-more:hover {
    color: #2d6a5f;
    gap: 12px;
}

.learn-more i {
    font-size: 14px;
    transition: transform 0.3s;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Call Now Button for Services */
.call-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 15px;
}

.call-now-btn::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;
}

.call-now-btn:hover::before {
    left: 100%;
}

.call-now-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.call-now-btn i {
    font-size: 16px;
    animation: pulse-phone 2s infinite;
}

.call-now-btn span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

@keyframes pulse-phone {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.call-now-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* About NeuroMind TMS Centre Section */
.about-neuromind {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
}

.about-neuromind .container {
    max-width: 1440px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.about-header h2 span {
    color: #179c7d;
}

.about-header::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #179c7d, #5a9d8a);
    margin: 20px auto 0;
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.about-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.about-text strong {
    color: #179c7d;
    font-weight: 700;
}

.about-highlights {
    background: linear-gradient(135deg, #f0f9f7 0%, #e0f2ed 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.about-highlights h3 {
    font-size: 24px;
    color: #179c7d;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-highlights ul {
    list-style: none;
    padding: 0;
}

.about-highlights li {
    padding: 12px 0;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid rgba(23, 156, 125, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-highlights li:last-child {
    border-bottom: none;
}

.about-highlights li i {
    color: #179c7d;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.about-stat-card {
    background: linear-gradient(135deg, #179c7d, #5a9d8a);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: white;
    box-shadow: 0 5px 20px rgba(23, 156, 125, 0.3);
    transition: transform 0.3s ease;
}

.about-stat-card:hover {
    transform: translateY(-5px);
}

.about-stat-card .stat-number {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.about-stat-card .stat-label {
    font-size: 16px;
    opacity: 0.95;
    font-weight: 500;
}

/* Connect Sidebar */
.connect-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #5a9d8a;
    color: #fff;
    padding: 20px 10px;
    border-radius: 10px 0 0 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    z-index: 998;
    cursor: pointer;
    transition: all 0.3s;
}

.connect-sidebar:hover {
    background: #2d6a5f;
    padding-right: 15px;
}

/* Fixed Contact Bar */
.fixed-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fixed-contact a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.fixed-contact a:hover {
    transform: scale(1.1);
}

.fixed-whatsapp {
    background: #25D366;
}

.fixed-phone {
    background: #5a9d8a;
}

.fixed-top {
    background: #2d6a5f;
}

/* YouTube Videos Section */
.youtube-videos {
    background: linear-gradient(135deg, #f0f9f7 0%, #e6f5f1 100%);
    padding: 80px 0 60px 0;
}

.youtube-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 1px;
    color: #2d6a5f;
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.youtube-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(45,106,95,0.10);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.youtube-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 48px rgba(45,106,95,0.18);
}

.youtube-thumb {
    position: relative;
    width: 100%;
    height: 220px;
    background: #e0f2ed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.youtube-thumb iframe {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.youtube-info {
    padding: 18px 24px;
    text-align: left;
    background: #fff;
}

.youtube-doc {
    font-weight: 600;
    color: #179c7d;
    font-size: 17px;
    letter-spacing: 0.5px;
}

@media (max-width: 900px) {
    .youtube-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .youtube-thumb {
        height: 180px;
    }
}

@media (max-width: 600px) {
    .youtube-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .youtube-title {
        font-size: 28px;
    }
    .youtube-thumb {
        height: 160px;
    }
    .youtube-info {
        padding: 14px 12px;
    }
}

/* Team Section */
.team {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f9f7 0%, #e6f5f1 100%);
    position: relative;
}

.team .container {
    max-width: 1440px;
    margin: 0 auto;
}

.team h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d6a5f;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.doctors-scroll-wrapper {
    position: relative;
    margin: 0 60px;
}

.doctors-scroll-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.doctors-scroll-container::-webkit-scrollbar {
    display: none;
}

.scroll-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #5a9d8a, #2d6a5f);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(45, 106, 95, 0.3);
}

.scroll-nav-btn.left {
    left: -25px;
}

.scroll-nav-btn.right {
    right: -25px;
}

.scroll-nav-btn:hover {
    background: linear-gradient(135deg, #2d6a5f, #1a4d43);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(45, 106, 95, 0.4);
}

.doctor-card {
    min-width: 320px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(45, 106, 95, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.doctor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #5a9d8a, #2d6a5f);
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(45, 106, 95, 0.2);
}

.doctor-image-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #5a9d8a;
    box-shadow: 0 10px 25px rgba(90, 157, 138, 0.3);
    transition: all 0.3s ease;
}

.doctor-card:hover .doctor-image-wrapper {
    border-color: #2d6a5f;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(90, 157, 138, 0.4);
}

.doctor-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.doctor-card:hover .doctor-image-wrapper img {
    transform: scale(1.1);
}

.doctor-info {
    text-align: center;
}

.doctor-name {
    font-size: 24px;
    font-weight: 700;
    color: #2d6a5f;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.doctor-name i {
    color: #FFD700;
    font-size: 20px;
}

.doctor-title {
    font-size: 18px;
    color: #5a9d8a;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.doctor-title i {
    color: #5a9d8a;
    font-size: 16px;
}

.doctor-experience {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    background: linear-gradient(135deg, #f0f9f7, #e6f5f1);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: #ffffff;
}

.features .container {
    max-width: 1440px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d6a5f;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f7 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(90, 157, 138, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(45, 106, 95, 0.15);
    background: #fff;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #5a9d8a, #2d6a5f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(90, 157, 138, 0.3);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d6a5f;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Emergency Section */
.emergency {
    padding: 80px 20px;
    background: linear-gradient(135deg, #5a9d8a, #2d6a5f);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.emergency::before {
    content: '';
    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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}

.emergency .container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.emergency h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.emergency-subtitle {
    font-size: 20px;
    margin-bottom: 50px;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.emergency-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 50px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.emergency-feature {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.emergency-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #fff, rgba(255,255,255,0.8));
}

.emergency-feature:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.emergency-feature i {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    display: block;
}

.emergency-feature h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.emergency-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #2d6a5f;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 22px;
    transition: all 0.3s;
    animation: pulse-emergency 2s ease-in-out infinite;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-shadow: none;
}

@keyframes pulse-emergency {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3), 0 0 0 15px rgba(255, 255, 255, 0);
    }
}

.emergency-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: #1a4d43;
}

.emergency-cta i {
    font-size: 20px;
    animation: ring 1s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #2d6a5f;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    animation: pulse-emergency 2s ease-in-out infinite;
}

.emergency-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f9f7 0%, #e6f5f1 100%);
}

.testimonials .container {
    max-width: 1440px;
    margin: 0 auto;
}

.testimonials h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d6a5f;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Video Testimonials Section */
.video-testimonials {
    margin-bottom: 60px;
}

.video-testimonials h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2d6a5f;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.video-testimonials h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #5a9d8a, #2d6a5f);
    margin: 15px auto 0;
    border-radius: 2px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.video-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(45, 106, 95, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #5a9d8a, #2d6a5f);
    z-index: 2;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(45, 106, 95, 0.2);
}

.video-card iframe {
    width: 100%;
    height: 250px;
    border: none;
    display: block;
    border-radius: 0 0 20px 20px;
}

/* Video Card Overlay Effect */
.video-card::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 157, 138, 0.1), rgba(45, 106, 95, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 0 0 20px 20px;
}

.video-card:hover::after {
    opacity: 1;
}

/* Written Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #5a9d8a, #2d6a5f);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: #2d6a5f;
    margin-bottom: 5px;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 16px;
    letter-spacing: 2px;
}

/* Patient Images Carousel Section */
.patient-images {
    margin-top: 60px;
}

.patient-images h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2d6a5f;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.patient-images h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #5a9d8a, #2d6a5f);
    margin: 15px auto 0;
    border-radius: 2px;
}

.carousel-container {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}



.carousel-slide {
    min-width: 25%;
    padding: 0 15px;
    box-sizing: border-box;
}

.patient-image-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.patient-image-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(90, 157, 138, 0.2);
}

.patient-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #e0f2ed, #f0f9f7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a9d8a;
    font-size: 24px;
}

.patient-image-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(45, 106, 95, 0.8);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-nav:hover {
    background: #2d6a5f;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: -25px;
}

.carousel-nav.next {
    right: -25px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(45, 106, 95, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: #5a9d8a;
    transform: scale(1.2);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.carousel-dot.active {
    background: #5a9d8a;
    width: 30px;
    border-radius: 6px;
}

.testimonial-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(45, 106, 95, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(45, 106, 95, 0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 60px;
    color: #5a9d8a;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5a9d8a, #2d6a5f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2d6a5f;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    color: #666;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-top: 15px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 16px;
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    background: #ffffff;
}

.faq .container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2d6a5f;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(90, 157, 138, 0.1);
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(45, 106, 95, 0.05);
}

.faq-question {
    padding: 25px 30px;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f7 100%);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    font-weight: 600;
    color: #2d6a5f;
    font-size: 18px;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f0f9f7 0%, #e6f5f1 100%);
}

.faq-question i {
    font-size: 20px;
    transition: transform 0.3s;
    color: #5a9d8a;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Statistics Section */
.statistics {
    background: #f9f9f9;
    padding: 60px 20px;
}

.statistics.hero-stats {
    background: transparent;
    padding: 0;
}

.statistics.hero-stats h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.statistics.hero-stats .stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.statistics .container {
    max-width: 1440px;
    margin: 0 auto;
}

.statistics h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2d6a5f;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #5a9d8a, #2d6a5f);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.95;
}

/* Fixed Contact Bar */
.fixed-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fixed-contact a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.fixed-contact a:hover {
    transform: scale(1.1);
}

.fixed-whatsapp {
    background: #25D366;
}

.fixed-phone {
    background: #5a9d8a;
}

.fixed-top {
    background: #2d6a5f;
}

/* Connect Sidebar */
.connect-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #5a9d8a;
    color: #fff;
    padding: 20px 10px;
    border-radius: 10px 0 0 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    z-index: 998;
    cursor: pointer;
    transition: all 0.3s;
}

.connect-sidebar:hover {
    background: #2d6a5f;
    padding-right: 15px;
}

/* Responsive - Mobile First */

/* Tablet and below (1024px) */
@media (max-width: 1024px) {
    .header .container {
        padding: 0 15px;
    }
    
    .header-nav {
        gap: 20px;
    }
    
    .hero-top {
        gap: 40px;
    }
}

/* Mobile Landscape and below (768px) */
@media (max-width: 768px) {
    /* Header Mobile */
    .header {
        padding: 10px 0;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .header-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }
    
    .header-contact {
        gap: 8px;
    }
    
    .contact-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .phone-btn .phone-number {
        display: none;
    }

    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-btn i {
        font-size: 22px;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 60px 15px 40px;
    }
    
    .hero-top {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 28px;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 20px;
        text-align: center;
    }
    
    .hero-content p {
        font-size: 15px;
        text-align: center;
    }
    
    .key-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    
    .contact-form {
        padding: 25px 20px;
        margin: 0 20px;
        max-width: calc(100% - 40px);
    }
    
    .contact-form h2 {
        font-size: 24px;
    }
    
    /* Statistics Mobile */
    .statistics h2 {
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 13px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-header h2 {
        font-size: 32px;
    }

    .services h2,
    .services-offered h2,
    .team h2,
    .features h2,
    .testimonials h2,
    .faq h2 {
        font-size: 32px;
    }

    .video-testimonials h3 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .video-card iframe {
        height: 200px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .patient-images h3 {
        font-size: 28px;
    }

    .carousel-container {
        padding: 0 40px;
    }

    .carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .patient-image-card img {
        height: 350px;
    }

    .carousel-slide {
        min-width: 100%;
    }

    .services-grid,
    .services-offered-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .doctors-scroll-wrapper {
        margin: 0 40px;
    }

    .scroll-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .doctor-card {
        min-width: 280px;
        padding: 25px;
    }

    .doctor-image-wrapper {
        width: 120px;
        height: 120px;
    }

    .doctor-name {
        font-size: 20px;
    }

    .doctor-title {
        font-size: 16px;
    }

    .emergency h2 {
        font-size: 36px;
    }

    .emergency-subtitle {
        font-size: 18px;
    }

    .emergency-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin: 40px 0;
    }

    .emergency-feature {
        padding: 25px 20px;
    }

    .emergency-feature i {
        font-size: 40px;
    }

    .emergency-feature h3 {
        font-size: 18px;
    }

    .emergency-cta {
        font-size: 20px;
        padding: 15px 30px;
    }
    
    /* Fixed Contact Mobile */
    .fixed-contact {
        right: 10px;
        bottom: 10px;
        gap: 10px;
    }
    
    .fixed-contact a {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    /* Connect Sidebar Mobile */
    .connect-sidebar {
        font-size: 12px;
        padding: 15px 8px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    /* Header Extra Small */
    .logo {
        font-size: 18px;
    }
    
    .logo i {
        font-size: 20px;
    }
    
    .contact-btn {
        padding: 6px 12px;
    }
    
    .contact-btn i {
        font-size: 16px;
    }
    
    /* Hero Extra Small */
    .hero {
        padding: 50px 10px 30px;
    }
    
    .hero-content h1 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .hero-content h1 .highlight {
        font-size: 22px;
        padding: 6px 12px;
    }
    
    .hero-content h2 {
        font-size: 18px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .key-features {
        gap: 10px;
    }
    
    .feature-item {
        font-size: 13px;
    }
    
    .feature-item i {
        font-size: 14px;
    }
    
    .contact-form {
        padding: 20px 15px;
        margin: 0 15px;
        max-width: calc(100% - 30px);
    }
    
    .contact-form h2 {
        font-size: 20px;
    }
    
    .form-group input,
    .form-group select {
        padding: 12px;
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 15px;
    }
    
    /* Statistics Extra Small */
    .statistics {
        padding: 40px 10px;
    }
    
    .statistics h2 {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-header h2 {
        font-size: 24px;
    }

    .services h2,
    .services-offered h2,
    .team h2,
    .features h2,
    .testimonials h2,
    .faq h2 {
        font-size: 24px;
    }

    .testimonials-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .video-testimonials {
        margin-bottom: 40px;
    }

    .video-testimonials h3 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .video-card iframe {
        height: 180px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }

    .testimonial-header {
        gap: 12px;
    }

    .testimonial-avatar {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .testimonial-name {
        font-size: 16px;
    }

    .testimonial-rating {
        font-size: 14px;
    }

    .patient-images {
        margin-top: 40px;
    }

    .patient-images h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .carousel-container {
        padding: 0 20px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .carousel-nav.prev {
        left: 5px;
    }

    .carousel-nav.next {
        right: 5px;
    }

    .patient-image-card img {
        height: 300px;
    }



    .services-grid,
    .services-offered-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card,
    .service-offered-card,
    .feature-card,
    .testimonial-card {
        padding: 25px 20px;
    }

    .doctors-scroll-wrapper {
        margin: 0 20px;
    }

    .scroll-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .scroll-nav-btn.left {
        left: -20px;
    }

    .scroll-nav-btn.right {
        right: -20px;
    }

    .doctor-card {
        min-width: 250px;
        padding: 20px;
    }

    .doctor-image-wrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }

    .doctor-name {
        font-size: 18px;
        flex-direction: column;
        gap: 5px;
    }

    .doctor-title {
        font-size: 15px;
        flex-direction: column;
        gap: 5px;
    }

    .doctor-experience {
        font-size: 14px;
    }

    .emergency {
        padding: 60px 15px;
    }

    .emergency h2 {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .emergency-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .emergency-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }

    .emergency-feature {
        padding: 20px 15px;
    }

    .emergency-feature i {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .emergency-feature h3 {
        font-size: 16px;
    }

    .emergency-cta {
        font-size: 18px;
        padding: 12px 25px;
    }

    .emergency-btn {
        padding: 12px 24px;
        font-size: 16px;
    }

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-item.active .faq-answer {
        padding: 20px;
    }
    
    /* Fixed Elements Extra Small */
    .fixed-contact {
        right: 5px;
        bottom: 5px;
    }
    
    .fixed-contact a {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d6a5f 0%, #1a4d45 100%);
    color: #fff;
    padding: 80px 20px 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #179c7d, #5a9d8a, #179c7d);
}

.footer .container {
    max-width: 1440px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #179c7d;
    border-radius: 2px;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s;
    font-size: 15px;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
}

.footer-description {
    margin-bottom: 20px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.footer-founder {
    color: #179c7d;
    font-weight: 600;
    margin: 15px 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.85);
}

.footer-contact-item i {
    color: #179c7d;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: #179c7d;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a i {
    color: #179c7d;
    font-size: 14px;
}

.footer-locations {
    margin-top: 20px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.85);
}

.location-item i {
    color: #179c7d;
    margin-top: 3px;
    font-size: 14px;
}

.tms-centre {
    background: rgba(23, 156, 125, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 3px solid #179c7d;
}

.tms-centre-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    font-size: 16px;
}

.tms-centre-title img {
    width: 28px;
    height: 20px;
}

.tms-centre-address {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 18px;
    border: 2px solid transparent;
}

.social-links a:hover {
    background: #179c7d;
    transform: translateY(-5px);
    border-color: #179c7d;
    box-shadow: 0 5px 20px rgba(23, 156, 125, 0.4);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    background: rgba(0,0,0,0.1);
    font-size: 15px;
}

.footer-bottom strong {
    color: #179c7d;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer {
        padding: 60px 20px 0;
    }
}

/* Fixed Contact Bar */
.fixed-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fixed-contact a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.fixed-contact a:hover {
    transform: scale(1.1);
}

.fixed-whatsapp {
    background: #25D366;
}

.fixed-phone {
    background: #5a9d8a;
}

.fixed-top {
    background: #2d6a5f;
}

/* Connect Sidebar */
.connect-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #5a9d8a;
    color: #fff;
    padding: 20px 10px;
    border-radius: 10px 0 0 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    z-index: 998;
    cursor: pointer;
    transition: all 0.3s;
}

.connect-sidebar:hover {
    background: #2d6a5f;
    padding-right: 15px;
}