/* ---------------------------------------
   Services Page Banner (Premium Style)
----------------------------------------*/
#services-banner {
    width: 100%;
    height: 45vh;
    min-height: 280px;
    background: url('../images/our-services-banner.jpg') center/cover no-repeat;
    position: relative;
    border-bottom: 4px solid #0c2b47;
    display: flex;
    align-items: center;
    justify-content: center;
}

#services-banner .banner-overlay {
    width: 100%;
    height: 100%;
    background: rgba(12, 43, 71, 0.55); /* Deep professional blue overlay */
    display: flex;
    align-items: center;
    justify-content: center;
}

#services-banner .banner-content {
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    padding: 0 20px;
    animation: fadeInUp 0.9s ease;
}

#services-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

#services-banner p {
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    #services-banner h1 {
        font-size: 2.3rem;
    }
    #services-banner p {
        font-size: 1rem;
    }
    #services-banner {
        height: 40vh;
    }
}


/* -------------------------------
   Premium Services Section Style
--------------------------------*/
#services-section {
    padding: 70px 5%;
    background: #f5f7fa;
    font-family: "Poppins", sans-serif;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 600;
    color: #0c2b47;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

/* Main container grid */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* Service Card */
.service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 45px rgba(0,0,0,0.12);
}

/* Image block */
.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.06);
}

/* Content */
.service-content {
    padding: 30px;
}

.service-content h2 {
    font-size: 1.7rem;
    color: #0c2b47;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-content p {
    color: #4e5561;
    line-height: 1.7;
    font-size: 0.98rem;
    margin-bottom: 20px;
}

/* Learn More link */
.service-link {
    color: #0077b6;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: 0.3s;
}

.service-link:hover {
    color: #023e8a;
}


/* Responsive Tweaks */
@media (max-width: 600px) {
    .section-title {
        font-size: 2.2rem;
    }
    .service-content h2 {
        font-size: 1.4rem;
    }
}
