/* General Styles for Services Page */
body {
    background-color: #e9e9e9;
    color: #333;
}

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

section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Hero Section for Services Page */
.hero-services {
    background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 86, 179, 0.8)), url("../Images/SOS/V1.jpg") no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-services h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-services p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* Detailed Services Section */
.detailed-services {
    background-color: #e9e9e9;
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    background-color: #e9e9e9;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

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

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #0056b3;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.service-icon-large {
    font-size: 2.8rem;
    color: #ffc107;
    margin-right: 15px;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

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

.service-detail-content ul li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-detail-content ul li i {
    color: #28a745; /* Success green */
    margin-right: 10px;
    font-size: 1.2rem;
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../Images/a1.jpg") no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.cta-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
}

.cta-buttons .btn-secondary {
    background-color: #ffc107;
    color: #333;
}

.cta-buttons .btn-secondary:hover {
    background-color: #e6ac00;
    color: #fff;
}

.cta-buttons .btn-light {
    background-color: #e9e9e9;
    color: #0056b3;
}

.cta-buttons .btn-light:hover {
    background-color: #f0f0f0;
    color: #003d7a;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card.reverse {
        flex-direction: column;
    }

    .service-detail-content {
        padding: 30px;
    }

    .service-detail-content h2 {
        font-size: 1.8rem;
        text-align: center;
        justify-content: center;
    }

    .service-icon-large {
        font-size: 2.2rem;
        margin-right: 10px;
    }

    .service-detail-content p {
        font-size: 1rem;
    }

    .service-detail-image {
        min-height: 300px;
    }

    .hero-services h1 {
        font-size: 2.8rem;
    }

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

    .cta-section h2 {
        font-size: 2.2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-services {
        padding: 120px 0 80px;
    }

    .hero-services h1 {
        font-size: 2.2rem;
    }

    .hero-services p {
        font-size: 0.9rem;
    }

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

    .service-icon-large {
        font-size: 2rem;
    }

    .service-detail-content ul li {
        font-size: 0.9rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-buttons .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}


