/* Hero Section - Eye-Catching Design */
        .hero {
    background: linear-gradient(135deg, #ffffff 0%, #e8f4ff 40%, #4A90E2 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    min-height: 600px;
    position: relative;
    z-index: 2;
    padding: 2rem 1rem;
}

.hero-content {
    text-align: left;
    padding: 2rem 0;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: #4A90E2;
    position: relative;
}

.hero-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    font-weight: 600;
    color: #1A1A1A;
}

.hero-feature-icon {
    color: #00A86B;
}

.hero-buttons {
    display: inline;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.hero-btn-primary {
    background: #4A90E2;
    color: white;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
    background: #3a7bc8;
}

.hero-btn-secondary {
    background: transparent;
    color: #4A90E2;
    border: 2px solid #4A90E2;
}

.hero-btn-secondary:hover {
    background: rgba(74, 144, 226, 0.1);
}

/* Doctor Image Section */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
}

/* Decorative Background Shape */
.hero-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #4A90E2 0%, #00A86B 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
}

/* Doctor Image */
.hero-doctor-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* Floating Medical Icons */
.hero-icon {
    position: absolute;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
    z-index: 3;
}

.hero-icon-1 {
    width: 60px;
    height: 60px;
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.hero-icon-2 {
    width: 50px;
    height: 50px;
    bottom: 20%;
    left: 0%;
    animation-delay: 0.5s;
}

.hero-icon-3 {
    width: 70px;
    height: 70px;
    top: 45%;
    right: -5%;
    animation-delay: 1s;
    background: linear-gradient(135deg, #FF6B9D, #FF8FA3);
    color: white;
}

.hero-icon-4 {
    width: 45px;
    height: 45px;
    top: 25%;
    left: 5%;
    animation-delay: 1.5s;
}

/* Decorative Dots */
.hero-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, #4A90E2 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.3;
}

.hero-dots-1 {
    top: 15%;
    right: 15%;
}

.hero-dots-2 {
    bottom: 15%;
    left: 10%;
}

/* Decorative Plus Signs */
.hero-plus {
    position: absolute;
    color: #00A86B;
    font-size: 2rem;
    font-weight: 300;
    opacity: 0.2;
    z-index: 1;
}

.hero-plus-1 { top: 20%; right: 25%; }
.hero-plus-2 { bottom: 30%; right: 10%; }
.hero-plus-3 { top: 60%; left: 15%; font-size: 1.5rem; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}
/* Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        min-height: auto;
    }
    
    .hero-content {
        text-align: center;
        order: 2;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-image-container {
        height: 350px;
    }
    
    .hero-shape {
        width: 300px;
        height: 300px;
    }
    
    .hero-doctor-img {
        width: 280px;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-image-container {
        height: 300px;
    }
    
    .hero-shape {
        width: 250px;
        height: 250px;
    }
    
    .hero-doctor-img {
        width: 240px;
    }
}
/* Stethoscope Decorative Element */
.hero-stethoscope {
    position: absolute;
    bottom: -50px;
    left: -50px;
    font-size: 120px;
    opacity: 0.05;
    transform: rotate(-15deg);
    z-index: 1;
}

        
        /* Floating Animation */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .floating {
            animation: float 3s ease-in-out infinite;
        }
        
        /* Search Section - Enhanced */
        .search-section {
            margin-top: -4rem;
            margin-bottom: 4rem;
            position: relative;
            z-index: 10;
        }
        
        .search-card {
            background: white;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            padding: 2.5rem;
            border: 1px solid rgba(0, 168, 107, 0.1);
            margin-top: 8px;
        }
        
        .search-card h3 {
            color: #073B4C;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        
        /* Stats Section - Modern */
        .stats-section {
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
            padding: 4rem 1rem;
            margin-bottom: 4rem;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .stat-card {
            background: white;
            padding: 2rem 1.5rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            border: 2px solid transparent;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #00A86B, #FFD93D);
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: #00A86B;
            box-shadow: 0 12px 30px rgba(0, 168, 107, 0.2);
        }
        
        .stat-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: inline-block;
        }
        
        .stat-number {
            font-size: 2.75rem;
            font-weight: 800;
            background: linear-gradient(135deg, #00A86B, #008854);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            color: #718096;
            font-weight: 600;
            font-size: 1rem;
        }
        
        /* Featured Doctors - Enhanced */
        .doctors-section {
            padding: 4rem 1rem;
        }
        
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #073B4C;
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            font-size: 1.125rem;
            color: #718096;
            line-height: 1.6;
        }
        
        .doctors-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .doctor-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            border: 2px solid transparent;
            transition: all 0.4s;
        }
        
        .doctor-card:hover {
            transform: translateY(-8px);
            border-color: #00A86B;
            box-shadow: 0 15px 40px rgba(0, 168, 107, 0.2);
        }
        
        .doctor-card-header {
            background: linear-gradient(135deg, #f7fafc, #edf2f7);
            padding: 1.5rem;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .doctor-avatar {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: linear-gradient(135deg, #00A86B, #FFD93D);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.25rem;
            font-weight: bold;
            margin: 0 auto 1rem;
            box-shadow: 0 8px 20px rgba(0, 168, 107, 0.3);
        }
        
        /* Features Section - Creative */
        .features-section {
            background: linear-gradient(135deg, #073B4C 0%, #00A86B 100%);
            color: white;
            padding: 5rem 1rem;
            position: relative;
            overflow: hidden;
        }
        
        .features-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 217, 61, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            position: relative;
            z-index: 2;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s;
        }
        
        .feature-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            display: inline-block;
        }
        
        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .feature-desc {
            opacity: 0.9;
            line-height: 1.7;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #FFD93D 0%, #FF6B6B 100%);
            color: #073B4C;
            padding: 4rem 1rem;
            text-align: center;
        }
        
        .cta-title {
            font-size: 2.25rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        
        .cta-subtitle {
            font-size: 1.125rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        /* Footer - Modern */
        .footer {
            background: #073B4C;
            color: white;
            padding: 3rem 1rem 1.5rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h4 {
            color: #FFD93D;
            margin-bottom: 1rem;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .footer-links a:hover {
            color: #FFD93D;
            padding-left: 5px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Responsive */
        @media (min-width: 768px) {
            .hero h1 {
                font-size: 3.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.5rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .doctors-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .doctors-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }