body{
    padding: 0;
    margin: 0;
    font-family: "Jost", sans-serif;
    background: var(--body-color);
}
  
.service-container {
    width: 80%;
    display: flex;
    animation: fadeInUp 0.8s ease-in-out;
    margin: 50px auto;
}

.banner {
    position: relative;
    width: 100%;
    height: 300px; /* Adjust the height as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff; /* Make text white for better contrast */
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Light black overlay */
    z-index: 1;
}

.banner img{
    width: 100%;
    height: 100%;
}

.banner-text {
    position: absolute;
    z-index: 2;
    font-size: 2rem; /* Adjust font size as needed */
    text-align: center;
}
@keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
}
.service-content{
    padding-bottom: 100px;
}
.service-request-form{
    display: grid;
    gap: 15px;
    max-width: 600px;
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.service-request-form h2{
    text-align: center;
    margin-bottom: 30px;
}
.service-request-form .grid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.form-group{
    display: grid;
    width: 100%;
}
.form-group label{
    color: #000080;
    font-weight: 600;
}
.service-request-form input,
.service-request-form textarea{
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #000080;
    border-radius: 6px;
    outline: none;
    resize: none;
}
.service-request-form button {
    padding: 10px 20px;
    background: #000080;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Jost", sans-serif;
    font-size: 1rem;
    transition: background 0.3s;
}
.service-request-form button:hover {
    background: #424289;
}
    
@media (max-width: 500px) {
    .service-request-form .grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .banner-text{
        font-size: 1.5rem;
    }
}