/* ==================== RESET & ROOT VARIABLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* New Premium Color Palette - Based on Logo */
    --primary: #FCA5F3;
    --primary-dark: #E87FDF;
    --primary-light: #FDDCFB;
    --secondary: #D4B653;
    --secondary-dark: #B89A3D;
    --secondary-light: #F0E5A8;
    --accent: #3DA0E3;
    --accent-dark: #2B7FC7;
    --accent-light: #A3D5F5;
    
    /* Neutrals */
    --white: #FFFFFF;
    --bg-main: #FAFAFA;
    --bg-secondary: #F5F5F5;
    --bg-gradient: linear-gradient(135deg, #FAFAFA 0%, #FFFFFF 100%);
    
    /* Text Colors */
    --text-primary: #2D2D2D;
    --text-secondary: #6B6B6B;
    --text-light: #9E9E9E;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(252, 165, 243, 0.12);
    --shadow-md: 0 4px 20px rgba(252, 165, 243, 0.18);
    --shadow-lg: 0 8px 32px rgba(252, 165, 243, 0.24);
    --shadow-xl: 0 16px 48px rgba(252, 165, 243, 0.30);
    
    /* Typography */
    --font-primary: 'Urbanist', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --font-tertiary: 'Sora', sans-serif;
    --font-accent: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 10px;
    border: 2px solid var(--bg-main);
}

/* ==================== ANIMATED BACKGROUND ==================== */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: 
        radial-gradient(circle at 20% 30%, rgba(252, 165, 243, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(61, 160, 227, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 182, 83, 0.03) 0%, transparent 50%);
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.float-element {
    position: absolute;
    color: var(--primary);
    opacity: 0.15;
    animation: float 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(5deg); }
    50% { transform: translateY(-60px) rotate(-5deg); }
    75% { transform: translateY(-30px) rotate(3deg); }
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;

    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(252, 165, 243, 0.15);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    height: 80px;
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.logo-circle {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text h1 {
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text p {
    font-family: var(--font-tertiary);
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav {
    display: flex;
   gap: 32px;
}

.nav-link {
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--bg-secondary);
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 80px 80px;
    position: relative;
    overflow: hidden;
    background: var(--bg-gradient);
}

.hero-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: shapeFloat 20s ease-in-out infinite;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    top: 50%;
    left: 30%;
    animation-delay: 10s;
}

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

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

.badge-24hr {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(252, 165, 243, 0.15) 0%, rgba(61, 160, 227, 0.15) 100%);
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--accent-dark);
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.hero-main-title{
    font-size: 68px;
}
.hero-title {
    font-family: var(--font-accent);
    font-size: 62px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 48px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

/* Key Services Highlight Section */
.key-services-section {
    padding: 60px 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
}

.key-services-content {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.key-services-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
}

.key-services-text h3 {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.key-services-text p {
    font-family: var(--font-primary);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .key-services-section {
        padding: 48px 24px;
    }
    
    .key-services-content {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
}

/* Women's Care Section */
.womens-care-section {
    padding: 120px 80px;
    background: white;
}

.womens-care-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.womens-care-image {
    position: relative;
    height: 600px;
    background: var(--bg-secondary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.doctor-placeholder-icon {
    font-size: 200px;
    color: #CCCCCC;
}

.womens-care-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: var(--shadow-md);
}

.womens-care-badge i {
    font-size: 24px;
    color: var(--primary);
}

.womens-care-badge span {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.womens-care-description {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.womens-care-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.womens-care-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.womens-care-features .feature:hover {
    background: var(--primary-light);
    transform: translateX(8px);
}

.womens-care-features .feature i {
    font-size: 24px;
    color: var(--accent);
}

.womens-care-features .feature span {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

.btn-womens-care {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-womens-care:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 1024px) {
    .womens-care-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .womens-care-image {
        height: 500px;
    }
    
    .doctor-placeholder-icon {
        font-size: 150px;
    }
}

@media (max-width: 768px) {
    .womens-care-section {
        padding: 60px 24px;
    }
    
    .womens-care-image {
        height: 400px;
    }
    
    .doctor-placeholder-icon {
        font-size: 120px;
    }
}

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

.stat-item h3 {
    font-family: var(--font-accent);
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-item p {
    font-family: var(--font-tertiary);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

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

.btn-hero-secondary:hover {
    background: var(--primary-light);
    transform: translateY(-4px);
}

.hero-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-tertiary);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.badge-item i {
    color: var(--accent);
    font-size: 20px;
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

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

.lottie-container {
    width: 100%;
    height: 600px;
    filter: drop-shadow(0 20px 40px rgba(252, 165, 243, 0.3));
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.info-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    animation: floatCard 6s ease-in-out infinite;
}

.info-card i {
    font-size: 32px;
    color: var(--accent);
}

.info-card h4 {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.info-card p {
    font-size: 13px;
    color: var(--text-secondary);
}

.card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 40%;
    left: -5%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    right: 15%;
    animation-delay: 4s;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent);
    font-size: 32px;
    animation: bounce 2s ease-in-out infinite;
}

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

/* ==================== COMMON SECTION STYLES ==================== */
section {
    padding: 120px 80px;
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 64px;
}

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

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(252, 165, 243, 0.15) 0%, rgba(61, 160, 227, 0.15) 100%);
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent-dark);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-accent);
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-description {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 120px 80px;
    background: var(--bg-gradient);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.why-card {
    padding: 40px;
    background: white;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

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

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    transition: all 0.4s ease;
}

.why-card:hover .why-icon {
    transform: rotateY(360deg);
}

.why-card h3 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.why-card p {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 24px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* About Content */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
    text-align: justify;
}

@media (max-width: 768px) {
    .about-text {
        font-size: 16px;
        text-align: left;
    }
}

/* Scroll Animation */
[data-scroll-animation] {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-scroll-animation].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== VISION & MISSION ==================== */
.vision-mission {
    background: white;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.vm-card {
    padding: 48px;
    border-radius: 24px;
    background: var(--bg-gradient);
    border: 2px solid rgba(252, 165, 243, 0.2);
    transition: all 0.4s ease;
}

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

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    font-size: 36px;
    color: white;
    box-shadow: var(--shadow-md);
}

.vm-card h3 {
    font-family: var(--font-accent);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.vm-main {
    font-family: var(--font-secondary);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.vm-tagline {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.vm-tagline i {
    color: var(--accent);
    font-size: 24px;
}

.vm-tagline p {
    font-family: var(--font-tertiary);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.mission-list {
    list-style: none;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mission-list li div {
    flex: 1;
}

.mission-list li strong {
    display: block;
    font-family: var(--font-secondary);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.mission-list li p {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.mission-list li:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(8px);
}

.mission-list i {
    flex-shrink: 0;
    color: var(--accent);
    font-size: 24px;
    margin-top: 2px;
}


/* ==================== ABOUT US ======================== */

.ourservices{
    background-color: #ffffff;
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    row-gap: 10rem;
}

.womencarepara{
    width: 90%;
    padding-left: 0px;
    padding-right: 0px;
}
/* ==================== SPECIALITIES ==================== */
.specialities {
    background: var(--bg-gradient);
}

.specialities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.specialty-card {
    padding: 40px;
    background: white;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.specialty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.specialty-card:hover::before {
    opacity: 1;
}

.specialty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
}

.specialty-card:hover .specialty-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.specialty-card h3 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.specialty-card p {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.card-hover-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px 2px 0 0;
    transition: transform 0.4s ease;
}

.specialty-card:hover .card-hover-line {
    transform: translateX(-50%) scaleX(1);
}

/* ==================== DOCTORS ==================== */
.doctors {
    background: white;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.doctor-card {
    background: var(--bg-gradient);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.doctor-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

/* Doctor Profile Section */
.doctor-profile-section {
    padding: 120px 80px;
    background: white;
}

.doctor-credentials {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    margin-top: 16px;
}

.doctor-designation {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.doctor-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    margin-top: 64px;
}

.doctor-profile-image {
    position: relative;
}

.doctor-placeholder-profile {
    width: 100%;
    height: 700px;
    background: var(--bg-secondary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 300px;
    color: #CCCCCC;
    box-shadow: var(--shadow-xl);
}

.doctor-experience-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.doctor-experience-badge i {
    font-size: 32px;
    color: var(--accent);
}

.doctor-experience-badge strong {
    display: block;
    font-family: var(--font-accent);
    font-size: 24px;
    font-weight: 900;
    color: var(--text-primary);
}

.doctor-experience-badge span {
    font-family: var(--font-primary);
    font-size: 13px;
    color: var(--text-secondary);
}

.doctor-profile-content h3 {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.doctor-bio {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
    text-align: justify;
}

.expertise-heading {
    margin-top: 48px;
    margin-bottom: 32px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    background: var(--primary-light);
    transform: translateX(4px);
}

.expertise-item i {
    color: var(--accent);
    font-size: 18px;
}

.expertise-item span {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.doctor-articles {
    margin-top: 48px;
    padding: 32px;
    background: var(--bg-gradient);
    border-radius: 16px;
    border-left: 4px solid var(--accent);
}

.doctor-articles h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.articles-note {
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--text-secondary);
    font-style: italic;
}

@media (max-width: 1024px) {
    .doctor-profile-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .doctor-placeholder-profile {
        height: 500px;
        font-size: 200px;
    }
}

@media (max-width: 768px) {
    .doctor-profile-section {
        padding: 60px 24px;
    }
    
    .doctor-placeholder-profile {
        height: 400px;
        font-size: 150px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

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

.doctor-card:hover .doctor-image img {
    transform: scale(1.1);
}

.doctor-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Services Section */
.services-section {
    padding: 120px 80px;
    background: white;
}

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

.service-card {
    position: relative;
    padding: 48px 40px;
    background: var(--bg-gradient);
    border-radius: 24px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

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

.service-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--font-accent);
    font-size: 48px;
    font-weight: 900;
    color: rgba(252, 165, 243, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}

.service-card h3 {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.service-card p {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.doctor-card:hover .doctor-overlay {
    opacity: 1;
}

.doctor-specialties {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.doctor-specialties span {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-family: var(--font-tertiary);
    font-size: 13px;
    font-weight: 600;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.doctor-info {
    padding: 32px;
}

.doctor-info h3 {
    font-family: var(--font-secondary);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.doctor-position {
    font-family: var(--font-tertiary);
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 8px;
}

.doctor-expertise {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.doctor-stats {
    display: flex;
    gap: 24px;
    padding-top: 20px;
    border-top: 2px solid rgba(252, 165, 243, 0.2);
}

.doctor-stats .stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-tertiary);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

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

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

.gallery-item {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #CCCCCC;
}

.gallery-placeholder i {
    font-size: 80px;
}

.gallery-placeholder p {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 0;
}

.gallery-note {
    text-align: center;
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--text-secondary);
    font-style: italic;
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 24px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.doctor-stats i {
    color: var(--accent);
    font-size: 18px;
}
/* ==================== ABOUT DR. S. SHWETHA ========== */
.sshwetha{
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.sshwetha .content{
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: row;
    width:100%;
    gap: 10rem;
}
.sshwetha .content .left{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width:40%;
}
.sshwetha .content .left .card-shwetha{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap:3rem;
}
.sshwetha .content .left .card-shwetha p{
    text-align: justify;
}
.sshwetha .content .left .card-shwetha img{
    width:80%;
    border:0 solid transparent;
    border-radius: 1rem;
}
/* ==================== FACILITIES ==================== */
.facilities {
    background: var(--bg-gradient);
}

/* Profile page styles (moved from doctorProfile.html) */
.profile-container{max-width:1100px;margin:48px auto;padding:24px;background:var(--bg-gradient);border-radius:12px;box-shadow:var(--shadow-md);} 
.profile-grid{display:flex;gap:24px;flex-wrap:wrap}
.profile-photo{flex:0 0 360px;max-width:360px;border-radius:12px;overflow:hidden;background:#eee}
.profile-photo img{width:100%;height:100%;object-fit:cover;display:block}
.profile-main{flex:1 1 1px;padding:8px}
.profile-main h1{margin:0 0 4px 0;font-size:28px}
.profile-main .meta{color:var(--accent);font-weight:700;margin-bottom:8px}
.profile-main .academics{color:var(--text-secondary);margin-bottom:12px}
.profile-stats{display:flex;gap:16px;margin-bottom:12px}
.profile-about{line-height:1.7;color:var(--text-primary);margin-bottom:12px}
.profile-areas{display:flex;gap:8px;flex-wrap:wrap;list-style:none;padding:0;margin:0}
.profile-areas li{background:rgba(61,160,227,0.12);padding:8px 12px;border-radius:999px;color:var(--accent);font-weight:600}
.actions{margin-top:18px}
.btn{display:inline-block;background:linear-gradient(90deg,var(--primary),var(--accent));color:white;padding:10px 16px;border-radius:8px;text-decoration:none}
.muted{color:var(--text-secondary)}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.facility-card {
    padding: 48px 40px;
    background: white;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.facility-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.facility-card:hover .facility-icon {
    transform: rotateY(360deg);
}

.facility-card h3 {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.facility-card p {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ==================== CONSULTATION HOURS ==================== */
.consultation-hours {
    background: white;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.hour-card {
    padding: 32px;
    background: var(--bg-gradient);
    border-radius: 16px;
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
}

.hour-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.hour-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: white;
}

.hour-card h3 {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.hour-card .time {
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.hour-card .days {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--text-secondary);
}

/* ==================== APPOINTMENT ==================== */
.appointment {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-secondary) 100%);
}

.appointment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.appointment-content {
    padding-right: 40px;
}

.appointment-features {
    margin: 32px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--accent);
    font-size: 24px;
}

.contact-methods {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-method:hover {
    border-color: var(--primary);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.contact-method i {
    font-size: 36px;
    color: var(--accent);
}

.contact-method h4 {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-method p {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
}

.appointment-form-container {
    padding: 48px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.appointment-form .form-group {
    margin-bottom: 24px;
}

.appointment-form label {
    display: block;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    font-size: 20px;
    color: var(--text-light);
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 2px solid rgba(252, 165, 243, 0.2);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--text-primary);
    background: var(--bg-main);
    transition: all 0.3s ease;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-family: var(--font-tertiary);
    font-size: 13px;
    color: var(--text-secondary);
}

.form-note i {
    color: var(--accent);
}

/* ==================== CONTACT ==================== */
.contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
}

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

.info-card {
    padding: 32px;
    background: var(--bg-gradient);
    border-radius: 20px;
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

.info-content h3 {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.info-content p {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.info-content a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-content a:hover {
    color: var(--primary);
}

.hours-24 {
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 800;
    color: var(--accent) !important;
}

.link-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    font-family: var(--font-tertiary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-button:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.map-container {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-overlay {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.map-overlay:hover {
    transform: translateX(-50%) translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(135deg, #2D2D2D 0%, #1a1a1a 100%);
    color: white;
}

.footer-top {
    padding: 80px 80px 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 64px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-logo .logo-circle {
    width: 48px;
    height: 48px;
}

.footer-logo h3 {
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.footer-logo p {
    font-family: var(--font-tertiary);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-text {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

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

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    transform: translateY(-4px);
}

.footer-col h4 {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-family: var(--font-primary);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-list i {
    flex-shrink: 0;
    color: var(--primary);
    font-size: 20px;
    margin-top: 2px;
}

.footer-bottom {
    padding: 32px 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-bottom p {
    font-family: var(--font-primary);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-links a {
    font-family: var(--font-primary);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* ==================== FLOATING BUTTONS ==================== */
.whatsapp-float,
.call-float {
    position: fixed;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float {
    bottom: 32px;
    right: 32px;
}

.call-float {
    bottom: 112px;
    right: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.whatsapp-float:hover,
.call-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid currentColor;
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
        --container-padding: 0 40px;
    }
    
    .header-container,
    section,
    .footer-top,
    .footer-bottom {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .hero {
        padding: 120px 40px 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .hero-main-title{
        font-size: 48px;
    }
    .hero-title {
        font-size: 42px;
    }
  
    .keyservices-heading{
        text-align: center;
    }
    
    .womencare-heading{
        text-align: center;
    }
    .womencarepara{
        text-align: center;
        padding-left: 0px;
        padding-right: 0px;
    }
    .section-title {
        font-size: 42px;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
    }
    
    .doctors-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .appointment-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header {
        height: 70px;
    }
    
    .header-container {
        padding: 0 24px;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 24px;
        gap: 24px;
        transition: left 0.4s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 16px;
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid rgba(252, 165, 243, 0.2);
    }
    
    .header-actions {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    section {
        padding: 60px 24px;
    }
    
    .hero {
        padding: 100px 24px 40px;
        min-height: auto;
    }
    .hero-main-title{
        font-size: 36px;
    }
    .hero-title {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }
  
    .ourservices{
        flex-direction: column;
        justify-content: center;
    }
  
    .rightbox{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .keyservices-heading{
        text-align: center;
    }
    .key-services-list{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .womencare-heading{
        text-align: center;
    }
    .womencarepara{
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
    }
    .stat-divider {
        width: 100%;
        height: 2px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .lottie-container {
        height: 400px;
    }
    
    .floating-cards {
        display: none;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .specialities-grid,
    .facilities-grid,
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .doctors-grid {
        grid-template-columns: 1fr;
    }
    .sshwetha .content{
        flex-direction: column;
    }
    .sshwetha .content .left{
        width: 100%;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-top,
    .footer-bottom {
        padding: 60px 24px 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .whatsapp-float,
    .call-float {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
    
    .whatsapp-float {
        bottom: 24px;
        right: 24px;
    }
    
    .call-float {
        bottom: 96px;
        right: 24px;
    }
}

/* ==================== TESTIMONIALS SLIDER ==================== */
.testimonials {
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-secondary) 100%);
    padding: 80px 0;
    overflow: hidden;
}

.testimonial-slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 100%;
    display: flex;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border-left: 6px solid var(--primary);
    min-height: 240px;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-header {
    margin-bottom: 16px;
}

.testimonial-title {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.testimonial-stars i {
    color: var(--secondary);
    font-size: 14px;
}

.testimonial-text {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author-name {
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--text-primary);
    font-size: 14px;
}

.testimonial-author-role {
    font-family: var(--font-primary);
    font-size: 12px;
    color: var(--text-light);
}

/* Navigation Buttons */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    z-index: 5;
}

.testimonial-nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.testimonial-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.testimonial-prev {
    left: -60px;
}

.testimonial-next {
    right: -60px;
}

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

.testimonial-dot {
    width: 10px;
    height: 10px;
    background: rgba(212, 182, 83, 0.4);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot:hover {
    background: rgba(212, 182, 83, 0.6);
}

.testimonial-dot.active {
    background: var(--secondary);
    width: 28px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(212, 182, 83, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonial-prev {
        left: 10px;
    }
    
    .testimonial-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonial-slider-container {
        padding: 0 20px;
    }
    
    .testimonial-slide {
        padding: 24px;
        min-height: auto;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 48px 0;
    }
    
    .testimonial-slider-container {
        padding: 0 12px;
    }
    
    .testimonial-slide {
        padding: 20px;
    }
    
    .testimonial-title {
        font-size: 16px;
    }
    
    .testimonial-text {
        font-size: 13px;
    }
    
    .testimonial-prev,
    .testimonial-next {
        left: auto;
        right: auto;
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .testimonial-prev {
        bottom: -50px;
        left: 20px;
        top: auto;
        transform: none;
    }
    
    .testimonial-next {
        bottom: -50px;
        right: 20px;
        top: auto;
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stat-item h3 {
        font-size: 36px;
    }
}