/* Simple Enhanced CSS - Error-Free Version */

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

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

/* Simple Hover Effects */
.hover-lift {
    transition: transform 0.3s ease;
}

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

/* Enhanced Buttons */
.btn-enhanced {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    border-radius: 25px;
    color: white;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
}

/* Enhanced Cards */
.notification-boxes .box {
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.notification-boxes .box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.notification-boxes .box .icon {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    color: white;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    top: -35px;
}

/* Enhanced Bio Boxes */
.bio-box {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.bio-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Enhanced Testimonials */
.single-testimonial-style {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.single-testimonial-style:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Enhanced Counters */
.counters-item {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.counters-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

/* Enhanced Services */
.medical-services li {
    transition: all 0.3s ease;
}

.medical-services li:hover {
    transform: translateY(-5px);
}

.medical-services li .icon {
    transition: all 0.3s ease;
}

.medical-services li:hover .icon {
    transform: scale(1.1);
}

/* Enhanced CTA Box */
.book-appointment-box {
    border-radius: 20px;
    transition: all 0.3s ease;
}

.book-appointment-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Simple Gradient Backgrounds */
.main-slider .slide-overlay {
    background: linear-gradient(45deg, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.featured-doctors::before {
    background: linear-gradient(45deg, rgba(44,62,80,0.8), rgba(52,73,94,0.8));
}

.counters-wrapper {
    background: linear-gradient(45deg, #2c3e50, #34495e);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .animate-on-scroll {
        transform: translateY(20px);
    }
    
    .hover-lift:hover {
        transform: translateY(-3px);
    }
    
    .notification-boxes .box:hover {
        transform: translateY(-3px);
    }
    
    .bio-box:hover {
        transform: translateY(-5px);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading-simple {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-simple .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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