.modalheadercolor {
    background: #102866;
}

.modaltitlecolor {
    color: #ffff;
    font-size: 16px;
    font-weight: 700;
}




/* Modern Astrologer Card Styles */

/* Modern Astrologer Card Styles */

/* CARD */
.astro-card-modern {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    overflow: hidden;
}

/* INNER */
.astro-card-inner {
    display: flex;
    gap: 15px;
    padding: 7px 15px;
    align-items: center;
}

/* IMAGE */
.astro-img-container {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #b38022;
}

.astro-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* STATUS */
.astro-img-wrapper {
    position: relative;
}

.astro-status-badge {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);

    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.specific-Clr-Online {
    background: #28a745;
    color: #fff;
}

.specific-Clr-Offline {
    background: #e41c2c;
    color: #fff;
}

.astro-status-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

/* INFO */
.astro-info-section {
    flex: 1;
    min-width: 0;
}

.astro-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

/* RATING */
.astro-rating-row {
    display: flex;
    gap: 10px;
    margin: 5px 0;
    justify-content: space-between;
}

.rating-value {
    color: #f39c12;
    font-weight: bold;
}

.astro-experience {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* DETAILS */
.astro-details-grid {
    margin-top: 5px;
}

.astro-detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #555;
    min-width: 0;
}

.detail-text {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.detail-icon {
    width: 12px;
    height: 12px;
    position: relative;
    top: 5px;
}

/* FOOTER */
.astro-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding: 5px 15px;
}

.price-label {
    font-size: 12px;
    color: #888;
}

.price-amount {
    font-size: 16px;
    font-weight: bold;
    color: #e53935;
}

/* BUTTON */
.btn-call-modern {
    background: linear-gradient(135deg, #a47515, #eb9b3b);
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

/* ✅ MOBILE FIX (IMPORTANT) */
@media (max-width: 576px) {

    .astro-card-inner {
        flex-direction: row;
        /* SAME as desktop */
        align-items: center;
    }

    .astro-img-container {
        width: 70px;
        height: 70px;
    }

    .astro-name {
        font-size: 16px;
    }

    .astro-footer {
        flex-direction: row;
        /* SAME as desktop */
    }

    .btn-call-modern {
        width: auto;
    }
}








.aa-otp-content {
    border-radius: 18px;
    padding: 30px 28px 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: none;
    position: relative;
}

.aa-otp-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: 300;
    color: #999;
    opacity: 0.6;
    transition: opacity 0.2s;
    z-index: 10;
}

.aa-otp-close:hover {
    opacity: 1;
    color: #333;
}

.aa-otp-header {
    margin-bottom: 25px;
}

.aa-otp-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(106, 17, 203, 0.3);
}

.aa-otp-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.aa-otp-subtitle {
    font-size: 13px;
    color: #777;
    margin-bottom: 0;
}

/* Info Box */
.aa-otp-info-box {
    background: #e8f4fd;
    border-left: 4px solid #2575fc;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #2c5aa0;
    line-height: 1.5;
}

.aa-otp-info-box i {
    margin-top: 2px;
    font-size: 16px;
    flex-shrink: 0;
}

/* Success Box */
.aa-otp-success-box {
    background: #d4edda;
    border-left: 4px solid #28a745;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #155724;
}

.aa-otp-success-box i {
    font-size: 16px;
    flex-shrink: 0;
}

.aa-otp-label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.aa-otp-phone-wrapper {
    display: flex;
    align-items: center;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.aa-otp-phone-wrapper:focus-within {
    border-color: #2575fc;
    box-shadow: 0 0 0 3px rgba(37, 117, 252, 0.1);
}

.aa-otp-country {
    padding: 10px 12px;
    background: #f7f7f7;
    font-weight: 600;
    color: #333;
    border-right: 1px solid #ddd;
}

.aa-otp-phone-input {
    border: none;
    flex: 1;
    padding: 10px 15px;
    font-size: 16px;
    outline: none;
}

.aa-otp-phone-input::placeholder {
    color: #aaa;
    font-size: 14px;
}

/* Buttons */
.aa-otp-btn-primary,
.aa-otp-btn-success {
    border: none;
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.aa-otp-btn-primary {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    box-shadow: 0 4px 15px rgba(37, 117, 252, 0.3);
}

.aa-otp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 117, 252, 0.4);
}

.aa-otp-btn-primary:active {
    transform: translateY(0);
}

.aa-otp-btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.aa-otp-btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.aa-otp-btn-success:active {
    transform: translateY(0);
}

.aa-otp-btn-primary:disabled,
.aa-otp-btn-success:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* OTP Boxes */
.aa-otp-box-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 10px;
}

.aa-otp-box {
    width: 48px;
    height: 52px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    border-radius: 8px;
    border: 1.5px solid #ccc;
    transition: all 0.2s;
    background: #fff;
    color: #333;
}

.aa-otp-box:focus {
    border-color: #2575fc;
    box-shadow: 0 0 0 3px rgba(37, 117, 252, 0.2);
    outline: none;
    transform: scale(1.05);
}

.aa-otp-box.filled {
    border-color: #28a745;
    background: #f0f9f4;
}

/* Resend Section */
.aa-otp-resend {
    font-size: 14px;
    color: #666;
}

.aa-otp-resend-btn {
    border: none;
    background: none;
    color: #2575fc;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.2s;
    padding: 0;
}

.aa-otp-resend-btn:hover {
    color: #1557c0;
    text-decoration: underline;
}

.aa-otp-resend-btn i {
    font-size: 12px;
}

/* Change Number Button */
.aa-otp-change-number {
    background: none;
    border: none;
    color: #6c757d;
    font-size: 13px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    padding: 5px 10px;
    transition: color 0.2s;
}

.aa-otp-change-number:hover {
    color: #2575fc;
}

.aa-otp-change-number i {
    font-size: 12px;
    margin-right: 4px;
}

/* Loading State */
.btn-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Responsive */
@media (max-width: 576px) {
    .aa-otp-content {
        padding: 25px 20px 30px;
    }

    .aa-otp-box {
        width: 42px;
        height: 48px;
        font-size: 20px;
    }

    .aa-otp-box-wrapper {
        gap: 5px;
    }

    .aa-otp-info-box,
    .aa-otp-success-box {
        font-size: 12px;
        padding: 10px 12px;
    }
}