.services-section {
    background: linear-gradient(to right, #87CEEB, #ffffff); /* Sky blue gradient */
    padding: 80px 0;
}

.sub-head {
    font-size: 20px;
    font-weight: bold;
    color: #1E90FF; /* Sky blue color */
    margin-bottom: 10px;
}

.main-head {
    font-size: 36px;
    font-weight: bold;
    color: #4682B4; /* Darker blue shade */
    margin-bottom: 20px;
}

.text-muted {
    color: #555; /* Muted text color */
    font-size: 18px;
    margin-bottom: 40px;
}

.service-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 40px; /* Adjust icon size */
    color: #1E90FF; /* Sky blue color for icons */
    margin-bottom: 20px;
}

h4 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff; /* Darker blue shade for headings */
}

p {
    color: #777; /* Text color */
    line-height: 1.6;
}

@media (max-width: 768px) {
    .service-card {
        padding: 30px;
    }

    .main-head {
        font-size: 28px;
    }
}

/* Banner */
.mainBanner2 {
    height: 600px;
    position: relative;
    overflow: hidden;
    background-color: #000; /* Fallback in case the image doesn't load */
}

/* Blurred background image using a pseudo-element */
.mainBanner2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../assets/images/banner/aboutus.jpg);
    background-size: cover;
    background-position: center;
    filter: blur(1px); /* Blur effect applied to the background image */
    opacity: 0.8; /* Adjusts the visibility of the image */
    z-index: 0; /* Places the background behind the content */
    animation: backgroundAnimation 15s ease infinite;
}

/* Overlay for better readability */
.mainBanner2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay */
    z-index: 1; /* Ensures the overlay sits above the background but below the content */
}

.content1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2; /* Keeps the content above the background and overlay */
}

.content1 p {
    color: #fdf9f9;
}

h1 {
    font-size: 3rem;
}

p {
    font-size: 1.25rem;
}

.theme-btn1 {
    background: #ffffff;
    border: 2px solid #1E90FF;
    color: #1E90FF;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
}

@keyframes backgroundAnimation {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}