
a {
    color: black;
    text-decoration: underline;
}

.hero {
    background: linear-gradient(to right, #115eb4, #203a43, #54d1e0);
    color: white;
    text-align: center;
    padding: 50px 0;
}


.client-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    text-align: center;
}

.card {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    text-align: center;
}

/* Hero Banner Section */
.hero-banner {
    background: #f8f9fa;
    padding: 20px 0;
}

    /* Full-width responsive banner */
    .hero-banner img {
        width: 100%;
        height: 350px; /* Ensures optimal banner height */
        object-fit: cover; /* Ensures the image fills the width while maintaining its aspect */
    }

/* Ensuring text remains readable and aligned */
.text-center {
    max-width: 900px;
    margin: auto;
}

.text-container {
    padding: 20px;
    text-align: left;
}

/* Responsive Banner Image */
.hero-banner img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Ensuring text remains readable and aligned */
.text-container h2 {
    font-size: 24px;
    font-weight: bold;
}

.text-container p {
    font-size: 18px;
    color: #333;
}


/* Contact Section */
.container {
    max-width: 1100px;
}

/* Contact Details */
.col-md-5 {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
}

    /*    .col-md-5 h4 {
        color: #007bff;
    }
*/

    .col-md-5 h4 {
        color: black;
        ;
    }

/* Contact Form */
.form-control {
    border-radius: 5px;
}

.btn-primary {
    background: transparent;
    border: 1px solid white;
    color: white;
}

    .btn-primary:hover {
        background: #115eb4;
    }

.btn-primary-white {
    background: transparent;
    border: 1px solid #54d1e0;
    color: black;
    margin-left: 250px;
}

    .btn-primary-white:hover {
        background: #115eb4;
    }


.nav-link {
    color: black;
    font-size: 20px;
}

    .nav-link:hover {
        border: 1px solid black;
        border-radius:4px;
        color:black;
    }


.navbar-nav .nav-link.active {
    color: black;
    text-decoration: underline;
    padding-bottom: 10px;
    font-size: 20px;
}
.list-group-item.active {
     color: black; 
     background-color: white; 
     border-color: silver;
}