
    .services-area-two {
    background-color: #f9f9f9;
    padding: 100px 0 70px;
    text-align: center;
}

h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 300px; /* Fixed height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 48px;
    color: #5cb85c;
    margin-bottom: 20px;
}

h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .service-card {
        margin-bottom: 30px;
        height: auto; /* Adjust to auto for smaller screens if needed */
    }
}

.why-choose-us {
    background-color: #f9f9f9;
    padding: 100px 0 70px;
    text-align: center;
}

h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.choose-us-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 300px; /* Fixed height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.choose-us-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 48px;
    color: #5cb85c;
    margin-bottom: 20px;
}

h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.choose-us-card p {
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .choose-us-card {
        margin-bottom: 30px;
        height: auto; /* Adjust to auto for smaller screens if needed */
    }
}


.custom-badge {
    display: inline-block;
    padding: 2px 5px;
    margin: 2px;
    border-radius: 5px;
    background-color: #007bff; /* Adjust color as needed */
    color: white;
    font-size: 14px;
    text-align: center;
}

.custom-badge:hover {
    background-color: #0056b3; /* Darker shade for hover effect */
    cursor: pointer;
}

.search-section {
    background-image: url('/assets/images/banner.webp'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 70px 0; 
    color: #fff;
}

.search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(74, 144, 226, 0.8), rgba(92, 184, 92, 0.8)); /* Gradient over image */
    z-index: 1;
}

.search-form {
    position: relative;
    z-index: 2; /* Puts the form above the gradient */
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15); /* Transparent white background */
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    border: none;
    border-radius: 5px;
    padding: 15px;
}

.text-danger {
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .search-section {
        padding-top: 85px;
        padding-bottom: 15px;
    }
    .search-form {
        background: rgba(255, 255, 255, 0.15); /* Slight transparency even on smaller screens */
    }
}