/* ========================================
   CSS Variables - Theme Colors & Settings
   ======================================== */
:root {
    /* Primary Colors - Medical Blue with Warmth */
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #60a5fa;
    --primary-gradient: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    
    /* Secondary Colors - Healing Green */
    --secondary-color: #10b981;
    --secondary-dark: #059669;
    --secondary-light: #6ee7b7;
    
    /* Accent Colors - Warm & Trustworthy */
    --accent-color: #f59e0b;
    --accent-dark: #d97706;
    --accent-light: #fbbf24;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-bg: #f8fafc;
    --light-gray: #f1f5f9;
    --gray: #94a3b8;
    --dark-gray: #475569;
    --dark: #1e293b;
    --black: #0f172a;
    
    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-Index Layers */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
    --z-tooltip: 1050;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 600;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Section Spacing */
section {
    padding: var(--spacing-2xl) 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-xs);
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
    position: relative;
}

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

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

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

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

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

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ========================================
   Language Toggle
   ======================================== */
.lang-toggle {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: var(--z-fixed);
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.lang-toggle:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.lang-toggle .lang-hi {
    display: none;
}

[data-lang="hi"] .lang-toggle .lang-en {
    display: none;
}

[data-lang="hi"] .lang-toggle .lang-hi {
    display: inline;
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-sticky);
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    font-family: var(--font-heading);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--gray);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 5px;
}

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

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

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

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

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 8px 12px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 24px);
}

.btn-appointment {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.btn-appointment:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-md);
    min-width: 220px;
    padding: var(--spacing-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin-bottom: var(--spacing-xs);
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%);
}

.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    display: flex;
    flex-direction: column;
}

.title-line-1 {
    color: var(--dark);
    font-weight: 600;
}

.title-line-2 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    opacity: 0.1;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.doctor-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}

.floating-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--white);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.floating-card p {
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--gray);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ========================================
   Quick Info Banner
   ======================================== */
.quick-info {
    background: var(--white);
    padding: var(--spacing-lg) 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--light-bg);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.info-card:hover {
    background: var(--primary-gradient);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    transition: var(--transition-normal);
}

.info-card:hover i {
    color: var(--white);
    transform: scale(1.1);
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.info-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

.info-card:hover p {
    color: var(--white);
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.exp-text {
    font-size: 0.9rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.about-intro {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

.qualifications h3,
.expertise h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-md);
    color: var(--dark);
}

.qual-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.qual-list li {
    display: flex;
    align-items: start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--white);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary-color);
    transition: var(--transition-normal);
}

.qual-list li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.qual-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 2px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-normal);
}

.tag:hover {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
}

/* ========================================
   Conditions Section
   ======================================== */
.conditions-section {
    background: var(--white);
}

.condition-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 14px 28px;
    background: var(--light-gray);
    color: var(--dark);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
}

.tab-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.condition-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.condition-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: var(--transition-normal);
}

.condition-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

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

.condition-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
}

.condition-card p {
    color: var(--gray);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.card-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: var(--transition-normal);
}

.card-link:hover {
    gap: var(--spacing-sm);
}

.card-link i {
    transition: var(--transition-normal);
}

.card-link:hover i {
    transform: translateX(5px);
}

/* ========================================
   Video Section
   ======================================== */
/* YouTube Video Card Styles - FIXED VERSION */
.video-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

/* Video Thumbnail Container - 16:9 Aspect Ratio */
.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures image covers the entire area */
}

/* Video Info Section */
.video-info {
    padding: 20px;
    background: white;
}

.video-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-date {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ========================================
   Testimonials / Reviews Section
   ======================================== */
.testimonials-section {
    background: var(--white);
}

.google-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.review-card {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.review-header {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.review-rating {
    display: flex;
    gap: 4px;
}

.review-rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.review-text {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.review-date {
    font-size: 0.85rem;
    color: var(--gray);
}

.quote-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.1;
}

/* ========================================
   Blog Section
   ======================================== */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.blog-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 0;
    color: #64748b;
}

.blog-loading p {
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border: 1px solid #f1f5f9;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.blog-card-excerpt {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.blog-card-date {
    color: #64748b;
    font-size: 0.9rem;
}

.blog-card-link {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    color: #1e40af;
    gap: 0.75rem;
}

/* View All Button */
.blog-view-all-container {
    text-align: center;
    margin-top: 3rem;
}

/* Blog Modal */
.blog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
}

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

.blog-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

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

.blog-modal-close {
    position: sticky;
    top: 15px;
    right: 15px;
    float: right;
    font-size: 28px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.blog-modal-close:hover {
    background: #ef4444;
    transform: rotate(90deg);
}

.blog-modal-header {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    padding: 3rem 2rem 2rem;
    color: white;
}

.blog-modal-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-modal-title {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1.3;
    margin: 0;
    font-weight: 700;
}

.blog-modal-date {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.blog-modal-image {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-modal-body {
    padding: 2.5rem;
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.8;
}

.blog-modal-body p {
    margin-bottom: 1.2rem;
}

.blog-modal-body h1,
.blog-modal-body h2,
.blog-modal-body h3 {
    font-family: 'Playfair Display', serif;
    color: #2563eb;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-modal-body ul,
.blog-modal-body ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.blog-modal-body li {
    margin-bottom: 0.5rem;
}

.blog-modal-body strong {
    color: #1e40af;
    font-weight: 600;
}

@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card-title {
        font-size: 1.2rem;
    }

    .blog-modal-content {
        margin: 10px;
    }

    .blog-modal-header,
    .blog-modal-body {
        padding: 1.5rem;
    }

    .blog-modal-title {
        font-size: 1.5rem;
    }
}
/* ========================================
   Appointment Section
   ======================================== */
.appointment-section {
    background: var(--white);
}

.appointment-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.appointment-info {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    position: sticky;
    top: 100px;
}

.appointment-info h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--dark);
}

.benefits-list {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.benefits-list li {
    display: flex;
    align-items: start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--light-gray);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 2px;
}

.emergency-contact {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
}

.emergency-contact h4 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
}

.emergency-phone {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--error);
    margin: var(--spacing-sm) 0;
    transition: var(--transition-normal);
}

.emergency-phone:hover {
    transform: scale(1.05);
}

.appointment-form {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
}

.booking-options {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

/* Make sure booking frames have proper display behavior */
.booking-frame {
    display: none !important; /* Force hide by default */
    position: relative;
    width: 100%;
    min-height: 800px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.booking-frame.active {
    display: block !important; /* Force show when active */
}

/* Ensure iframes load properly */
.booking-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 800px;
    border: none;
    background: white;
}

/* Specific fix for Calendly */
#calendlyAppointment {
    min-height: 900px;
}

#calendlyAppointment iframe {
    min-height: 900px;
}

/* Specific fix for Google Appointment */
#googleAppointment {
    min-height: 1400px;
}

#googleAppointment iframe {
    min-height: 1400px;
}

/* Make sure parent container allows proper display */
.appointment-form {
    position: relative;
    width: 100%;
    background: #f8fafc;
    padding: 30px;
    border-radius: 20px;
}

/* Booking option buttons */
.booking-options {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.booking-option {
    flex: 1;
    padding: 15px 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
}

.booking-option:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateY(-2px);
}

.booking-option.active {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-color: #2563eb;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.booking-option i {
    font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-options {
        flex-direction: column;
    }
    
    .booking-frame {
        min-height: 600px;
    }
    
    .booking-frame iframe {
        min-height: 600px;
    }
}
/* ========================================
   Locations Section
   ======================================== */
.locations-section {
    background: var(--light-bg);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.location-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.location-card.highlight {
    border: 2px solid var(--accent-color);
}

.location-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.location-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

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

.location-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
}

.location-address {
    color: var(--gray);
    margin-bottom: var(--spacing-sm);
}

.location-timing {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.location-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
    color: var(--dark);
}

.contact-item p {
    margin-bottom: 4px;
    color: var(--gray);
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-links a:hover {
    transform: translateY(-3px) rotate(5deg);
    box-shadow: var(--shadow-md);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--dark);
    color: var(--light-gray);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

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

.footer-section h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--light-gray);
    transition: var(--transition-normal);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: var(--spacing-xs);
    color: var(--gray);
}

/* ========================================
   Scroll to Top Button
   ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: var(--z-fixed);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

/* ========================================
   WhatsApp Float Button
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-xl);
    z-index: var(--z-fixed);
    animation: pulse-whatsapp 2s infinite;
}

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

.whatsapp-float:hover {
    transform: scale(1.15);
}

/* ========================================
   Loading Spinner
   ======================================== */
.loading-spinner {
    text-align: center;
    padding: var(--spacing-2xl);
}

.loading-spinner i {
    font-size: 3rem;
    color: var(--primary-color);
}

.loading-spinner p {
    margin-top: var(--spacing-md);
    color: var(--gray);
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.bg-light {
    background: var(--light-bg);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero-container,
    .about-content,
    .appointment-container {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
    }
    
    .conditions-grid,
    .youtube-feed,
    .google-reviews,
    .featured-posts,
    .locations-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-lg);
        transition: var(--transition-normal);
        box-shadow: var(--shadow-xl);
        overflow-y: auto;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: var(--spacing-sm);
    }
    
    /* Typography */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Hero Stats */
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    /* Contact Info */
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Buttons */
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    section {
        padding: var(--spacing-xl) 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .lang-toggle {
        top: 80px;
        right: 10px;
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .scroll-to-top,
    .whatsapp-float {
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float {
        bottom: 85px;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* ========================================
   YouTube Video Modal
   ======================================== */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: modalFadeIn 0.3s ease;
}

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

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
    animation: modalSlideIn 0.4s ease;
}

.video-modal-header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 20px 60px 20px 20px;
    color: white;
    position: relative;
}

.video-modal-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.video-modal-date {
    margin: 8px 0 0 0;
    font-size: 14px;
    opacity: 0.9;
}

.video-modal-close {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: white;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) rotate(90deg);
}

.video-modal-body {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-modal-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        margin: 20px auto;
    }
    
    .video-modal-header {
        padding: 15px 50px 15px 15px;
    }
    
    .video-modal-title {
        font-size: 16px;
    }
    
    .video-modal-close {
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 28px;
    }
}

/* Loading Spinner for Modal */
.video-modal-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
}

.video-modal-loading i {
    font-size: 32px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .header,
    .lang-toggle,
    .scroll-to-top,
    .whatsapp-float,
    .mobile-menu-toggle {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: #000;
    }
    
    a {
        text-decoration: underline;
    }
}
/* Appointment section fixes */
.appointment-section {
    position: relative;
    overflow: visible;
}

.appointment-container {
    position: relative;
    z-index: 10;
    overflow: visible;
}

/* Booking frames */
.booking-frame {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 1400px;
    display: none;
    z-index: 20;
}

.booking-frame.active {
    display: block;
}

/* Iframe safety */
.booking-frame iframe {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 1200px;
    border: none;
    z-index: 30;
    background: #fff;
}

/* Prevent AOS from clipping iframe */
[data-aos] {
    overflow: visible !important;
}
/* Base dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 1000;
}

.dropdown:hover > .dropdown-menu {
    display: block;
}

/* Sub dropdown */
.dropdown-sub {
    position: relative;
}

.dropdown-submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Show sub menu */
.dropdown-sub:hover > .dropdown-submenu {
    display: block;
}

/* Arrow indicators */
.dropdown-sub > a::after {
    content: "›";
    float: right;
    font-size: 14px;
}
/* ===================================================================
   DOWNLOAD RESOURCES SECTION STYLES
   Add this CSS to your styles.css file
   =================================================================== */

/* Resources Section */
.resources-section {
    padding: var(--spacing-2xl) 0;
    background: var(--light-bg);
}

.resources-content {
    margin-top: var(--spacing-xl);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.resource-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

.resource-card.highlight {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid var(--primary-light);
}

.resource-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--success);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resource-icon {
    width: 70px;
    height: 70px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-normal);
}

.resource-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.resource-icon.primary {
    background: var(--primary-gradient);
}

.resource-icon.primary i {
    color: var(--white);
}

.resource-card:hover .resource-icon {
    transform: scale(1.1) rotate(5deg);
}

.resource-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
}

.resource-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.resource-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.resource-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.resource-list li i {
    color: var(--success);
    font-size: 1rem;
    flex-shrink: 0;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.05rem;
    margin-top: var(--spacing-md);
    width: 100%;
    justify-content: center;
}

.resources-info-banner {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 5px solid var(--warning);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.info-content {
    display: flex;
    gap: var(--spacing-md);
    align-items: start;
}

.info-content i {
    font-size: 2rem;
    color: var(--warning);
    flex-shrink: 0;
    margin-top: 5px;
}

.info-content h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.info-content p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .resource-card {
        padding: var(--spacing-lg);
    }

    .resource-badge {
        top: 15px;
        right: 15px;
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .info-content {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .info-content i {
        font-size: 1.5rem;
    }
}

/* ===================================================================
   END OF DOWNLOAD RESOURCES SECTION STYLES
   =================================================================== */
.footer-social i,
.social-links i {
    font-size: 18px;
    color: #ffffff;
    line-height: 1;
}







* 1. DOCTOR IMAGE - FLOATING ANIMATION (Scroll-Triggered) */
.about-image {
    position: relative;
    /* Animation will be added via JavaScript */
}

.about-image.animate {
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-20px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

.about-image img {
    transition: transform 0.6s ease;
}

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

/* Decorative Pulse Animation */
.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    opacity: 0.1;
    border-radius: 20px;
    z-index: -1;
}

.about-image.animate::before {
    animation: decorationPulse 4s ease-in-out infinite;
}

@keyframes decorationPulse {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(5px, 5px) scale(1.02);
    }
}

/* 2. EXPERIENCE BADGE - BREATHING ANIMATION (Scroll-Triggered) */
.about-experience {
    z-index: 10;
    /* Animation will be added via JavaScript */
}

.about-experience.animate {
    animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 20px 50px rgba(59, 130, 246, 0.6);
    }
}

/* 3. QUALIFICATIONS - SEQUENTIAL ZOOM IN ANIMATION (Scroll-Triggered) */
.qualifications .qual-list li {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s ease;
}

/* Animations only trigger when parent has 'animate' class */
.qualifications.animate .qual-list li {
    animation: zoomIn 0.6s ease forwards;
}

.qualifications.animate .qual-list li:nth-child(1) { animation-delay: 0.2s; }
.qualifications.animate .qual-list li:nth-child(2) { animation-delay: 0.4s; }
.qualifications.animate .qual-list li:nth-child(3) { animation-delay: 0.6s; }
.qualifications.animate .qual-list li:nth-child(4) { animation-delay: 0.8s; }
.qualifications.animate .qual-list li:nth-child(5) { animation-delay: 1s; }

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.qualifications .qual-list li:hover {
    transform: translateX(10px) !important;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
}

/* 4. AREAS OF EXPERTISE - IMAGE SLIDESHOW BACKGROUND */
expertise {
    position: relative;
    /* Remove any background styling from here */
}

.expertise-tags {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Enhanced Tag Hover Effects */
.expertise .tag {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.expertise .tag:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}


/* ========================================
   STEP 4: OPTIONAL ENHANCEMENTS
   ======================================== */

/* Add subtle white overlay for better text readability */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 0;
    pointer-events: none;
}

/* Multiple background positions for variety */
.about-bg-image:nth-child(1) {
    top: 30%;
    left: 70%;
    width: 500px;
    height: 500px;
}

.about-bg-image:nth-child(2) {
    top: 60%;
    left: 30%;
    width: 450px;
    height: 450px;
}

.about-bg-image:nth-child(3) {
    top: 40%;
    left: 50%;
    width: 550px;
    height: 550px;
}

.about-bg-image:nth-child(4) {
    top: 70%;
    left: 60%;
    width: 480px;
    height: 480px;
}

.about-bg-image:nth-child(5) {
    top: 35%;
    left: 40%;
    width: 520px;
    height: 520px;
}

.about-bg-image:nth-child(6) {
    top: 55%;
    left: 55%;
    width: 490px;
    height: 490px;
}


/* ========================================
   STEP 5: RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 968px) {
    .about-bg-image {
        width: 400px !important;
        height: 400px !important;
    }
    
    /* Center all images on mobile */
    .about-bg-image:nth-child(n) {
        top: 50% !important;
        left: 50% !important;
    }
}

@media (max-width: 576px) {
    .about-bg-image {
        width: 300px !important;
        height: 300px !important;
        opacity: 0.08 !important;
    }
}


/* ========================================
   OPTIONAL: PARALLAX EFFECT
   Add subtle movement on scroll
   ======================================== */

@media (prefers-reduced-motion: no-preference) {
    .about-bg-image.active {
        animation: subtleFloat 20s ease-in-out infinite;
    }
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-48%, -52%) scale(1.05);
    }
}

.expertise-tags {
    position: relative;
    z-index: 2;
}

/* Enhanced Tag Hover Effects */
.expertise .tag {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.expertise .tag:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

/* 5. BUTTON SHINE EFFECT */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::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.6s ease;
}

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

.btn-primary:hover i {
    transform: translateX(5px);
}

/* ========================================
   EXTEND EXPERTISE BACKGROUND TO ENTIRE ABOUT SECTION
   Add/Replace this CSS in your styles.css
   ======================================== */

/* ========================================
   STEP 1: Make About Section the Container
   ======================================== */

.about-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

/* Background images container - now covers entire section */
.about-bg-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Individual background images */
.about-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;  /* Larger for full section */
    height: 800px; /* Larger for full section */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    filter: blur(0px);
    transition: opacity 1.5s ease, filter 1.5s ease;
}

.about-bg-image.active {
    opacity: 0.3;  /* Slightly more subtle for full section */
    filter: blur(0px);
}

.about-bg-image.blur-out {
    opacity: 0;
    filter: blur(20px);
}

/* Ensure all content is above background */
.about-section > .container {
    position: relative;
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
}

/* ========================================
   FOCUSED ANIMATIONS - WHY BOOK ONLINE & EMERGENCY SECTIONS ONLY
   Add this CSS to your styles.css file
   ======================================== */

/* IMPORTANT: Only animates .appointment-info section
   Does NOT touch Google Appointment or Calendly */

/* 1. APPOINTMENT INFO CONTAINER - SLIDE IN FROM LEFT */
.appointment-info {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease 0.3s;
}

.appointment-section.animate .appointment-info {
    opacity: 1;
    transform: translateX(0);
}

/* 2. WHY BOOK ONLINE TITLE */
.appointment-info h3 {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.6s ease 0.5s;
}

.appointment-section.animate .appointment-info h3 {
    opacity: 1;
    transform: translateY(0);
}

/* 3. BENEFITS LIST - SEQUENTIAL ANIMATION */
.benefits-list {
    list-style: none;
}

.benefits-list li {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}

/* Sequential animation for each benefit */
.appointment-section.animate .benefits-list li {
    animation: slideInBenefit 0.6s ease forwards;
}

.appointment-section.animate .benefits-list li:nth-child(1) { animation-delay: 0.7s; }
.appointment-section.animate .benefits-list li:nth-child(2) { animation-delay: 0.85s; }
.appointment-section.animate .benefits-list li:nth-child(3) { animation-delay: 1s; }
.appointment-section.animate .benefits-list li:nth-child(4) { animation-delay: 1.15s; }
.appointment-section.animate .benefits-list li:nth-child(5) { animation-delay: 1.3s; }

@keyframes slideInBenefit {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 4. BENEFITS LIST - HOVER EFFECTS */
.benefits-list li {
    padding: 12px 0;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
}

.benefits-list li:hover {
    transform: translateX(10px);
    padding-left: 5px;
}

/* 5. CHECK ICON - SPIN ON HOVER */
.benefits-list li i {
    color: #10b981;
    font-size: 20px;
    margin-right: 12px;
    transition: all 0.3s ease;
    display: inline-block;
}

.benefits-list li:hover i {
    transform: scale(1.2) rotate(360deg);
    color: #059669;
}

/* 6. EMERGENCY CONTACT SECTION - SCALE UP ANIMATION */
.emergency-contact {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease 1.5s;
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 15px;
    border: 2px solid #fbbf24;
}

.appointment-section.animate .emergency-contact {
    opacity: 1;
    transform: scale(1);
    animation: gentlePulse 3s ease-in-out infinite 2s;
}

@keyframes gentlePulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    }
    50% {
        box-shadow: 0 12px 35px rgba(251, 191, 36, 0.5);
    }
}

/* 7. EMERGENCY TITLE */
.emergency-contact h4 {
    color: #92400e;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.emergency-contact h4::before {
    content: '📞';
    font-size: 24px;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
}

/* 8. EMERGENCY PHONE NUMBERS */
.emergency-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: white;
    border-radius: 10px;
    margin-bottom: 10px;
    color: #ef4444;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.emergency-phone:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

.emergency-phone i {
    font-size: 20px;
    animation: shake 1s ease infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
}

/* 9. LAST PHONE NUMBER - NO MARGIN */
.emergency-phone:last-child {
    margin-bottom: 0;
}

/* 10. RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    .benefits-list li {
        font-size: 14px;
    }
    
    .emergency-phone {
        font-size: 16px;
    }
}


/* ========================================
   ENHANCED ANIMATIONS FOR RESOURCES SECTION
   Add this CSS to your styles.css
   ======================================== */

/* 1. HEADER ANIMATIONS (Scroll-Triggered) */
.resources-section .section-subtitle {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.6s ease;
}

.resources-section.animate .section-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.resources-section .section-title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.resources-section.animate .section-title {
    opacity: 1;
    transform: translateY(0);
}

.resources-section .section-description {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.4s;
}

.resources-section.animate .section-description {
    opacity: 1;
    transform: translateY(0);
}

/* 2. RESOURCE CARDS - STAGGERED APPEARANCE */
.resource-card {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.resources-section.animate .resource-card:nth-child(1) {
    animation: cardSlideUp 0.8s ease forwards 0.6s;
}

.resources-section.animate .resource-card:nth-child(2) {
    animation: cardSlideUp 0.8s ease forwards 0.8s;
}

.resources-section.animate .resource-card:nth-child(3) {
    animation: cardSlideUp 0.8s ease forwards 1s;
}

@keyframes cardSlideUp {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* 3. CARD HOVER EFFECTS - 3D LIFT */
.resource-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.resource-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.25);
}

/* 4. ICON ANIMATIONS */
.resource-icon {
    transition: all 0.4s ease;
}

.resource-card:hover .resource-icon {
    transform: scale(1.15) rotate(5deg);
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1.15) translateY(0); }
    50% { transform: scale(1.25) translateY(-10px); }
}

/* 5. ICON PULSE ANIMATION ON LOAD */
.resources-section.animate .resource-icon i {
    animation: iconPulse 2s ease-in-out infinite;
}

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

/* 6. CENTER CARD (HIGHLIGHT) - SPECIAL EFFECTS */
.resource-card.highlight {
    position: relative;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 3px solid #3b82f6;
}

.resource-card.highlight::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3b82f6, #2563eb, #3b82f6);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: borderGlow 3s ease-in-out infinite;
}

.resource-card.highlight:hover::before {
    opacity: 1;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* 7. FREE DOWNLOAD BADGE - PULSE ANIMATION */
.resource-badge {
    animation: badgePulse 2s ease-in-out infinite;
}

.resources-section.animate .resource-badge {
    animation: badgeSlideDown 0.6s ease forwards 1s, badgePulse 2s ease-in-out infinite 1.6s;
}

@keyframes badgeSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

/* 8. LIST ITEMS - SEQUENTIAL FADE IN */
.resource-list li {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.resources-section.animate .resource-card:nth-child(1) .resource-list li:nth-child(1) {
    animation: listItemFade 0.5s ease forwards 1.2s;
}

.resources-section.animate .resource-card:nth-child(1) .resource-list li:nth-child(2) {
    animation: listItemFade 0.5s ease forwards 1.35s;
}

.resources-section.animate .resource-card:nth-child(1) .resource-list li:nth-child(3) {
    animation: listItemFade 0.5s ease forwards 1.5s;
}

.resources-section.animate .resource-card:nth-child(1) .resource-list li:nth-child(4) {
    animation: listItemFade 0.5s ease forwards 1.65s;
}

.resources-section.animate .resource-card:nth-child(3) .resource-list li:nth-child(1) {
    animation: listItemFade 0.5s ease forwards 1.4s;
}

.resources-section.animate .resource-card:nth-child(3) .resource-list li:nth-child(2) {
    animation: listItemFade 0.5s ease forwards 1.55s;
}

.resources-section.animate .resource-card:nth-child(3) .resource-list li:nth-child(3) {
    animation: listItemFade 0.5s ease forwards 1.7s;
}

.resources-section.animate .resource-card:nth-child(3) .resource-list li:nth-child(4) {
    animation: listItemFade 0.5s ease forwards 1.85s;
}

@keyframes listItemFade {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 9. LIST ITEM HOVER - CHECK ICON SPIN */
.resource-list li {
    transition: all 0.3s ease;
}

.resource-list li:hover {
    transform: translateX(10px);
    color: #3b82f6;
}

.resource-list li i {
    transition: all 0.3s ease;
}

.resource-list li:hover i {
    transform: rotate(360deg) scale(1.2);
    color: #10b981;
}

/* 10. BUTTON ANIMATIONS */
.resource-card .btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.resource-card .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.resource-card .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.resource-card .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.resource-card .btn-primary i {
    transition: transform 0.3s ease;
}

.resource-card .btn-primary:hover i {
    transform: translateX(5px);
}

/* 11. INFO BANNER - SLIDE IN FROM BOTTOM */
.resources-info-banner {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.resources-section.animate .resources-info-banner {
    animation: bannerSlideUp 0.8s ease forwards 1.8s;
}

@keyframes bannerSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 12. INFO BANNER ICON - PULSE */
.resources-info-banner i {
    animation: infoPulse 2s ease-in-out infinite;
}

@keyframes infoPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
}

/* 13. CARD BACKGROUND GRADIENT SHIFT ON HOVER */
.resource-card {
    background: white;
    transition: all 0.4s ease;
}

.resource-card:not(.highlight):hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

/* 14. RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    .resource-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

/* ========================================
   LOCATIONS SECTION - HOVER BACKGROUND IMAGES
   Copy this entire CSS block to your styles.css
   ======================================== */

/* Background container - absolute positioned behind everything */
.locations-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Individual background images */
.location-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    filter: blur(1.1px) brightness(0.95);
}

.location-bg-image.active {
    opacity: 1;
}

/* Overlay on background images */
.location-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.7), rgba(37, 99, 235, 0.8));
    mix-blend-mode: multiply;
}

/* Section positioning */
.locations-section {
    position: relative;
    overflow: hidden;
}

/* Content above background */
.section-content {
    position: relative;
    z-index: 1;
}

/* Enhanced Location Card Hover */
.location-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Shine effect on hover */
.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

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

/* Card lift and shadow on hover */
.location-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.3);
}

/* Icon animations */
.location-icon {
    transition: all 0.4s ease;
}

.location-card:hover .location-icon {
    transform: scale(1.15) rotate(360deg);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.location-card:hover .location-icon i {
    color: white;
}


/* ========================================
   PROFESSIONAL LOGO (Option 4: Premium Badge)
   Copy this entire CSS block to your styles.css
   ======================================== */

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

.logo-badge {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.logo-badge:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
}

.badge-circle {
    font-size: 24px;
    font-weight: 800;
    color: white;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 2;
}

.logo-badge::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid white;
    border-radius: 50%;
    top: 0;
    left: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 11px;
    color: #6366f1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .logo-badge {
        width: 45px;
        height: 45px;
    }
    
    .badge-circle {
        font-size: 20px;
    }
    
    .logo-name {
        font-size: 16px;
    }
    
    .logo-subtitle {
        font-size: 9px;
    }
}


/* ========================================
   ADDITIONAL PROFESSIONAL ENHANCEMENTS
   ======================================== */

/* Button ripple effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.btn:active::after {
    transform: translate(-50%, -50%) scale(20);
}

/* Enhanced contact item hover */
.contact-item {
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item > i {
    transition: all 0.3s ease;
}

.contact-item:hover > i {
    transform: scale(1.1) rotate(5deg);
}

/* Social link improvements */
.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Badge pulse animation */
.location-badge {
    animation: badgePulse 2s ease-in-out infinite;
}

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







/* ========================================
   LOCATION CARDS - BLUR OTHER CARDS ON HOVER
   Add this CSS to your styles.css
   ======================================== */

/* Smooth transitions for all cards */
.location-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(0px);
}

/* When hovering over the grid, blur all cards by default */
.locations-grid:hover .location-card {
    filter: blur(8px);
    opacity: 0.4;
    transform: scale(0.95);
}

/* Remove blur from the hovered card */
.locations-grid:hover .location-card:hover {
    filter: blur(0px);
    opacity: 1;
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.4);
    z-index: 10;
}

/* Image should also blur */
.location-card .location-image img {
    transition: all 0.5s ease;
}

.locations-grid:hover .location-card .location-image img {
    filter: blur(3px);
}

.locations-grid:hover .location-card:hover .location-image img {
    filter: blur(0px);
}


/* ========================================
   GET DIRECTIONS BUTTON - ENHANCED HOVER
   ======================================== */

/* Base button styling */
.location-buttons .btn {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Enhanced hover state */
.location-card:hover .location-buttons .btn {
    transform: scale(1.1);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-color: #3b82f6;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5);
    padding: 14px 28px;
    font-weight: 700;
}

/* Icon animation on button hover */
.location-buttons .btn i {
    transition: all 0.3s ease;
}

.location-card:hover .location-buttons .btn:hover i {
    transform: scale(1.3) rotate(360deg);
    margin-right: 12px;
}

/* Pulse animation for the button */
.location-card:hover .location-buttons .btn {
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5);
    }
    50% {
        box-shadow: 0 20px 45px rgba(59, 130, 246, 0.7);
    }
}

/* Ripple effect on click */
.location-buttons .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.location-buttons .btn:active::before {
    width: 300px;
    height: 300px;
}

/* Glow effect */
.location-card:hover .location-buttons .btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3b82f6, #10b981, #3b82f6);
    border-radius: inherit;
    z-index: -1;
    opacity: 0.7;
    filter: blur(10px);
    animation: glowRotate 3s linear infinite;
}

@keyframes glowRotate {
    0% {
        filter: blur(10px) hue-rotate(0deg);
    }
    100% {
        filter: blur(10px) hue-rotate(360deg);
    }
}


/* ========================================
   CHECK SCHEDULE BUTTON (Bhopal card)
   ======================================== */

.location-card.highlight:hover .btn-primary {
    transform: scale(1.15);
    box-shadow: 0 20px 45px rgba(59, 130, 246, 0.6);
}


/* ========================================
   ADDITIONAL ENHANCEMENTS
   ======================================== */

/* Highlight card border glow on hover */
.location-card.highlight {
    position: relative;
}

.location-card.highlight::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #fbbf24);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(15px);
}

.locations-grid:hover .location-card.highlight:hover::before {
    opacity: 0.8;
}

/* Badge pulse on hover */
.location-badge {
    transition: all 0.3s ease;
}

.location-card:hover .location-badge {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.5);
}

/* Timing text highlight */
.location-timing {
    transition: all 0.3s ease;
}

.location-card:hover .location-timing {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    transform: scale(1.05);
}


/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 968px) {
    /* Reduce blur effect on mobile */
    .locations-grid:hover .location-card {
        filter: blur(4px);
        opacity: 0.6;
        transform: scale(0.98);
    }
    
    /* Less dramatic hover on mobile */
    .locations-grid:hover .location-card:hover {
        transform: scale(1.02) translateY(-5px);
    }
}


/* ========================================
   OPTIONAL: Spotlight Effect
   ======================================== */

/* Add a spotlight effect on the hovered card */
.location-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

.locations-grid:hover .location-card:hover::after {
    opacity: 1;
}}


/* ========================================
   FLOATING SHAPES FOR ABOUT SECTION
   Added for beautiful animated background
   ======================================== */

/* About Section with Dark Background and Floating Shapes */
.about-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

/* Ensure content is above floating shapes */
.about-section > .container {
    position: relative;
    z-index: 10;
}

/* Large Blue Circle - Top Left */
.about-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    opacity: 0.15;
    animation: float1 25s ease-in-out infinite;
    z-index: 0;
}

/* Large Green Circle - Bottom Right */
.about-section::after {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    bottom: -250px;
    right: -250px;
    opacity: 0.12;
    animation: float2 30s ease-in-out infinite;
    z-index: 0;
}

/* Pink Circle - Middle Right */
.floating-circle-1 {
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #ec4899, #db2777);
    border-radius: 50%;
    top: 20%;
    right: 10%;
    opacity: 0.1;
    animation: float3 20s ease-in-out infinite;
    z-index: 0;
}

/* Purple Circle - Middle Left */
.floating-circle-2 {
    position: absolute;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 50%;
    bottom: 30%;
    left: 15%;
    opacity: 0.1;
    animation: float4 18s ease-in-out infinite;
    z-index: 0;
}

/* Yellow Circle - Top Right */
.floating-circle-3 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    top: 10%;
    right: 20%;
    opacity: 0.08;
    animation: float5 22s ease-in-out infinite;
    z-index: 0;
}

/* Floating Animations */
@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(120px, 120px) scale(1.2);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-180px, -120px) scale(1.3);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-100px, 140px) rotate(180deg);
    }
}

@keyframes float4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(140px, -100px) rotate(-180deg);
    }
}

@keyframes float5 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-80px, 80px) scale(1.4);
    }
}

/* Text Colors for Dark Background */
.about-section .section-title {
    color: white;
}

.about-section .section-subtitle {
    color: #3b82f6;
}

.about-section .about-intro {
    color: #e2e8f0;
}

.about-section .qualifications h3,
.about-section .expertise h3 {
    color: white;
}

/* Qualification Cards - Dark Glass Effect */
.about-section .qual-list li {
    color: #cbd5e1;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-left: 3px solid #3b82f6;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-section .qual-list li:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.about-section .qual-list i {
    color: #3b82f6;
}

/* Expertise Tags - Updated for Dark Background */
.about-section .expertise-tags .tag {
    background: rgba(59, 130, 246, 0.2);
    border: 2px solid rgba(59, 130, 246, 0.3);
    color: #93c5fd;
    backdrop-filter: blur(10px);
}

.about-section .expertise-tags .tag:hover {
    background: rgba(59, 130, 246, 0.4);
    border-color: #3b82f6;
    color: #dbeafe;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* Experience Badge - Enhanced for Dark Background */
.about-section .about-experience {
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5);
}

/* Responsive Adjustments for Floating Shapes */
@media (max-width: 968px) {
    /* Smaller circles on tablets */
    .about-section::before {
        width: 300px;
        height: 300px;
        top: -100px;
        left: -100px;
    }
    
    .about-section::after {
        width: 400px;
        height: 400px;
        bottom: -150px;
        right: -150px;
    }
    
    .floating-circle-1,
    .floating-circle-2,
    .floating-circle-3 {
        width: 200px;
        height: 200px;
    }
    
    /* Slower animations on mobile */
    .about-section::before,
    .about-section::after,
    .floating-circle-1,
    .floating-circle-2,
    .floating-circle-3 {
        animation-duration: 35s;
    }
}

@media (max-width: 576px) {
    /* Even smaller on mobile */
    .about-section::before {
        width: 200px;
        height: 200px;
        opacity: 0.08;
    }
    
    .about-section::after {
        width: 250px;
        height: 250px;
        opacity: 0.08;
    }
    
    .floating-circle-1,
    .floating-circle-2,
    .floating-circle-3 {
        width: 150px;
        height: 150px;
        opacity: 0.06;
    }
}

/* Accessibility - Respect User's Motion Preferences */
@media (prefers-reduced-motion: reduce) {
    .about-section::before,
    .about-section::after,
    .floating-circle-1,
    .floating-circle-2,
    .floating-circle-3 {
        animation: none;
    }
}

/* Performance Optimization */
.about-section {
    will-change: background;
    transform: translateZ(0);
}

.about-section::before,
.about-section::after,
.floating-circle-1,
.floating-circle-2,
.floating-circle-3 {
    will-change: transform;
    transform: translateZ(0);
}