/* =============================================
   Homepage Styles
   ============================================= */

/* -- Zad Class Badge -- */
.zadclass {
    color: #fff;
    background: #266f76;
    display: inline-block;
    border-radius: 87%;
    padding: 5px 5px;
}

/* -- Title Sizing -- */
.handel_main_title {
    font-size: clamp(18px, 3vw, 20px) !important;
}

.handel_sub_title {
    font-size: clamp(16px, 3vw, 18px) !important;
}

.handel_description {
    font-size: clamp(14px, 3vw, 16px) !important;
}

@media (max-width: 768px) {
    .handel_gap {
        display: flex;
        gap: 3px !important;
    }

    .handel_paddinig {
        padding-top: 8px;
        padding-bottom: 8px;
    }
}

/* -- Send Now Button -- */
.btn-send-now {
    background-color: #2b7077;
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 999px;
    text-align: center;
    transition: 0.3s ease;
}

.btn-send-now:hover {
    opacity: 0.9;
    color: white;
}

@media (max-width: 768px) {
    .modal-dialog {
        margin: 0 auto;
        display: flex;
        align-items: center;
        min-height: 100vh;
    }
}

/* =============================================
   Modal Styles
   ============================================= */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

p.fw-bold.fs-3.text-white.text-center.px-3.modal-title {
    font-size: 2rem;
}

.modal-content {
    background-color: #fff;
    border-radius: 1.5rem 1.5rem 1rem 1rem;
    max-width: 600px;
    width: 80%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.rounded-4.shadow-sm.text-center.mx-auto.px-4.py-3 {
    border-radius: 1rem;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #aaa;
}
