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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #e8f5e8;
    overflow-x: hidden;
    background-color: #0a1a0a;
    padding-top: 120px;
    margin: 0;
}

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

/* Ensure anchor links account for fixed header */
section { scroll-margin-top: 100px; }

/* Hero section specific scroll margin */
.hero { scroll-margin-top: 0; }

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #166534 0%, #22c55e 100%);
    color: white;
    padding: 8px 0;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

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

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-left i {
    font-size: 16px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.top-bar-link:hover {
    color: #bbf7d0;
    text-shadow: 0 0 8px rgba(187, 247, 208, 0.6);
}

.consultation-fee {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    margin-right: 20px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.consultation-fee:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Navigation */
.navbar {
    background: white;
    padding: 12px 0;
    min-height: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

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

.logo-main {
    font-size: 16px;
    font-weight: 700;
    color: #1e3a8a;
    letter-spacing: 0.3px;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
}

.logo-sub {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    position: static;
    z-index: 100;
    width: auto;
    height: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    left: auto;
    top: auto;
    flex-shrink: 0;
}

/* Desktop navigation styles - only apply on larger screens */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        background: transparent !important;
        backdrop-filter: none !important;
        width: auto !important;
        height: auto !important;
        padding: 0 !important;
        gap: 20px !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
        align-items: center !important;
    }
    
    .nav-toggle {
        display: none !important;
    }
    
    .nav-link {
        color: #1e3a8a !important;
        font-size: 13px !important;
        padding: 4px 0 !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        min-width: auto !important;
        text-align: left !important;
    }
}

.nav-link {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    padding: 4px 0;
    position: relative;
    border: none;
    text-shadow: none;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

/* Desktop nav-link styles - only apply on larger screens */
@media (min-width: 769px) {
    .nav-link {
        color: #1e3a8a;
        font-size: 13px;
        padding: 4px 0;
        display: inline-block;
        white-space: nowrap;
    }
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #228b22, #32cd32);
    transition: left 0.5s ease;
}

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

.nav-link:hover {
    color: #228b22;
    transform: translateY(-3px) scale(1.05);
}

.nav-link.active {
    color: #228b22;
    font-weight: 600;
    border-bottom: 2px solid #228b22;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #228b22;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #1e3a8a;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #1e3a8a;
    margin: 5px 0;
    transition: 0.3s;
    transform-origin: center;
}

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

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1a0a 0%, #1a3a1a 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(34, 139, 34, 0.1) 0%, rgba(0, 100, 0, 0.1) 100%);
    z-index: 2;
}

.hero-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.8) contrast(1.4) saturate(1.3) sharpness(1.2);
    transition: transform 0.3s ease;
}

.hero-photo:hover {
    transform: scale(1.05);
}

.hero-container {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: visible;
    word-wrap: break-word;
    animation: heroFadeIn 2s ease-out;
}

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

.hero-content:hover::before {
    left: 100%;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.3;
    animation: floatUp 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    line-height: 1.4;
    animation: fadeInScale 1s ease-out 1s both;
}

.hero-description {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #228b22, #32cd32);
    color: white;
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #32cd32, #228b22);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(34, 139, 34, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1a0a 0%, #1a3a1a 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    display: none;
}

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

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

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #228b22;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease-out;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #e8f5e8;
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.6;
}

/* Enhanced Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    position: relative;
    padding-bottom: 25px;
    animation: titleGlow 3s ease-in-out infinite;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #228b22, #32cd32);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(34, 139, 34, 0.7);
    animation: glowPulse 2s ease-in-out infinite;
}

.section-header p {
    font-size: 1rem;
    color: #e8f5e8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    position: relative;
    padding-top: 20px;
}

.section-header p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #32cd32, #90ee90);
    border-radius: 1px;
}

/* Section Header Decorative Elements */
.section-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(34, 139, 34, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: -1;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 20%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(50, 205, 50, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
    z-index: -1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
    align-items: stretch;
}

.feature-card {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: auto;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #228b22, #32cd32);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

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

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

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(34, 139, 34, 0.4);
}

/* Feature card content styling */
.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #32cd32;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.3;
    padding: 12px 15px;
    border-radius: 12px;
    text-align: center;
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.15), rgba(50, 205, 50, 0.08));
    border: 2px solid #32cd32;
    flex-shrink: 0;
}

.feature-card p {
    color: #ffffff;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a1a0a 0%, #1a3a1a 50%, #0a1a0a 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('home photo/Untitled design.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.4;
    filter: contrast(1.2) brightness(1.1) saturate(1.1);
    z-index: 0;
}

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

/* About section background with image overlay */

.about-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row-reverse;
    gap: 50px;
    align-items: flex-start;
    text-align: left;
}

.about-text {
    background: rgba(0, 0, 0, 0.7);
    padding: 50px 60px;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    max-width: 60%;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 139, 34, 0.1), transparent);
    transition: left 0.8s ease;
}

.about-text:hover::before {
    left: 100%;
}

.about-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7),
                0 0 0 2px rgba(34, 139, 34, 0.3);
    border-color: rgba(34, 139, 34, 0.4);
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 35px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    position: relative;
    padding-bottom: 20px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #228b22, #32cd32);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(34, 139, 34, 0.5);
}

/* Enhanced About Section Headings */
.about-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #32cd32;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(50, 205, 50, 0.6);
    position: relative;
    padding-bottom: 15px;
    animation: titleGlow 3s ease-in-out infinite;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #32cd32, #90ee90);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(50, 205, 50, 0.7);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(50, 205, 50, 0.7);
    }
    50% {
        box-shadow: 0 0 25px rgba(50, 205, 50, 0.9), 0 0 35px rgba(50, 205, 50, 0.5);
    }
}

.about-text h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffd700;
    margin: 25px 0 15px 0;
    text-shadow: 2px 2px 4px rgba(255, 215, 0, 0.5);
    position: relative;
    padding-left: 20px;
}

.about-text h4::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.about-text p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    position: relative;
    padding-left: 20px;
}

.about-text p::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #32cd32;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(50, 205, 50, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

/* Enhanced Qualifications and Experience Sections */
.qualifications, .experience {
    background: rgba(34, 139, 34, 0.1);
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 4px solid #32cd32;
    position: relative;
    overflow: hidden;
}

.qualifications::before, .experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(50, 205, 50, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.qualifications:hover::before, .experience:hover::before {
    opacity: 1;
}

.qualifications ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.qualifications li {
    color: #ffffff;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.qualifications li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #32cd32;
    font-weight: bold;
    font-size: 1.1rem;
    text-shadow: 0 0 8px rgba(50, 205, 50, 0.6);
}

.experience p {
    color: #ffffff;
    line-height: 1.7;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

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

.about-text {
    animation: aboutFadeIn 1s ease-out;
}

.about-image {
    animation: aboutFadeIn 1s ease-out 0.3s both;
}

/* About Section Decorative Elements */
.about::after {
    content: '';
    position: absolute;
    top: 50px;
    right: 50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(34, 139, 34, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.about::before {
    animation: float 8s ease-in-out infinite reverse;
}

.about-image {
    text-align: center;
    position: relative;
    flex: 1;
    max-width: 40%;
    min-width: 300px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, rgba(34, 139, 34, 0.2), rgba(50, 205, 50, 0.2));
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.about-image:hover::before {
    opacity: 1;
    transform: scale(1.05);
}

.about-image img,
.doctor-profile-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
    aspect-ratio: 3/4;
}

.about-image:hover img,
.about-image:hover .doctor-profile-image {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(34, 139, 34, 0.3);
    border-color: rgba(34, 139, 34, 0.3);
}

/* Doctor Info Card */
.doctor-info-card {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px 25px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    margin-top: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.doctor-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 139, 34, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.doctor-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    border-color: rgba(34, 139, 34, 0.4);
}

.doctor-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.doctor-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.doctor-info-card:hover .doctor-icon {
    background: rgba(34, 139, 34, 0.2);
    border-color: rgba(34, 139, 34, 0.5);
    transform: scale(1.1);
}

.doctor-info-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.doctor-title {
    font-size: 1.1rem;
    color: #32cd32;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.doctor-description {
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.doctor-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.doctor-contact p {
    color: #ffffff;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.doctor-contact i {
    color: #32cd32;
    font-size: 1rem;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a3a1a 0%, #0a1a0a 100%);
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('bg/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.7;
    filter: contrast(1.2) brightness(1.1) saturate(1.1);
    z-index: 0;
}

.team-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: rgba(0, 0, 0, 0.6);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    margin-bottom: 30px;
}

.member-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.member-placeholder i {
    font-size: 2rem;
    color: #ffffff;
}

.team-member h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.member-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.member-description {
    color: #e8f5e8;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.member-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.member-contact p {
    color: #ffffff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.member-contact i {
    color: #90ee90;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #0a1a0a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    height: 400px;
    perspective: 1000px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.service-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.9), rgba(50, 205, 50, 0.9));
    color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.service-card-back h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-card-back p {
    color: white;
    margin-bottom: 15px;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.service-card-back ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
}

.service-card-back li {
    color: white;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.service-card-back li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #90ee90;
    font-weight: bold;
    font-size: 1.1rem;
}

.treatment-duration {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 15px;
    font-weight: 600;
    margin-top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-card.flipped .service-card-inner {
    transform: rotateY(180deg);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 10px;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.9), rgba(50, 205, 50, 0.9));
    padding: 15px 25px;
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 25px rgba(34, 139, 34, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    letter-spacing: 0.5px;
}

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

.service-title::after {
    content: '★';
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    color: #228b22;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(34, 139, 34, 0.3);
    animation: pulse 2s ease-in-out infinite;
    border: 2px solid rgba(34, 139, 34, 0.5);
}

.service-title:hover::before {
    left: 100%;
}

.service-title:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(34, 139, 34, 0.8), 0 0 0 2px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.7);
    background: linear-gradient(135deg, rgba(34, 139, 34, 1), rgba(50, 205, 50, 1));
}

.service-description {
    color: #ffffff;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Medical Conditions Section */
.medical-conditions {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1a0a 0%, #1a3a1a 100%);
    position: relative;
    overflow: hidden;
}

.medical-conditions-slider {
    margin-top: 60px;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.medical-conditions-container {
    position: relative;
    height: 700px;
    overflow: visible;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.medical-condition-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.medical-condition-item.active {
    opacity: 1 !important;
    transform: translateX(0) !important;
    visibility: visible !important;
    display: flex !important;
    pointer-events: auto !important;
    z-index: 10;
}

.medical-condition-item:not(.active) {
    opacity: 0 !important;
    transform: translateX(100%) !important;
    visibility: hidden !important;
    display: none !important;
    pointer-events: none !important;
}

.medical-condition-image {
    width: 100%;
    height: 600px;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.medical-condition-overlay {
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px 15px 15px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.medical-condition-overlay h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #32cd32;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.medical-condition-overlay p {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    margin: 0;
}

.medical-conditions-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.medical-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 20;
    position: relative;
}

.medical-dot.active {
    background: #32cd32;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(50, 205, 50, 0.6);
}

.medical-dot:hover {
    background: rgba(50, 205, 50, 0.7);
    transform: scale(1.1);
}

/* Treatments Section */
.treatments {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a3a1a 0%, #0a1a0a 100%);
    position: relative;
    overflow: hidden;
}

/* Treatments section background removed - keeping only gradient */

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.treatment-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    height: 400px;
    perspective: 1000px;
    cursor: pointer;
    transition: all 0.8s ease;
}

.treatment-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #228b22, #32cd32);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.treatment-card:hover::after {
    transform: scaleX(1);
}

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

.treatment-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
}

.treatment-card-front,
.treatment-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.treatment-card-back {
    transform: rotateY(180deg);
}

.treatment-card.flipped .treatment-card-inner {
    transform: rotateY(180deg);
}

.treatment-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 10px;
}

.treatment-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(59, 130, 246, 0.9));
    padding: 15px 25px;
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    letter-spacing: 0.5px;
}

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

.treatment-title::after {
    content: '⚡';
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    color: #1e3a8a;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(30, 58, 138, 0.3);
    animation: pulse 2s ease-in-out infinite;
    border: 2px solid rgba(30, 58, 138, 0.5);
}

.treatment-title:hover::before {
    left: 100%;
}

.treatment-title:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.8), 0 0 0 2px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.7);
    background: linear-gradient(135deg, rgba(30, 58, 138, 1), rgba(59, 130, 246, 1));
}

.treatment-description {
    color: #ffffff;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1a0a 0%, #1a3a1a 100%);
    position: relative;
    animation: sectionFadeIn 0.3s ease-out;
}

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

/* Ensure testimonials section is immediately visible */
.testimonials {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('bg/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.7;
    filter: contrast(1.2) brightness(1.1) saturate(1.1);
    z-index: 0;
}

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

.testimonials-slider {
    margin-top: 60px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: sliderFadeIn 0.2s ease-out;
}

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

.testimonial-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
    animation: containerFadeIn 0.3s ease-out 0.1s both;
}

@keyframes containerFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
    display: none;
    flex-direction: column;
    justify-content: center;
    pointer-events: none;
}

/* First testimonial card styling */
.testimonial-card:first-child {
    /* No special treatment - let JavaScript control visibility */
}

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

.testimonial-card.active {
    opacity: 1 !important;
    transform: translateX(0) !important;
    visibility: visible !important;
    display: flex !important;
    pointer-events: auto !important;
    z-index: 10;
    animation: testimonialFadeIn 0.3s ease-out;
}

.testimonial-card:not(.active) {
    opacity: 0 !important;
    transform: translateX(100%) !important;
    visibility: hidden !important;
    display: none !important;
    pointer-events: none !important;
}

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

.testimonial-card.prev {
    transform: translateX(-100%);
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #90ee90;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 8px;
    animation: dotsFadeIn 0.3s ease-out 0.2s both;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 0 20px;
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 20;
    position: relative;
}

/* Mobile testimonial dots */
@media (max-width: 768px) {
    .testimonial-dots {
        gap: 6px;
        padding: 0 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

.dot.active {
    background: #90ee90;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(144, 238, 144, 0.7);
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 20px;
    animation: fadeIn 0.5s ease-in;
}

.testimonial-text {
    font-size: 1.2rem;
    color: #e8f5e8;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    color: #228b22;
}

/* Call to Action Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1a0a 0%, #1a3a1a 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(45deg, rgba(34, 139, 34, 0.3) 0%, rgba(139, 69, 19, 0.3) 100%);
    filter: blur(10px);
    z-index: 0;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.cta-content p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #228b22 0%, #32cd32 100%);
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 139, 34, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff;
    border: none;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.cta-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
}

.highlight-item i {
    color: #90ee90;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #0a1a0a;
    position: relative;
    overflow: hidden;
}

/* FAQ section background removed - keeping only solid color */

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

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-question {
    padding: 25px 30px;
    background: rgba(34, 139, 34, 0.2);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
    transition: background 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.faq-question:hover {
    background: rgba(34, 139, 34, 0.3);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    color: #ffffff;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-icon.active {
    transform: rotate(180deg);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a3a1a 0%, #0a1a0a 100%);
    position: relative;
    overflow: hidden;
}

/* Contact section background removed - keeping only gradient */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: fit-content;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 139, 34, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-info:hover::before {
    left: 100%;
}

.contact-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(34, 139, 34, 0.3);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #ffffff;
    padding: 15px 0;
}

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

.contact-item i {
    font-size: 1.3rem;
    color: #228b22;
    margin-right: 15px;
    width: 25px;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.contact-details p {
    font-size: 0.95rem;
    color: #e8f5e8;
    line-height: 1.5;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: fit-content;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 139, 34, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-form:hover::before {
    left: 100%;
}

.contact-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(34, 139, 34, 0.3);
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 15px;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #228b22;
}

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

/* Footer */
.footer {
    background: #0a1a0a;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Responsive footer grid */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Simple mobile footer highlighting effects */
    .footer-section {
        transition: all 0.3s ease;
    }
    
    .footer-section:active {
        background: rgba(34, 139, 34, 0.05);
        transform: scale(0.98);
    }
    
    /* Mobile footer link highlighting */
    .footer-section ul li a,
    .footer-section p a {
        transition: all 0.3s ease;
        position: relative;
    }
    
    .footer-section ul li a:active,
    .footer-section p a:active {
        background: rgba(34, 139, 34, 0.2);
        color: #32cd32;
        transform: scale(0.95);
    }
    
    /* Mobile footer bottom highlighting */
    .footer-bottom-links a {
        transition: all 0.3s ease;
    }
    
    .footer-bottom-links a:active {
        background: rgba(34, 139, 34, 0.2);
        transform: scale(0.95);
    }
}





.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #228b22;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #228b22, #32cd32);
    border-radius: 2px;
}

/* Special styling for address links in Contact Info section */
.footer-section p a[href*="maps.google.com"] {
    color: #3b82f6;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.footer-section p a[href*="maps.google.com"]:hover {
    color: #60a5fa;
    border-bottom-color: #60a5fa;
    transform: translateX(5px);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

.footer-section p {
    color: #e8f5e8;
    line-height: 1.6;
}

.footer-section p a {
    color: #228b22;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section p a:hover {
    color: #32cd32;
    transform: translateX(5px);
}

/* Special styling for address links */
.footer-section p a[href*="maps.google.com"] {
    color: #3b82f6;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.footer-section p a[href*="maps.google.com"]:hover {
    color: #60a5fa;
    border-bottom-color: #60a5fa;
    transform: translateX(5px);
}

/* Directions link special styling */
.footer-section p a[href*="directions"] {
    background: linear-gradient(135deg, #228b22, #32cd32);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
}

.footer-section p a[href*="directions"]:hover {
    background: linear-gradient(135deg, #32cd32, #228b22);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 139, 34, 0.3);
}

.footer-section ul li a:hover,
.footer-section p a:hover {
    color: #228b22;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(34, 139, 34, 0.2);
    color: #228b22;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #228b22;
    color: white;
    transform: translateY(-2px);
}

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #ffffff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.footer-bottom-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 3s ease-in-out infinite, pulse 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

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

.floating-btn:hover::before {
    left: 100%;
}

.floating-btn:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.appointment-btn {
    background: linear-gradient(135deg, #228b22, #32cd32);
    color: white;
    box-shadow: 0 10px 30px rgba(34, 139, 34, 0.4);
}

.appointment-btn:hover {
    background: linear-gradient(135deg, #32cd32, #228b22);
    box-shadow: 0 15px 40px rgba(34, 139, 34, 0.6);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.call-btn {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.4);
}

.call-btn:hover {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.6);
}

/* Login Button */
.login-button {
    position: fixed;
    top: 50%;
    right: 20px;
    z-index: 1000;
}

.btn-login {
    display: block;
    padding: 15px 25px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(1deg);
    }
    50% {
        transform: translateY(-12px) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(-1deg);
    }
}

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

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(34, 139, 34, 0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(34, 139, 34, 0.8), 0 0 40px rgba(34, 139, 34, 0.6);
    }
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

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

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

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

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

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

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced hover effects */
.nav-link:hover {
    transform: translateY(-3px) scale(1.05);
}

.feature-card:hover .feature-icon {
    animation: pulse 2s infinite;
}

/* Enhanced Mobile Hamburger Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: all 0.3s ease;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    min-width: 40px;
    min-height: 40px;
    justify-content: center;
    align-items: center;
}

/* Desktop Navigation - Always Visible */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        backdrop-filter: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        left: auto !important;
        top: auto !important;
        flex-direction: row !important;
        justify-content: flex-end !important;
        align-items: center !important;
        padding: 0 !important;
        gap: 25px !important;
        z-index: 100 !important;
    }
    
    .nav-toggle {
        display: none !important;
    }
    
    .nav-link {
        font-size: 15px !important;
        padding: 6px 0 !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        min-width: auto !important;
        text-align: left !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Desktop Navigation - Always Visible */
@media (min-width: 769px) {
    body .header .navbar .nav-container .nav-menu {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        backdrop-filter: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        left: auto !important;
        top: auto !important;
        flex-direction: row !important;
        justify-content: flex-end !important;
        align-items: center !important;
        padding: 0 !important;
        gap: 25px !important;
        z-index: 100 !important;
    }
    
    body .header .navbar .nav-container .nav-menu .nav-link {
        display: inline-block !important;
        opacity: 1 !important;
        transform: none !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        min-width: auto !important;
        text-align: left !important;
        font-size: 14px !important;
        padding: 5px 0 !important;
        color: #1e3a8a !important;
        text-decoration: none !important;
        font-weight: 500 !important;
        position: relative !important;
        transition: all 0.3s ease !important;
    }
}

/* Enhanced Website Effects */
/* Floating Animation for Cards */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(34, 139, 34, 0.5); }
    50% { box-shadow: 0 0 30px rgba(34, 139, 34, 0.8), 0 0 40px rgba(34, 139, 34, 0.4); }
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}



/* Enhanced service and treatment cards */
.service-card, .treatment-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Special highlighting for treatment names */
.treatment-card h3 {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    text-align: center;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    border: 2px solid #ff6b6b;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.treatment-card:hover h3 {
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
    border-color: #ee5a24;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    transform: translateY(-2px);
}

/* All treatment cards use consistent green color */
.treatment-card h3 {
    background: linear-gradient(135deg, #228b22, #32cd32);
    border-color: #228b22;
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.3);
}

/* Enhanced hover effects for treatment cards - consistent green */
.treatment-card:hover h3 {
    background: linear-gradient(135deg, #32cd32, #228b22);
    box-shadow: 0 6px 20px rgba(34, 139, 34, 0.4);
}

/* Service Card Name Color Highlighting */
.service-card h3 {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    text-align: center;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    border: 2px solid #ff6b6b;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
    border-color: #ee5a24;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    transform: translateY(-2px);
}

/* All service cards use consistent green color */
.service-card h3 {
    background: linear-gradient(135deg, #228b22, #32cd32);
    border-color: #228b22;
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.3);
}

/* Enhanced hover effects for service cards - consistent green */
.service-card:hover h3 {
    background: linear-gradient(135deg, #32cd32, #228b22);
    box-shadow: 0 6px 20px rgba(34, 139, 34, 0.4);
}

.service-card::after, .treatment-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #32cd32, #228b22);
    transition: width 0.4s ease;
}

.service-card:hover::after, .treatment-card:hover::after {
    width: 100%;
}

.service-card:hover, .treatment-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(34, 139, 34, 0.5);
}



/* Enhanced card flip effects */
.service-card.flipped, .treatment-card.flipped {
    transform: rotateY(180deg);
    box-shadow: 0 20px 40px rgba(34, 139, 34, 0.3);
}

/* Smooth flip transition */
.service-card, .treatment-card {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

/* Enhanced flip animation */
.service-card.flipped .service-card-inner,
.treatment-card.flipped .treatment-card-inner {
    transform: rotateY(180deg);
}

.service-card-front, .service-card-back,
.treatment-card-front, .treatment-card-back {
    backface-visibility: hidden;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-back, .treatment-card-back {
    transform: rotateY(180deg);
}

/* Enhanced card images */
.service-card img, .treatment-card img {
    transition: all 0.4s ease;
    filter: brightness(0.9);
}

.service-card:hover img, .treatment-card:hover img {
    filter: brightness(1.1);
    transform: scale(1.05);
}

/* Enhanced buttons */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Enhanced floating buttons */
.floating-btn {
    animation: float 3s ease-in-out infinite;
}

.floating-btn:hover {
    animation: pulse 1s ease-in-out infinite;
    transform: scale(1.1);
}

/* Enhanced floating button titles */
.floating-btn-title {
    position: absolute;
    right: 80px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.floating-btn:hover .floating-btn-title {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced CTA section */
.cta-buttons .btn {
    position: relative;
    overflow: hidden;
}

.cta-buttons .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.cta-buttons .btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Enhanced testimonials */
.testimonial-card {
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(34, 139, 34, 0.3);
    font-family: serif;
    transition: all 0.3s ease;
}

.testimonial-card:hover::before {
    color: rgba(34, 139, 34, 0.6);
    transform: scale(1.2);
}

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

/* Enhanced testimonial dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

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

.testimonial-dot.active {
    background: #32cd32;
    transform: scale(1.2);
}

.testimonial-dot:hover {
    background: rgba(50, 205, 50, 0.6);
    transform: scale(1.1);
}

/* Enhanced team member cards */
.team-member {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Enhanced section headers */
.section-header h2 {
    position: relative;
    overflow: hidden;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #32cd32, #228b22);
    transition: all 0.6s ease;
    transform: translateX(-50%);
}

.section-header:hover h2::after {
    width: 100%;
}

/* Enhanced contact form */
.contact-form input,
.contact-form textarea {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #32cd32;
    box-shadow: 0 0 15px rgba(50, 205, 50, 0.3);
    transform: translateY(-2px);
}

/* Enhanced FAQ accordion */
.faq-item {
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.faq-item:hover {
    border-left-color: #32cd32;
    background: rgba(34, 139, 34, 0.05);
}

.faq-question {
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #32cd32;
    transform: translateX(5px);
}

/* Enhanced footer links */
.footer a {
    transition: all 0.3s ease;
    position: relative;
}

.footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #32cd32;
    transition: width 0.3s ease;
}

.footer a:hover::after {
    width: 100%;
}

.footer a:hover {
    color: #32cd32;
    transform: translateX(5px);
}

/* Enhanced hero section effects */
.hero-content {
    animation: fadeInScale 1s ease-out;
}

.hero-title {
    animation: slideInUp 1s ease-out 0.3s both;
}

    .hero-subtitle {
        animation: slideInUp 0.6s ease-out 0.2s both;
    }
    
    .hero-description {
        animation: slideInUp 0.6s ease-out 0.4s both;
    }
    
    .hero-buttons {
        animation: slideInUp 0.6s ease-out 0.6s both;
    }

/* Enhanced about section effects */
.about-text h3 {
    position: relative;
    overflow: hidden;
}

.about-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #32cd32, #228b22);
    transition: width 0.6s ease;
}

.about-text h3:hover::before {
    width: 100%;
}

/* Enhanced CTA section */
.cta-content {
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 139, 34, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Enhanced gallery effects */
.gallery-item {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Enhanced facts section */
.fact-item {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.fact-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #32cd32, #228b22);
    transition: width 0.4s ease;
    transform: translateX(-50%);
}

.fact-item:hover::after {
    width: 100%;
}

.fact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Enhanced loading states */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 1.5s infinite;
}

/* Enhanced scroll indicators */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(34, 139, 34, 0.3);
    z-index: 9999;
}

.scroll-progress {
    height: 100%;
    background: linear-gradient(90deg, #32cd32, #228b22);
    width: 0%;
    transition: width 0.1s ease;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: #1e3a8a;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    display: block;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.nav-toggle:hover .bar {
    background: #228b22;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.05);
}

.nav-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: #228b22;
}

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

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background: #228b22;
    }
    
    /* Mobile menu entrance animation for links */
    .nav-menu .nav-link {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active .nav-link {
        opacity: 1 !important;
        transform: translateY(0) !important;
        visibility: visible !important;
        display: block !important;
    }
    
    .nav-menu.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-link:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active .nav-link:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active .nav-link:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active .nav-link:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu.active .nav-link:nth-child(6) { transition-delay: 0.6s; }
    .nav-menu.active .nav-link:nth-child(7) { transition-delay: 0.7s; }

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .about-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        align-items: center;
    }
    
    .about-text {
        max-width: 100%;
        flex: none;
    }
    
    .about-image {
        max-width: 100%;
        flex: none;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
        width: 100%;
    }
    
    .feature-card {
        padding: 25px 20px;
        min-height: auto;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
        overflow: visible;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
        padding: 10px 12px;
        word-wrap: break-word;
        white-space: normal;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        word-wrap: break-word;
        white-space: normal;
        text-align: center;
        padding: 0 5px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .features-grid {
        gap: 15px;
        margin-top: 20px;
        width: 100%;
    }
    
    .feature-card {
        padding: 20px 15px;
        margin: 0;
        border-radius: 15px;
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
        overflow: visible;
    }
    
    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
        padding: 8px 10px;
        word-wrap: break-word;
        white-space: normal;
    }
    
    .feature-card p {
        font-size: 0.85rem;
        line-height: 1.4;
        word-wrap: break-word;
        white-space: normal;
        text-align: center;
        padding: 0 3px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex !important;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1002;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(30, 58, 138, 0.2);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        padding: 8px;
        min-width: 40px;
        min-height: 40px;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }
    
    /* Hide desktop navigation on mobile */
    .nav-menu {
        display: none !important;
        position: fixed;
        left: -100%;
        top: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 9998;
    }
    
    .nav-menu.active {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 80px 20px 20px !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 9999 !important;
        gap: 30px !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    .nav-link {
        font-size: 1.3rem;
        padding: 15px 25px;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        text-align: center;
        min-width: 200px;
        color: white !important;
        text-decoration: none;
        display: block;
        margin-bottom: 10px;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(34, 139, 34, 0.3);
        border-color: rgba(34, 139, 34, 0.5);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(34, 139, 34, 0.3);
    }
    
    .nav-link::before {
        display: none;
    }
    
    /* Ensure nav-container has proper positioning for mobile */
    .nav-container {
        position: relative;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Enhanced hamburger bar styling for mobile */
    .nav-toggle .bar {
        width: 25px;
        height: 3px;
        background: #1e3a8a;
        margin: 5px 0;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    /* Hamburger animation when active */
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Mobile menu overlay animation */
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 20%, rgba(34, 139, 34, 0.1) 0%, transparent 50%);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    
    .nav-menu.active::before {
        opacity: 1;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
        padding-bottom: 20px;
    }
    
    .section-header p {
        font-size: 1.1rem;
        padding-top: 15px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        align-items: center;
    }
    
    .about-text {
        padding: 40px 30px;
        max-width: 100%;
        flex: none;
    }
    
    .about-image {
        max-width: 100%;
        flex: none;
        min-width: auto;
    }
    
    .doctor-info-card {
        padding: 25px 20px;
        margin-top: 15px;
    }
    
    .doctor-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .doctor-icon i {
        font-size: 1.5rem;
    }
    
    .doctor-info-card h3 {
        font-size: 1.4rem;
        margin-bottom: 6px;
    }
    
    .doctor-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .doctor-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .doctor-contact p {
        font-size: 0.85rem;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .about-text h3 {
        font-size: 1.6rem;
    }
    
    .about-text h4 {
        font-size: 1.2rem;
        padding-left: 15px;
    }
    
    .about-text p {
        font-size: 1.1rem;
        padding-left: 15px;
    }
    
    .qualifications, .experience {
        padding: 20px;
    }
    
    .service-title, .treatment-title {
        font-size: 1.2rem;
        padding: 10px 16px;
        margin-bottom: 15px;
    }
    
    .service-title::after, .treatment-title::after {
        width: 22px;
        height: 22px;
        font-size: 11px;
        top: -6px;
        right: -6px;
    }
    
    .about-image {
        max-width: 100%;
    }
    
    .about-image::before {
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info, .contact-form {
        padding: 25px 20px;
    }
    
    .contact-item {
        margin-bottom: 15px;
        padding: 12px 0;
    }
    
    .contact-item i {
        font-size: 1.2rem;
        margin-right: 12px;
        width: 22px;
    }
    
    .contact-details h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .login-button {
        right: 15px;
    }
    
    .btn-login {
        padding: 12px 20px;
        font-size: 12px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    /* Mobile consultation fee styling */
    .consultation-fee {
        font-size: 12px;
        margin-right: 15px;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-container {
        padding: 20px 15px;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
        padding-bottom: 15px;
    }
    
    .section-header p {
        font-size: 1rem;
        padding-top: 12px;
    }
    
    .service-title, .treatment-title {
        font-size: 1.1rem;
        padding: 8px 14px;
        margin-bottom: 12px;
    }
    
    .service-title::after, .treatment-title::after {
        width: 20px;
        height: 20px;
        font-size: 10px;
        top: -5px;
        right: -5px;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .contact-info, .contact-form {
        padding: 20px 15px;
    }
    
    .contact-item {
        margin-bottom: 12px;
        padding: 10px 0;
    }
    
    .contact-item i {
        font-size: 1.1rem;
        margin-right: 10px;
        width: 20px;
    }
    
    .contact-details h3 {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }
    
    .contact-details p {
        font-size: 0.85rem;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .about-text {
        padding: 25px 20px;
        max-width: 100%;
    }
    
    .about-text h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .about-text h2::after {
        width: 50px;
        height: 3px;
    }
    
    .about-text h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .about-text h4 {
        font-size: 1.1rem;
        padding-left: 12px;
        margin: 20px 0 12px 0;
    }
    
    .about-text p {
        font-size: 0.95rem;
        padding-left: 10px;
        margin-bottom: 15px;
    }
    
    .qualifications, .experience {
        padding: 15px;
        margin: 20px 0;
    }
    
    .qualifications li {
        padding-left: 20px;
        margin-bottom: 10px;
    }
    
    .about-image {
        max-width: 100%;
    }
    
    .about-image img {
        border-radius: 15px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-grid,
    .treatments-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    /* Medical Conditions Section Mobile */
    .medical-conditions-container {
        height: 500px;
    }
    
    .medical-condition-image {
        height: 400px;
    }
    
    .medical-condition-overlay {
        bottom: -70px;
        padding: 15px 10px 10px;
    }
    
    .medical-condition-overlay h3 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .medical-condition-overlay p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .medical-conditions-dots {
        gap: 10px;
        margin-top: 20px;
    }
    
    .medical-dot {
        width: 12px;
        height: 12px;
    }
}