/* Urology & Andrology Page Styles */

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f8f9fa;
}

.service-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    color: rgb(0, 0, 0);
    position: relative;
    overflow: hidden;
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url('../img/feature.jpg') no-repeat center center; */
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.service-section .container {
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(105, 105, 105, 0.103);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.2);
}

.service-card h3 {
    color: #000000;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #000000;
    animation: slideInLeft 0.5s ease-out 0.3s both;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    opacity: 0;
    animation: fadeInLeft 0.6s ease-out forwards;
}

.service-card ul li:nth-child(1) { animation-delay: 0.1s; }
.service-card ul li:nth-child(2) { animation-delay: 0.2s; }
.service-card ul li:nth-child(3) { animation-delay: 0.3s; }
.service-card ul li:nth-child(4) { animation-delay: 0.4s; }
.service-card ul li:nth-child(5) { animation-delay: 0.5s; }

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        width: 0;
    }
    to {
        width: 50px;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.general-surgery-section {
    padding: 60px 0;
    background: #ffffff;
}

.general-surgery-section .service-card {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #e9ecef;
}

.general-surgery-section .service-card h3::after {
    background: #6a1480;
}

.general-surgery-section .service-card ul li::before {
    color: #6a1480;
}

/* Responsive */
@media (max-width: 768px) {
    .service-card {
        padding: 20px;
    }
}
