/* Services Page Styles */

/* Hero Section */
.services-hero {
    background: linear-gradient(rgba(177, 9, 94, 0.5), rgba(0, 0, 0, 0.6)), url('../images/new.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.services-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Overview */
.services-overview {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #555;
}

/* Service Details */
.service-details {
    padding: 60px 20px;
}

.service-category {
    margin-bottom: 60px;
}

.service-category h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

.service-category h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #b1095e;
}

.service-item {
    display: flex;
    margin-bottom: 50px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #b1095e;
    color: greenyellow;
    padding: 30px;
    font-size: 2rem;
    min-width: 100px;
}

.service-content {
    padding: 30px;
    flex: 1;
}

.service-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: #27ae60;
    margin-right: 10px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(138, 11, 75, 0.8), rgba(0, 0, 0, 0.6)),
                url('/images/coins.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta-section h2 {
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
    }
    
    .service-icon {
        min-width: auto;
        padding: 20px;
    }
    
    .services-hero-content h1 {
        font-size: 2rem;
    }
    
    .services-hero-content p {
        font-size: 1rem;
    }
}