	 
	 /* =========================
   EDUCATION - SCHOOLS CSS
   Desktop: 4 columns
   Mobile: 2 columns
   ========================= */

/* Wrapper */
.primary-schools-list,
.education-schools-list,
.smd-edu-listing {
    direction: rtl;
    max-width: 1100px;
    margin: 30px auto;
    padding: 15px;
}

/* Grid wrapper */
.smd-edu-grid,
.primary-schools-list,
.education-schools-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* =========================
   SCHOOL LIST BUTTON CARDS
   ========================= */
.primary-schools-list a,
.education-schools-list a,
.smd-edu-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 145px;
    background: #ffffff;
    color: #174bd6 !important;
    text-decoration: none;
    padding: 18px 16px;
    border-radius: 16px;
    border: 1px solid #e8edff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
    transition: all 0.25s ease;
    position: relative;
    text-align: right;
}

.smd-edu-card {
    margin: 0;
}

.smd-edu-card a {
    color: #174bd6 !important;
    text-decoration: none;
}

/* Hover */
.primary-schools-list a:hover,
.education-schools-list a:hover,
.smd-edu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(36,84,230,0.18);
    background: #f7f9ff;
}

/* Title */
.primary-schools-list a strong,
.education-schools-list a strong,
.smd-edu-card h2 {
    font-size: 18px;
    color: #111;
    margin-bottom: 8px;
}

/* Meta */
.primary-schools-list a span,
.education-schools-list a span,
.smd-edu-card p {
    font-size: 15px;
    color: #555;
}

/* Arrow */
.primary-schools-list a::after,
.education-schools-list a::after,
.smd-edu-card::after {
    content: "←";
    position: absolute;
    left: 14px;
    bottom: 12px;
    font-size: 18px;
    color: #2454e6;
}

.primary-schools-list a:hover::after,
.education-schools-list a:hover::after,
.smd-edu-card:hover::after {
    left: 10px;
}

/* =========================
   SINGLE SCHOOL PAGE
   ========================= */
.school-page,
.smd-edu-detail {
    direction: rtl;
    max-width: 1100px;
    margin: 35px auto;
    padding: 18px;
}

/* Card */
.school-card,
.smd-edu-profile {
    background: linear-gradient(135deg, #ffffff, #f8faff);
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-right: 6px solid #2454e6;
}

/* Title */
.school-card h1,
.smd-edu-profile h1 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #111;
}

/* Info */
.school-card p,
.smd-edu-profile p {
    font-size: 20px;
    margin: 10px 0;
}

/* Detail */
.school-detail,
.smd-edu-profile section {
    margin-top: 25px;
    background: #ffffff;
    padding: 28px;
    border-radius: 22px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.06);
    border-top: 4px solid #f2b705;
}

.school-detail h2,
.smd-edu-profile section h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.school-detail p,
.smd-edu-profile section p {
    font-size: 20px;
    line-height: 2.4;
}

/* =========================
   CONTACT NOTE
   ========================= */
.smd-school-contact-note {
    margin-top: 30px;
    background: linear-gradient(135deg, #f8faff, #eef5ff);
    padding: 26px;
    border-radius: 22px;
    border-right: 6px solid #25d366;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    position: relative;
}

.smd-school-contact-note::before {
    content: "💬";
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 28px;
    opacity: 0.15;
}

.smd-school-contact-note h2 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #111;
}

.smd-school-contact-note p {
    font-size: 20px;
    line-height: 2.4;
    color: #222;
}

.smd-school-contact-note a {
    color: #25d366 !important;
    font-weight: bold;
    text-decoration: none;
}

.smd-school-contact-note a:hover {
    text-decoration: underline;
}

/* WhatsApp Button */
.smd-whatsapp-btn {
    display: inline-block;
    margin-top: 15px;
    background: #25d366;
    color: #fff !important;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.smd-whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    text-decoration: none;
}

.smd-whatsapp-number {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    direction: ltr;
    unicode-bidi: embed;
}

/* =========================
   TABLET
   ========================= */
@media (max-width: 900px) {
    .smd-edu-grid,
    .primary-schools-list,
    .education-schools-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 768px) {

    .smd-edu-grid,
    .primary-schools-list,
    .education-schools-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .smd-school-contact-note {
        padding: 18px;
    }

    .smd-school-contact-note h2 {
        font-size: 20px;
    }

    .smd-school-contact-note p {
        font-size: 16px;
        line-height: 2.2;
    }

    .smd-whatsapp-btn {
        font-size: 16px;
        padding: 10px 18px;
    }

    .smd-whatsapp-number {
        font-size: 16px;
    }
}
/* ===== HERO ===== */
.smd-school-hero {
    background: linear-gradient(135deg, #1237a8, #2454e6);
    color: #fff;
    padding: 35px 30px;
    border-radius: 22px;
    margin-bottom: 25px;
    text-align: center;
}
.smd-school-hero h1 {
    font-size: 32px;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.8;
}
.smd-hero-area {
    font-size: 18px;
    color: #d0e0ff;
}

/* ===== BADGES ===== */
.smd-info-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 25px;
}
.smd-badge {
    background: #f8faff;
    border: 1px solid #e0e8ff;
    border-radius: 16px;
    padding: 16px 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.smd-badge-icon { font-size: 26px; }
.smd-badge-label { font-size: 13px; color: #888; }
.smd-badge-value { font-size: 16px; font-weight: 700; color: #111; }

/* ===== SECTIONS ===== */
.smd-section {
    background: #fff;
    border-radius: 20px;
    padding: 26px;
    margin-bottom: 20px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    border-right: 5px solid #2454e6;
}
.smd-section h2 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #111;
}
.smd-section p {
    font-size: 19px;
    line-height: 2.4;
    color: #333;
}
.smd-section-blue  { border-right-color: #2454e6; }
.smd-section-green { border-right-color: #25d366; }
.smd-section-yellow{ border-right-color: #f2b705; }
.smd-section-gold  { border-right-color: #e6a800; background: #fffdf0; }
.smd-section-social{ border-right-color: #1877f2; }

/* ===== LISTS ===== */
.smd-facilities-list,
.smd-achievements-list,
.smd-related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.smd-facilities-list li,
.smd-achievements-list li {
    font-size: 18px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
}
.smd-related-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}
.smd-related-list a {
    font-size: 17px;
    color: #2454e6;
    text-decoration: none;
}
.smd-related-list a:hover { text-decoration: underline; }

.smd-all-link {
    display: inline-block;
    margin-top: 14px;
    color: #2454e6;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
}

/* ===== VIDEO & MAP ===== */
.smd-video-wrap,
.smd-map-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 14px;
}
.smd-video-wrap iframe,
.smd-map-wrap iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 14px;
}

/* ===== SOCIAL ===== */
.smd-social-links { display: flex; gap: 14px; flex-wrap: wrap; }
.smd-social-btn {
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    color: #fff !important;
}
.smd-fb { background: #1877f2; }
.smd-fb:hover { background: #1464d8; }

/* ===== MOBILE ===== */
@media (max-width: 600px) {
    .smd-info-badges {
        grid-template-columns: repeat(2, 1fr);
    }
    .smd-school-hero h1 { font-size: 24px; }
    .smd-section { padding: 18px; }
    .smd-section h2 { font-size: 20px; }
    .smd-section p { font-size: 16px; }
}
