/* Services Hero Section */
.services-hero {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.services-hero .section-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.services-hero .section-text {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Main Services Section */
.main-services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: #303f9f;
    margin-bottom: 20px;
}

.service-card h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: "✓";
    color: #303f9f;
    position: absolute;
    left: 0;
}

.learn-more-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #303f9f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #0056b3;
}

/* Detailed Services Sections */
.detailed-services {
    padding: 100px 0;
}

.detailed-services:nth-child(even) {
    background-color: #f8f9fa;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse .service-content {
    direction: ltr;
}

.service-content {
    padding: 20px;
}

.service-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

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

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

.service-list li {
    padding: 10px 0;
    color: #555;
    position: relative;
    padding-left: 30px;
}

.service-list li::before {
    content: "→";
    color: #F28C28;
    position: absolute;
    left: 0;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #303f9f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #F28C28;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #303f9f;
}

.process-step p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail.reverse {
        direction: ltr;
    }

    .service-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .services-hero .section-title {
        font-size: 2.5rem;
    }

    .services-hero .section-text {
        font-size: 1.1rem;
    }

    .service-content h2 {
        font-size: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px;
    }

    .service-content {
        padding: 10px;
    }
} 