/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 20px;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--accent-color);
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
}

.why-us-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.why-us-image img {
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: transform 0.6s ease;
}

.why-us-image:hover img {
    transform: scale(1.05);
}

.why-us-content {
    padding-left: 50px;
}

.features-grid {
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 25px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.9;
    margin: 0;
}

.rounded-20 {
    border-radius: 20px;
}

@media (max-width: 991px) {
    .services {
        padding: 60px 0;
    }
    
    .why-us {
        padding: 60px 0;
    }
    
    .why-us-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}