/* Services Page Styles */

.services-page {
    background-color: #f8f9fa;
}

/* Override global services-grid from Style.css */
.services-page .services-grid {
    display: flex;
    grid-template-columns: unset;
    max-width: unset;
    margin: unset;
}

/* Hero Section */
.services-hero {
    background: linear-gradient(135deg, rgba(107, 75, 166, 0.7) 0%, rgba(139, 95, 191, 0.6) 100%), url('../Images/Services/HeroBg.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../Images/Index/HeroBg.png') center/cover;
    opacity: 0;
}

.services-hero .container {
    position: relative;
    z-index: 1;
}

.services-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 20px;
    color: #c8ff00;
    font-weight: 500;
}

/* Services Grid */
.services-grid {
    background: url('../Images/Services/ServicesBg.png') center/cover no-repeat;
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-grid .container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}
.service-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 1000px;
}

.service-card.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 32px;
    color: #2d1b4e;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #333;
    font-size: 15px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6b4ba6;
    font-weight: bold;
    font-size: 18px;
}

.service-image {
    flex: 1;
    max-width: 450px;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

.btn-primary {
    background-color: #6b4ba6;
    color: white;
    padding: 12px 35px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #8b5fbf;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 75, 166, 0.3);
}

/* Why Choose Us Section */
.why-choose-us {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 40px;
    color: #2d1b4e;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    background: linear-gradient(135deg, #e8d5ff 0%, #d4b5f0 100%);
    padding: 40px 25px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.feature-box h3 {
    font-size: 18px;
    color: #2d1b4e;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card {
        flex-direction: column;
    }
    
    .service-card.reverse {
        flex-direction: column;
    }
    
    .service-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .services-hero {
        height: 250px;
    }
    
    .services-hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .service-content h2 {
        font-size: 26px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-choose-us h2 {
        font-size: 32px;
    }
}
