/* ============================
   MK Visa Donation Styles
   ============================ */

body, .mk-donation-container {
    font-family: 'IBM Plex Sans Arabic', sans-serif !important;
    box-sizing: border-box;
}

/* --- Main Wrapper --- */
.mk-donation-container {
    padding: 0;
    background-color: #fff;
}

.mk-donation-wrapper {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    min-height: 100vh;
    direction: rtl;
}

/* --- Right (Green) Banner --- */
.mk-donation-banner {
    width: 45%;
    color: #fff;
    display: flex;
    align-items: left;
    justify-content: left;
    padding: 80px 10px;
}

.mk-banner-text {
    text-align: right;
}

.mk-banner-text p {
    color: #181818;
    font-size: 15px;
    line-height: 1.9;
}
.mk-banner-subtitle {
    font-family: 'IBM Plex Sans Arabic', sans-serif !important;
    font-weight: 600;
    font-size: 18px;
    color: #705f42; /* warm gold/brown tone */
    line-height: 1.9;
    text-align: right;
    direction: rtl;
}


/* --- Left Form --- */
.mk-donation-form {
    width: 55%;
    background-color: #fff;
    padding: 60px 50px;
}

/* --- Type Buttons --- */
.mk-donation-type {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.mk-donation-type .btn {
    background-color: #e6f5f0;
    color: #0a5c50;
    border: none;
    border-radius: 6px;
    padding: 10px 25px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
}

.mk-donation-type .btn:hover {
    background-color: #d4eee4;
}

.mk-donation-type .btn.active {
    background-color: #0a5c50;
    color: #fff;
}

/* --- Section Title --- */
.mk-section-title {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #705f42;
    font-weight: 500;
    font-size: 17px;
    text-align: right;
}

/* --- Days Grid --- */
.mk-donation-days {
    display: grid !important;
    grid-template-columns: repeat(7, minmax(40px, 1fr));
    gap: 12px;
    margin: 20px 0;
    justify-items: left;   /* was right */
    align-items: center;   /* was right */
    width: 100%;
    direction: ltr;        /* force grid to start from left */
}

.mk-day-box {
    width: 100%;
    max-width: 55px;
    height: 45px;
    background-color: #fff;
    border: 1px solid #c5dfd6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a5c50;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.mk-day-box:hover {
    background-color: #e8f4ef;
}

.mk-day-box.active {
    background-color: #0a5c50;
    color: #fff;
    border-color: #0a5c50;
}

.mk-day-box span {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-weight: 500;
    font-size: 15px;
}

/* --- Hidden by default (for يومي/شهري logic) --- */
.mk-donation-days {
    display: none;
}

/* --- Amount Section --- */
.mk-donation-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 15px;
    margin-left: 0;
    text-align: center;
}
.mk_donation_amount_daily {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 15px;
    margin-left: 0;
    text-align: center;
}

.mk-donation-amount .btn {
    flex: 1 1 0; /* each button shares width equally */
    background-color: #e6f5f0;
    color: #0a5c50;
    border: none;
    border-radius: 6px;
    padding: 10px 5px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.mk_donation_amount_daily .btn {
    flex: 1 1 0; /* each button shares width equally */
    background-color: #e6f5f0;
    color: #0a5c50;
    border: none;
    border-radius: 6px;
    padding: 10px 5px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.mk-donation-amount .btn:hover {
    background-color: #d4eee4;
}

.mk-donation-amount .btn.active {
    background-color: #217D64;
    color: #fff;
}
.mk_donation_amount_daily .btn:hover {
    background-color: #d4eee4;
}

.mk_donation_amount_daily .btn.active {
    background-color: #217D64;
    color: #fff;
}

/* ✅ Adjust for small screens */
@media (max-width: 576px) {
    .mk-donation-amount {
        gap: 6px;
    }
    .mk_donation_amount_daily {
        gap: 6px;
    }

    .mk-donation-amount .btn {
        font-size: 13px;
    }
    .mk_donation_amount_daily .btn {
        font-size: 13px;
    }
}


/* --- Other Amount --- */
.mk-other-amount {
    margin-top: 10px;
}

.mk-other-amount input {
    width: 100%;
    background-color: #f6f8f7;
    border: none;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    color: #705f42;
    font-size: 15px;
    outline: none;
}

/* --- Quantity Section --- */
.mk-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 10px 0 25px;
}

.mk-qty-btn {
    background-color: #e6f5f0;
    color: #0a5c50;
    border: none;
    border-radius: 6px;
    width: 40px;
    height: 35px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.mk-qty-btn:hover {
    background-color: #d4eee4;
}

.mk-qty-input {
    width: 60px;
    height: 35px;
    border: none;
    text-align: center;
    font-weight: 500;
    color: #0a5c50;
    background-color: #f6f8f7;
    border-radius: 6px;
}

/* --- Donation Method Buttons --- */
.mk-donation-method {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.mk-btn {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.mk-btn.visa {
    background-color: #147e68;
    color: #fff;
}

.mk-btn.visa:hover {
    background-color: #09775f;
}

.mk-btn.donate {
    background-color: #147e68;
    color: #fff;
}

.mk-btn.donate:hover {
    background-color: #0e6d59;
}

/* --- Responsive --- */
/* ===========================
   Base layout for desktop
=========================== */
.mk-donation-days {
    display: grid !important;
    grid-template-columns: repeat(7, minmax(40px, 1fr));
    gap: 12px;
    margin: 20px 0;
    justify-items: left;
    align-items: center;
    width: 100%;
    direction: ltr;
}

/* ===========================
   Tablets (≤ 992px)
=========================== */
@media (max-width: 992px) {
    .mk-donation-days {
        grid-template-columns: repeat(7, minmax(50px, 1fr));
        gap: 10px;
        justify-items: left;
        align-items: center;
        direction: ltr;
        margin: 16px 0;
    }
}

/* ===========================
   Small tablets / large phones (≤ 768px)
=========================== */
@media (max-width: 768px) {
    .mk-donation-days {
        grid-template-columns: repeat(5, minmax(55px, 1fr));
        gap: 8px;
        justify-items: left;
        align-items: center;
    }
}

/* ===========================
   Small phones (≤ 576px)
=========================== */
@media (max-width: 576px) {
    .mk-donation-days {
        grid-template-columns: repeat(4, minmax(60px, 1fr));
        gap: 6px;
        justify-items: center;
        align-items: center;
        direction: ltr;
    }

    .mk-donation-days button,
    .mk-donation-days div {
        font-size: 13px;
        padding: 8px 4px;
    }
}

/* === Modal Overlay === */
.mk-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* === Modal Box === */
.mk-modal-box {
    background: #fff;
    border-radius: 10px;
    padding: 25px 30px;
    width: 320px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
}

.mk-modal-header h2 {
    font-size: 20px;
    color: #0a5c50;
    margin-bottom: 5px;
}

.mk-modal-header p {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.mk-modal-body {
    margin-bottom: 20px;
    text-align: right;
}

.mk-modal-body label {
    display: block;
    font-weight: 500;
    color: #705f42;
    margin-bottom: 5px;
}

.mk-modal-body input {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    font-size: 15px;
    text-align: center;
}

.mk-modal-footer .mk-btn {
    width: 100%;
    border: none;
    border-radius: 6px;
    padding: 10px;
    background-color: #0a5c50;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.mk-modal-footer .mk-btn:hover {
    background-color: #09775f;
}

/* --- Modal Overlay --- */
.mk-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none; /* hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Ensure it's always centered when visible */
.mk-modal-overlay.show {
    display: flex !important;
}

/* --- Modal Box --- */
.mk-modal-box {
    background: #fff;
    border-radius: 10px;
    padding: 25px 30px;
    width: 320px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.25s ease-in-out;
}

/* Center animation effect */
.mk-modal-overlay.show .mk-modal-box {
    transform: scale(1);
    opacity: 1;
}
/* === Modal Close Button === */
.mk-close-btn {
    position: absolute;
    top: 12px;
    left: 15px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 9999; /* ensure above other elements */
    font-size: 18px;
    color: #333;
    transition: all 0.2s ease-in-out;
}

.mk-close-btn i {
    color: #333;
    font-size: 20px;
}

.mk-close-btn:hover i {
    color: #09775f;
    transform: scale(1.15);
}


/* === Error Message === */
.mk-error-msg {
    display: block;
    color: #d93025;
    font-size: 13px;
    margin-top: 6px;
    text-align: right;
    font-weight: 500;
}
.otp-digit {
    width: 50px;
    height: 50px;
    border: 1px solid #c5dfd6;
    border-radius: 8px;
    font-size: 24px;
    text-align: center;
    color: #0a5c50;
    font-weight: 500;
}

.otp-digit:focus {
    outline: none;
    border-color: #0a5c50;
    box-shadow: 0 0 5px rgba(10,92,80,0.3);
}
#otpCountdownWrapper {
    margin-top: 12px;
    text-align: center;
    color: #705f42;
}

#otpCountdownWrapper b {
    color: #0a5c50;
}

#resendOtpLink {
    cursor: pointer;
    text-decoration: underline;
}

#resendOtpLink:hover {
    color: #09775f;
}
/* =============================
   Moyasar Payment Modal Design
   ============================= */

#mkMoyasarModal .mk-modal-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    padding: 25px 30px;
    width: 360px;
    text-align: right;
    color: #333;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

#mkMoyasarModal .mk-modal-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 15px;
}

#mkMoyasarModal .mk-modal-body label {
    font-size: 14px;
    font-weight: 500;
    color: #444;
    margin-bottom: 5px;
    display: block;
}

#mkMoyasarModal .mk-modal-body input {
    width: 100%;
    border: 1px solid #d5dad7;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 12px;
    background-color: #fafafa;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: all 0.2s ease-in-out;
}

#mkMoyasarModal .mk-modal-body input:focus {
    border-color: #0a5c50;
    background-color: #fff;
}

#mkMoyasarModal .mk-modal-footer {
    text-align: center;
    margin-top: 15px;
}

#mkMoyasarModal #mkPayNowBtn {
    width: 100%;
    padding: 12px;
    background-color: #0a5c50;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

#mkMoyasarModal #mkPayNowBtn:hover {
    background-color: #09775f;
}

#mkMoyasarModal small {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    text-align: center;
}

#mkMoyasarModal small b {
    color: #0a5c50;
    font-weight: 500;
}

/* ✅ Payment icons row (Visa / Mastercard) */
.mk-card-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    margin-top: -5px;
    margin-bottom: 10px;
}

.mk-card-icons img {
    height: 12px;  /* 👈 smaller size */
    object-fit: contain;
    opacity: 0.9;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.mk-card-icons img:hover {
    transform: scale(1.05);
    opacity: 1;
}
/* =============================
   🔶 Moyasar Modal - Polished Look
   ============================= */

#mkMoyasarModal .mk-modal-box {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    padding: 28px 30px 20px;
    width: 360px;
    max-width: 90%;
    text-align: right;
}

#mkMoyasarModal .mk-modal-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 20px;
}

#mkMoyasarModal .mk-modal-body {
    margin-bottom: 10px;
}

#mkMoyasarModal .mk-modal-body label {
    font-size: 14px;
    font-weight: 500;
    color: #444;
    margin-bottom: 6px;
    display: block;
}

#mkMoyasarModal .mk-modal-body input {
    width: 100%;
    border: 1px solid #d5dad7;
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 14px;
    background-color: #fafafa;
    font-size: 14px;
    color: #333;
    transition: all 0.2s ease-in-out;
}

#mkMoyasarModal .mk-modal-body input:focus {
    border-color: #0a5c50;
    background-color: #fff;
}

#mkMoyasarModal #mkPayNowBtn {
    width: 100%;
    padding: 12px;
    background-color: #0a5c50;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

#mkMoyasarModal #mkPayNowBtn:hover {
    background-color: #0c7a64;
}

#mkMoyasarModal small {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: #777;
    text-align: center;
    line-height: 1.6;
}

#mkMoyasarModal small b {
    color: #0a5c50;
}

/* ✅ Mobile fix */
@media (max-width: 480px) {
    #mkMoyasarModal .mk-modal-box {
        width: 92%;
        padding: 20px 18px;
    }
    #mkMoyasarModal .mk-modal-body input {
        font-size: 13px;
    }
}
#mkPayNowBtn { word-spacing: .15em; }

/* Put in your CSS file */
.mk-days-error{
  border: 2px solid #d93025 !important;
  border-radius: 8px;
  padding: 10px;               /* keeps content from touching border */
  animation: mkShake .2s 2;    /* subtle attention */
}
@keyframes mkShake{
  0%{transform:translateX(0)}
  25%{transform:translateX(-2px)}
  50%{transform:translateX(2px)}
  75%{transform:translateX(-2px)}
  100%{transform:translateX(0)}
}
/* ==== Font override (non-destructive) ==== */
html, body {
  font-family: 'IBM Plex Sans Arabic', sans-serif !important;
}

.mk-donation-container,
.mk-donation-form,
.mk-donation-banner,
.mk-banner-subtitle,
.mk-banner-text p,
.mk-donation-title,
.mk-donation-type .btn,
.mk-section-title,
.mk-day-box span,
.mk-donation-amount .btn,
.mk_donation_amount_daily .btn,
.mk-other-amount input,
.mk-qty-btn, .mk-qty-input,
.mk-btn, .mk-modal-box, .mk-modal-body input,
#mkMoyasarModal .mk-modal-box {
  font-family: inherit !important;
}

/* Make banner appear first on mobile */
@media (max-width: 992px) {
    .mk-donation-wrapper {
        display: flex;
        flex-direction: column-reverse; /* 🟢 Reverse order for desktop default if needed */
    }
}

@media (max-width: 768px) {
    .mk-donation-wrapper {
        flex-direction: column; /* 🟢 Normal for small screens — banner on top */
    }

    .mk-donation-banner {
        order: -1; /* ✅ Make banner come first */
        width: 100%;
        padding: 30px 20px;
    }

    .mk-donation-form {
        width: 100%;
        padding: 40px 25px;
    }

    .mk-banner-text img {
        width: 100% !important;
        height: auto !important;
    }
}
.mk-modal-box {
  max-width: 400px;
  width: 90%;
  margin: auto;
  border-radius: 12px;
}
/* Default inputs in modal: RTL (Arabic) */
#mkMoyasarModal .mk-modal-body input {
  direction: rtl;
  text-align: center;
}

/* Force LTR for card-number/expiry/CVV for readability */
#mkCardNumber, #mkCardExp, #mkCardCvv {
  direction: ltr !important;
  text-align: right !important;
  letter-spacing: .03em;
}

/* === Fix modal input overflow on mobile === */
#mkMoyasarModal .mk-modal-box {
  width: 95%;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

#mkMoyasarModal .mk-modal-body {
  max-height: 70vh;
  overflow-y: auto;
  padding-bottom: 15px;
  box-sizing: border-box;
}

/* Ensure inputs fit well */
#mkMoyasarModal .mk-modal-body input {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 12px;
  font-size: 14px;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
}

/* Prevent long numbers from pushing layout */
#mkCardNumber {
  direction: ltr;
  text-align: right;
  letter-spacing: 0.04em;
}

/* Make sure label text doesn’t wrap awkwardly */
#mkMoyasarModal label {
  font-size: 14px;
  font-weight: 500;
  color: #444;
  display: block;
  margin-bottom: 5px;
  text-align: right;
}
/* Highlight invalid required fields */
.mk-required-field {
  border: 2px solid #d93025 !important;
  box-shadow: 0 0 3px rgba(217,48,37,0.4);
  border-radius: 8px;
}

/* Shake animation for attention */
@keyframes mkShake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-3px); }
  100% { transform: translateX(0); }
}
.mk-shake {
  animation: mkShake 0.3s;
}
/* ===========================
   🖥️ Desktop layout (default)
=========================== */
.mk-donation-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.mk-donation-banner {
    width: 45%;
    border-radius: 15px;
    overflow: hidden;
}

.mk-donation-form {
    width: 55%;
}

/* ===========================
   📱 Tablets (≤ 992px)
=========================== */
@media (max-width: 992px) {
    .mk-donation-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .mk-donation-banner,
    .mk-donation-form {
        width: 100%;
        border-radius: 0;
    }

    .mk-donation-banner {
        order: -1; /* ✅ Show banner first */
    }

    .mk-donation-days {
        grid-template-columns: repeat(5, minmax(50px, 1fr));
        gap: 10px;
        justify-items: left;
        align-items: center;
        direction: ltr;
        margin: 16px 0;
    }
}

/* ===========================
   📲 Small tablets / large phones (≤ 768px)
=========================== */
@media (max-width: 768px) {
    .mk-donation-wrapper {
        flex-direction: column;
    }

    .mk-donation-banner {
        order: -1; /* ✅ Banner first */
        width: 100%;
        padding: 25px 20px;
        border-radius: 0;
    }

    .mk-donation-form {
        width: 100%;
        padding: 30px 20px;
    }

    .mk-donation-days {
        grid-template-columns: repeat(5, minmax(40px, 1fr));
        gap: 8px;
        justify-items: left;
        align-items: center;
    }
}

/* ===========================
   📱 Small phones (≤ 576px)
=========================== */
@media (max-width: 576px) {
    .mk-donation-wrapper {
        flex-direction: column;
    }

    .mk-donation-banner {
        order: -1; /* ✅ Always first on smallest screens */
        width: 100%;
        padding: 20px 10px;
    }

    .mk-donation-form {
        width: 100%;
        padding: 25px 15px;
    }

    .mk-donation-days {
        grid-template-columns: repeat(5, minmax(40px, 1fr));
        gap: 6px;
        justify-items: center;
        align-items: center;
        direction: ltr;
    }

    .mk-donation-days button,
    .mk-donation-days div {
        font-size: 13px;
        padding: 8px 4px;
    }
}
/* ✅ Add right padding for mobile view */
@media (max-width: 576px) {
    .mk-donation-form {
        padding-right: 20px;  /* Add space on the right */
        padding-left: 20px;   /* Keep it balanced */
    }

    .mk-donation-banner {
        padding-right: 15px;
        padding-left: 15px;
    }

    .mk-donation-days {
        padding-left: 20px;  /* Optional: right padding inside grid */
    }
    .mk-section-title {
        padding-left: 20px;  /* Optional: right padding inside grid */
    }
    .mk-donation-type {
        padding-left: 20px;  /* Optional: right padding inside grid */
    }
    .mk-other-amount {
        padding-left: 20px;  /* Optional: right padding inside grid */
    }
}
@media (min-width: 993px) {
    .mk-donation-wrapper {
        display: flex;
        flex-direction: row-reverse; /* Banner on the right side */
        align-items: flex-start;
        justify-content: space-between;
    }

    .mk-donation-banner {
        order: 0 !important; /* Restore default order */
        width: 45%;
    }

    .mk-donation-form {
        width: 50%;
    }
}
/* ✅ General padding for main donation container */
#wrap.mk-donation-container {
    padding-left: 60px;
    padding-right: 60px;
}
@media (max-width: 992px) {
    #wrap.mk-donation-container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 576px) {
    #wrap.mk-donation-container {
        padding-left: 15px;
        padding-right: 15px;
    }
}
=====/* ===============================
   mk-donation-title h3
=============================== */=============
.mk-donation-title {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #705f42;
    font-weight: 500;
    font-size: 17px;
    text-align: right;
}

/* ===============================
   Project Description Section
=============================== */
.mk-project-description {
    width: 100%;
    max-width: 1050px;
    margin: 10px auto;
    padding: 0 0px;
    text-align: right;
    direction: rtl;
}

/* --- Top white box --- */
.mk-project-top {
    background-color: #ffffff;
    border: 0px solid #e6e6e6;
    border-radius: 12px;
    padding: 0px 0px;
    margin-bottom: 10px;
    justify-content: center;
    align-items: center;
}

.mk-project-title {
    color: #3c6b53; /* elegant green title */
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
}

.mk-project-paragraph {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: #444444;
}

/* --- Banner section --- */
.mk-project-banner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mk-project-banner img {
    width: 100%;
    max-width: 1280px;
    height: auto;
    border-radius: 14px;
    object-fit: cover;
}

/* ===============================
   Responsive Design
=============================== */
@media (max-width: 992px) {
    .mk-project-description {
        padding-left: 20px;
        padding: 0 25px;
        margin: 40px auto;
    }

    .mk-project-top {
       padding-left: 20px;
    }

    .mk-project-title {
        font-size: 20px;
    }

    .mk-project-paragraph {
        font-size: 15px;
        line-height: 1.8;
    }
}

@media (max-width: 576px) {
    .mk-project-description {
        padding: 0 15px;
        margin: 30px auto;
    }

    .mk-project-top {
       padding-left: 20px;
    }

    .mk-project-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .mk-project-paragraph {
        font-size: 14px;
        line-height: 1.8;
    }

    .mk-project-banner img {
        border-radius: 10px;
        padding-left: 20px;
    }
}
/* Start hidden only if daily is active by default */
#mkDayTitle.is-hidden,
#mkDaysGrid.is-hidden {
    display: none !important;
}
.mk-amount-error,
.mk-day-error {
    color: #d93025;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    text-align: center;
    display: none;
}