body {
    font-family: "Rancho", sans-serif;
    padding-top: 44px;
    background-color: #ffdee985;
    background-image: linear-gradient(to bottom, #f8f8f8, #80deff96 50%, #f8f8f8);
    font-size: 1.2rem;
}

.headingDiv {
    padding-block: 50px;
    text-align: center;
    margin-inline: -15px;
    background: radial-gradient(circle at 48.7% 44.3%, rgb(30, 144, 231) 0%, rgb(56, 113, 209) 22.9%, rgb(38, 76, 140) 76.7%, rgb(31, 63, 116) 100.2%);
}

/* bootstrap */
.container-fluid {
    margin-bottom: 40px;
}

.navbar-collapse .nav-item {
    margin-left: 20px;
}

.navbar-brand {
    margin-inline: 12px;
}

header {
    margin-top: 20px;
}

.modal-body {
    background-color: #f8f8f8;
    color: #333;

    .conditions-container {
        max-width: 800px;
        margin: 50px auto;
        padding: 20px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    h2 {
        margin-bottom: 20px;
        font-size: 2em;
        text-align: center;
    }

    ul {
        padding-left: 20px;
    }

    li {
        margin-bottom: 10px;
    }

    .section-title {
        font-weight: bold;
        margin-top: 20px;
    }
}



.footer a {
    border-radius: 60px;
}

.footer {
    /* background-color: #2a3439; */
    background: linear-gradient(to right, #36454F, #000000, #36454F, #000000, #36454F, #000000, #36454F);
    color: white;
    padding: 20px;
    text-align: center;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-icon {
    margin-top: 15px;
    color: #FFF;
}

.whatsapp-float:focus,
.whatsapp-float:active {
    color: #FFF;
    outline: none;
    box-shadow: none;
}

.title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #007bff;
    animation: fadeInDown 1.2s ease-in-out;
}

.subtitle {
    font-size: 1.75rem;
    font-weight: bold;
    color: #007bff;
    animation: fadeInLeft 1.2s ease-in-out;
}

.lead {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    animation: fadeInRight 1.2s ease-in-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-us img {
    animation: fadeInUp 1.2s ease-in-out;
    width: 400px;
    border-radius: 50%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Call Icon */
.call-icon {
    margin-top: 15px;
    color: #FFF;
}

.call-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 110px;
    /* Adjusted to position above the WhatsApp icon */
    right: 40px;
    background-color: #34b7f1;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 1000;
    text-decoration: none;
}

.call-float:focus,
.call-float:active {
    color: #FFF;
    outline: none;
    box-shadow: none;
}