/* Home Page Enhancements */

/* Services Section Enhancement */
.services-section {
    padding: 4rem 0;
}

.services-section .section__title {
    text-align: center;
    margin-bottom: 3rem;
    margin-left: 2rem;
    margin-right: 2rem;
    font-size: 2.5rem;
    color: #333;
}

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

.service-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s;
}

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

.service-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.service-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Products Section Enhancement */

.products__container {
    gap: 2rem;
}

.product__card {
    transition: all 0.3s ease;
}

.product__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Hospitals Section Enhancement */

.hospital__card {
    transition: all 0.3s ease;
}

.hospital__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Team Section Enhancement */

.doctors__container {
    gap: 2rem;
}

.doctor__card {
    transition: all 0.3s ease;
    border-radius: 20px;
    overflow: hidden;
}

.doctor__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Experience Section Enhancement */

/* About Section Enhancement */

/* Places Section Enhancement */

.place__card {
    transition: all 0.3s ease;
}

.place__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Subscribe Section Enhancement */

/* Section Titles Horizontal Margin */
.section__title {
    margin-left: 2rem;
    margin-right: 2rem;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .section__title {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .service-item h3 {
        font-size: 1.1rem;
    }
    
    .service-item p {
        font-size: 0.85rem;
    }
}
