 
body {
    background-color: #f8f9fa;
}

.trust-section {
    text-align: center;
    padding: 50px 20px;
}

.trust-section h2 {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 30px;
}

.trust-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.trust-icon {
    background-color: #eaf2ff;
    padding: 15px;
    border-radius: 10px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
}

.trust-icon i {
    font-size: 1.8rem;
    color: #3498db;
}

.trust-text strong {
    font-size: 1rem;
    color: #333;
}

.form-container {
    background: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.hero-text {
    text-align: center;
    font-weight: bold;
}

.flags img {
    width: 50px;
    margin: 5px;
}

.contact {
    font-size: 18px;
    font-weight: bold;
    text-align: right;
}

.header {
    background-color: #004d66;
    padding: 10px 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header img {
    height: 50px;
}

.home {
    background-color: #007bff;
    height: fit-content;
    color: white;
}

@media (max-width: 768px) {
    .home {
        background-color: #007bffb0;
        height: fit-content;
    }
}

.table-container {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.table th {
    background-color: #008080;
    color: white;
    text-align: center;
}

.table td {
    text-align: center;
    font-size: 18px;
}

.check {
    color: green;
    font-size: 20px;
}

.cross {
    color: red;
    font-size: 20px;
}

.counsellor-btn {
    background-color: #F4A460;
    color: white;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 30px;
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}

.carousel img {
    width: 70px;
    max-height: 70px;
    border-radius: 50%;
    margin-right: 1rem;
    overflow: hidden;
}

.carousel-inner {
    padding: 1em;
}

@media screen and (min-width: 576px) {
    .carousel-inner {
        display: flex;
        width: 90%;
        margin-inline: auto;
        padding: 1em 0;
        overflow: hidden;
    }

    .carousel-item {
        display: block;
        margin-right: 0;
        flex: 0 0 calc(100% / 2);
    }
}

@media screen and (min-width: 768px) {
    .carousel-item {
        display: block;
        margin-right: 0;
        flex: 0 0 calc(100% / 3);
    }
}

.carousel .card {
    margin: 0 0.5em;
    border: 0;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
    height: 3rem;
    background-color: grey;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}
 

.footer-img {
    justify-content: space-between;
    display: flex;
    position: fixed;
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 999;
}