.captcha-container {
    text-align: left;
}

.bannersplit ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    height: 100%;
}

.bannersplit li {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.bannersplit img {
    max-height: 250px;
    margin: 20px 0;
}

.bannercontactus {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    padding: 10px;
    margin: 0 auto;
}

.bannercontactus ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.bannercontactus li {
    flex: 1;
    width: 300px;
    min-width: 300px;
}

.bannercontactus td {
    text-align: center;
    vertical-align: middle;
}

.bannercontactus table {
    width: 100%;
    border-collapse: collapse;
}

.bannertestimonial {
    padding: 0 20px 0 20px;
}

.card {
    background: linear-gradient(to bottom right, #44ECC6, #6160B1, #E0236F);
    border-radius: 75px 8px 75px 8px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3), 0 8px 10px rgba(0, 0, 0, 0.15);
}

.cardservices {
    border: 1.5px solid #000;
    box-shadow: 0px 12px 18px -6px rgba(0, 0, 0, 0.3);
}

.card img {
    height: 80px;
    margin-bottom: 10px;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card ul li {
    margin: 5px 0;
    color: white;
}

.cardlink {
    color: inherit;
    text-decoration: none;
}

.cardwrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 80%;
    padding: 0 20px;
}

#contactusbutton {
    background: linear-gradient(to right, #44ECC6, #6160B1, #E0236F);
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border: 1.5px solid black;
    border-radius: 30px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 2s ease;
}

#contactusbutton:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #E0236F, #6160B1, #44ECC6);
}

#snackbar {
    opacity: 0;
    /* Initially invisible */
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border: 1.5px solid black;
    border-radius: 5px;
    padding: 16px;
    position: fixed;
    bottom: 0px;
    left: 25%;
    right: 25%;
    z-index: 1;
    transition: opacity 0.5s ease-in-out;
    /* Smooth transition for opacity */
}

/* When the snackbar is shown */
#snackbar.show {
    opacity: 1;
    /* Make it visible */
}