/* Services Hero Section */
.services-hero {
    background: url('../images/homepage/i.jpeg') no-repeat center center;
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.services-hero h1 {
    font-size: 52px;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

.services-hero p {
    font-size: 20px;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

/* Services Overview */
.services-overview h2 {
    color: #343a40;
    margin-bottom: 30px;
}

.service-card {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    background-color: #dc3545;
    color: white;
}

.service-card i {
    color: #dc3545;
    font-size: 3rem;
    margin-bottom: 15px;
}

.service-card:hover i {
    color: white;
}

.btn.btn-primary.btn-lg.mt-3 {
    background-color: #dc3545;
    color: white;
    border-color: #dc3545;
}


