/* About Medical Equipment Section */
.about-medical-equipment {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-medical-equipment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    z-index: 1;
}

.about-medical-equipment .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image Section */
.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: translateY(-10px);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

/* Text Content */
.about-text {
    padding: 20px 0;
}

.about-heading {
    font-size: 2.7rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.about-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    border-radius: 2px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.about-sub-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #718096;
    margin-bottom: 40px;
    font-style: italic;
}

/* Features Section */
.about-features {
    margin-top: 40px;
}

.features-heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 30px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: stretch;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #4CAF50;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
    line-height: 1.3;
}

.feature-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #718096;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-medical-equipment {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-heading {
        font-size: 2rem;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-medical-equipment {
        padding: 40px 0;
    }
    
    .about-medical-equipment .container {
        padding: 0 15px;
    }
    
    .about-heading {
        font-size: 1.8rem;
    }
    
    .about-description,
    .about-sub-description {
        font-size: 1rem;
    }
    
    .features-heading {
        font-size: 1.5rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-medical-equipment .about-heading,
.about-medical-equipment .about-description,
.about-medical-equipment .about-sub-description,
.about-medical-equipment .feature-item {
    animation: fadeInUp 0.6s ease forwards;
}

.about-medical-equipment .about-description {
    animation-delay: 0.1s;
}

.about-medical-equipment .about-sub-description {
    animation-delay: 0.2s;
}

.about-medical-equipment .feature-item:nth-child(1) {
    animation-delay: 0.3s;
}

.about-medical-equipment .feature-item:nth-child(2) {
    animation-delay: 0.4s;
}

.about-medical-equipment .feature-item:nth-child(3) {
    animation-delay: 0.5s;
}

.about-medical-equipment .feature-item:nth-child(4) {
    animation-delay: 0.6s;
}
