@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&family=Noto+Sans+Arabic:wght@100..900&display=swap');
body {
    padding-top: 16px;
    /* تعويض مساحة الهيدر */
    background-color: #f9f9f9;
    font-family: IBM Plex Sans Arabic, sans-serif;
}

.top-banner {
    color: #fff;
    text-align: center;
    background-color: #2a004e;
    padding: 15px 15px 10px;
    position: relative;
    margin: 0px;
}

.profile-container {
    text-align: center;
    position: absolute;
    bottom: -35px;
    right: 15px;
}

@media (max-width:768px) {
    .profile-container {
        bottom: 200px;
        left: 90%;
        right: auto;
        transform: translate(50%);
    }
}

.profile-img {
    object-fit: contain;
    background-color: #fff;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 5px #0000004d;
    width: 80px;
    height: 80px;
}

.profile-name {
    color: #2a004e;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 700;
}

.details_title {
    color: #5e2e88;
}

.service-box {
    background-color: #fff;
    border-radius: 15px;
    margin-top: 30px;
    padding: 20px;
    box-shadow: 0 0 10px #0000000d;
}

.service-title {
    font-size: 20px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

@media (max-width:576px) {
    .icon-box {
        font-size: 14px;
    }
    .profile-img {
        width: 60px;
        height: 60px;
    }
    .profile-container {
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        text-align: center;
        position: absolute;
    }
}

@media (min-width: 768px) {
    .verified-section {
        justify-content: center !important;
        text-align: center !important;
    }
}

.info-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.info-title {
    color: #2a004e;
    font-size: 14px;
    font-weight: bold;
    text-align: right;
}

.info-subtitle {
    font-size: 14px;
    color: #888;
    font-weight: 500;
    text-align: right;
}

.info-subtitle.green {
    color: #00c8a0;
}

.info-icon {
    background-color: #fff8dc;
    padding: 8px;
    font-size: 20px;
    color: #f5b100;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.card {
    border: 1px solid #eee !important;
    border-radius: 14px;
}

h2 {
    text-align: right;
    color: #1a1a1a;
    font-size: 18px;
    margin-bottom: 20px;
}

.service-card {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #fff;
    text-align: center;
}

.service-description {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.price {
    color: #0aaf3b;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.order-button {
    background-color: #ffc107;
    color: #000;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.order-button:hover {
    background-color: #e0a800;
}

.card-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-button {
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    color: white;
}

.call-button {
    background-color: #007bff;
}

.call-button:hover {
    background-color: #0056b3;
}

.whatsapp-button {
    background-color: #25D366;
}

.whatsapp-button:hover {
    background-color: #1ebc5e;
}

.call-button i,
.whatsapp-button i {
    font-size: 18px;
}

.highlight-title {
    background-color: #e6f0ff;
    color: #0056b3;
    padding: 8px 12px;
    border-radius: 10px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 10px;
}