
@import url('https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Cairo:wght@200..1000&display=swap');

:root{
      --primary-color: #007bff; /* أزرق للأزرار */
    --secondary-color: #1e8449; /* أخضر للشعار */
    --text-color: #333;
    --bg-color: #fff;
    --border-radius: 8px;
    --primary: #0b4d8f;
--primary-600: #115da9;
--accent: #f2c64b;
--heading: #0f2233;
--text: #2a2e34;
 --blue: #1E90FF; /* Example blue color for numbers */
    --orange: #FFA500; /* Example orange color for diamonds */
    --text-color: #333;
    --font-family: 'Arial', sans-serif; 
  --bg:#fffff;
  --ink:#061923;
  --muted:#6b7a86;
  --accent:#f7b500;
  --icon:#1f6f78;
  --bg-mobile:#f5f8fb;

--dark-blue: #0A141A; 
    --white: #FFFFFF;
    --text-color: #B0B0B0; 
    --link-hover-color: #5BC0F8; /* لون أزرق فاتح جميل للهوفر */
    --padding-desktop: 70px 100px 40px;
    --padding-mobile: 40px 20px 20px;
    --border-color: rgba(255, 255, 255, 0.15); 
    --ink:#061923;
--muted:#3b5563;
--bg:#ffffff;
--card:#f3f5f7;
--maxw:1160px;
 --bg: #f2f7fc;
    --card:#fff;
    --text:#061923;
    --muted:#7b8a97;
    --accent:#f5b700;
    --stroke:#e6edf3;
    --radius:14px;
    --shadow:0 6px 18px rgba(6,25,35,.06);

}







body {
  font-family: 'Noto Sans Arabic', sans-serif;
   
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}


/* شريط التنقل (Navbar) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(227, 241, 250, 1);
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
        /* قيمة عالية جداً لضمان ظهوره في المقدمة */

}


/* الترتيب الجديد للأقسام (شاشات الكمبيوتر) */
.navbar-right { /* زر تبرع الآن (أقصى اليمين) */
    order: 3;
    display: flex;
    align-items: center;
}

.navbar-links { /* الروابط والشعار (المنتصف) */
    order: 2;
    list-style: none;
    display: flex;
    align-items: center; /* لمحاذاة الشعار مع الروابط */
    flex-grow: 1;
    justify-content: center; /* لجعل الروابط في المنتصف */
    gap: 25px;
}

.navbar-left { /* مربع البحث (أقصى اليسار) */
    order: 1;
    display: flex;
    align-items: center;
}

/* الشعار */
.logo-container {
    list-style: none; /* إزالة التنقيط من عنصر li الخاص بالشعار */
    padding: 0 10px;
}
.logo {
    font-size: 32px;
    color: var(--secondary-color);
    /* إزالة أي هوامش غير ضرورية */
}

/* زر التبرع */
.donate-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: bold;
    transition: background-color 0.3s;
    margin-inline-start: 15px; /* مسافة عن زر فتح القائمة */
}

.donate-btn:hover {
    background-color: #0056b3;
}

/* الروابط */
.navbar-links li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
}

.navbar-links li a:hover {
    color: var(--primary-color);
}

/* مربع البحث */
.search-box {
    display: flex;
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 40px;
}

.search-box input {
    border: none;
    padding: 0 10px;
    outline: none;
    width: 200px;
    text-align: right;
}

.search-box button {
    background-color: transparent;
    border: none;
    padding: 0 10px;
    cursor: pointer;
    color: var(--text-color);
    font-size: 16px;
    transition: background-color 0.3s;
}

.search-box button:first-of-type,
.search-box button:last-of-type {
    border-inline-start: 1px solid #ccc;
}

/* الشريط الجانبي (Sidebar) - لم يتغير */
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.5);
}

.sidebar a {
    padding: 15px 25px 15px 32px;
    text-decoration: none;
    font-size: 20px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    color: #f1f1f1;
    background-color: var(--primary-color);
}

.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-inline-start: 50px;
}

.donate-btn-sidebar {
    background-color: var(--primary-color);
    color: rgb(99, 227, 135);
    text-align: center;
    margin-top: 20px;
}
 .navbar-links {
          pointer-events: auto !important; /* تأكد من السماح بالنقرات */

    }


/* زر فتح القائمة (يظهر فقط في الجوال) */
.openbtn {
    font-size: 30px;
    cursor: pointer;
    background-color: transparent;
    color: var(--text-color);
    border: none;
    display: none; /* مخفي في الشاشات الكبيرة */
    padding: 0;
    margin-inline-start: 15px; /* مسافة عن زر تبرع الآن */
}
.logo img {
    height: 40px;
}


/* ------------------------------------- */
/* التجاوبية (Media Queries) */
/* ------------------------------------- */

@media screen and (max-width: 992px) {
    .navbar-links {
        display: none; /* إخفاء الروابط والشعار في الشاشات الأصغر */
    }

    .openbtn {
        display: block; /* إظهار زر فتح القائمة */
    }
    
    /* إعادة ترتيب الأقسام في الجوال ليكون التبرع أقصى اليمين والبحث أقصى اليسار */
    .navbar-right {
        order: 1; /* اليمين */
    }
    .navbar-left {
        order: 3; /* اليسار */
    }
}


@media screen and (max-width: 600px) {
    .navbar {
        padding: 10px;
    }

    .search-box input {
        width: 100px;
    }

    .donate-btn {
        /* إبقاء زر التبرع ظاهرًا هنا أو يمكنك إخفاؤه حسب رغبتك */
        /* display: none; */ 
    }

    .sidebar {
        width: 70%;
    }
}



/* section1 */

/* ======================================= */
/* القسم (Section) */
/* ======================================= */
.about-section {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem; 
    background: rgba(227, 241, 250, 1);
}

/* ======================================= */
/* شبكة العمودين (Grid) - التخطيط الافتراضي للشاشات الكبيرة */
/* ======================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

/* ======================================= */
/* النص (Text) */
/* ======================================= */
.about-title {
    margin: 0.5rem 0 1rem;
    font-weight: 800;
    letter-spacing: 0.1px;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    /* الحجم الافتراضي (شاشات كبيرة): 32px. الحجم الأصغر (الموبايل): 22px */
    font-size: clamp(1.375rem, 3.5vw, 2rem); 
}
.about-title::before,
.about-title::after {
    content: "";
    width: 0.625rem;
    height: 0.625rem;
    background: #f5b700;
    transform: rotate(45deg);
    border-radius: 2px;
    box-shadow: 0 0 0 2px rgba(245, 183, 0, 0.12);
}

.about-paragraph {
    margin: 0;
    font-weight: 500;
    color: rgba(2, 39, 59, 1);
    /* **تم التصغير هنا**: الحد الأدنى لحجم الخط أصبح 0.9375rem (15px) */
    font-size: clamp(0.9375rem, 2.8vw, 1.5rem); 
    line-height: 1.7;
}
.about-paragraph .br {
    display: block;
    height: 0.55rem;
    content: "";
}

/* ======================================= */
/* الصورة (Figure) */
/* ======================================= */
.about-figure {
    display: flex;
    justify-content: center;
}

.figure-box {
    max-width: 100%;
    /* aspect-ratio: 812 / 402; */
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
    height: auto;
}

.figure-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: rgba(227, 241, 250, 1);
}


/* ======================================= */
/* استعلامات الوسائط (Media Queries) - التجاوب للموبايل */
/* ======================================= */

/* @media: تخطيط عمود واحد للشاشات الأصغر من 900 بكسل (الأجهزة اللوحية) */
@media (max-width: 56.25rem) { /* 900px */
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* الترتيب: الصورة أولًا ثم النص */
    .about-text {
        order: 2;
    }
    .about-figure {
        order: 1;
    }

    /* تحسين للصورة على شاشات الأجهزة اللوحية المتوسطة */
    .figure-box {
        max-width: 85%;
        margin: 0 auto; 
    }
}

/* @media: تحسينات للشاشات الصغيرة جدًا (الهواتف) */
@media (max-width: 30rem) { /* 480px */
    .about-section {
        padding: 2rem 1rem 2.5rem; 
    }

    /* **التعديل لتصغير الصورة بشكل إضافي** */
    .figure-box {
        /* تم تقليل العرض من 95% إلى 80% لتصغير حجم الصورة */
        max-width: 80%; 
    }
}




/* section2 */
 
.infographic{max-width:1050px;margin:36px auto;padding:0 16px 40px}
.section-title{display:flex;align-items:center;justify-content:center;gap:10px;margin:8px 0 24px}
.section-title h2{margin:0;font-weight:900;font-size:2rem}
.diamond{width:10px;height:10px;background:var(--accent);transform:rotate(45deg);border-radius:2px;box-shadow:0 0 0 2px rgba(247,181,0,.12)}

/* ------------ الديسكتوب: الدائرة ------------ */
.circle-wrap{position:relative;width:403px;aspect-ratio:1/1;margin:28px auto}
.ring{position:absolute;inset:0;border-radius:50%;border:2px solid rgba(70, 94, 114, 1)}
.logol{position:absolute;inset:50% auto auto 50%;translate:-50% -50%;width:200px;
height: 200px;}
.logol img{width:100%;height:auto}

.items{list-style:none;margin:0;padding:0}
.item{position:absolute;top:50%;left:50%;width:0;height:0}

/* الأيقونات */
.item [class^="ico"]{
  position:absolute;top:0;left:0;translate:-50% -50%;
  width:48px;height:48px;border-radius:50%;
  background:var(--icon);border:2px solid #cfe6ea;
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:18px;color:#fff;
  box-shadow:0 0 0 3px #fff;
}

/* أماكن الأيقونات */
.item .ico1{ top: -10rem; left: 123px; }
.item .ico2{ top: -9rem; left: -9rem; }
.item .ico3{ top: 1rem; left: -13rem; }
.item .ico4{ top: 0rem; left: 12rem; }
.item .ico5{ top: 8rem; left: 9rem; }
.item .ico6{ top: 10rem; left: -7rem; }
.item .ico7{ top: 13rem;; left: 2rem; }

/* الكروت */
.item [class^="card"]{
  position:absolute;translate:-50% -50%;
  width:clamp(190px,28vw,260px);
  border-radius:14px;padding:12px;
  text-align:center;transition:.25s;
}

/* أماكن الكروت */
.item .card1{ top: -12rem; left: 20rem; }
.item .card2{ top: -10rem; left: -22rem; }
.item .card3{ top: 3rem; left: -25rem; }
.item .card4{ top: 1rem; left: 27rem; }
.item .card5{ top: 14rem; left: 21rem; }
.item .card6{ top: 15rem; left: -23rem; }
.item .card7{ top: 20rem; left: 2rem; }

/* نصوص الكارت + الدايموند */
.item [class^="card"] .h{
  margin:0;
  font-weight:900;
  font-size:clamp(18px,1.3vw,24px);
  color:var(--icon);
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.item [class^="card"] .h::after{
  content:"";
  width:10px;height:10px;
  background:var(--accent);
  transform:rotate(45deg);
  border-radius:2px;
  box-shadow:0 0 0 2px rgba(247,181,0,.12);
}

.item [class^="card"] .p{
  margin:6px 0 0;
  color:var(--muted);
  font-size:clamp(14px,1.05vw,16px);
  line-height:1.6;
}

.item [class^="card"]:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(6,25,35,.1)
}

/* ------------ الموبايل / التابلت ------------ */
@media (max-width:820px){
  .circle-wrap{width:min(560px,100%);margin:auto}
  .ring,.logo{display:none}

  .items{
    position:static;
    display:flex;
    flex-direction:column;
    gap:14px;
    align-items:center;
    padding-inline:4px;
  }
  .item{
    position:static !important;
    width:100%;
    max-width:560px;
    height:auto;
    transform:none !important;
    display:flex;
    align-items:center;
    gap:12px;
    justify-content:center;
  }
  .item [class^="ico"]{
    position:static !important;
    translate:0 !important;
    width:42px;height:42px;flex:0 0 42px;
    border:none;box-shadow:none;
    background:rgba(94, 144, 176, 1);
    color:var(--ink);
    font-weight:900;font-size:16px;
  }
  .item [class^="card"]{
    position:static !important;
    translate:0 !important;
    transform:none !important;
    width:100%;max-width:560px;
    margin:0;
    background:var(--bg-mobile);
    border:1px solid #e0e6ed;
    box-shadow:none;
    text-align:center;
    padding:16px 14px;
  }
  .item [class^="card"] .h{font-size:1.05rem}
  .item [class^="card"] .p{font-size:.95rem}
}

/* شاشات صغيرة جدًا */
@media (max-width:380px){
  .item [class^="ico"]{width:38px;height:38px;font-size:15px}
  .item{gap:10px}
  .item [class^="card"]{padding:14px 12px}
}



/* Base Styles */
.max-w-7xl {
    max-width: 1280px; /* Equivalent to max-w-7xl */
    margin-left: auto;
    margin-right: auto;
    padding-top: 4rem; /* Adjusted for better spacing, was 14rem */
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 12rem;
}

/* Title Styling */
.text-center {
    text-align: center;
}

.title-divider {
    position: relative;
    display: inline-block;
    line-height: 1.2;
    font-size: 32px;
    font-family: 'Arial', sans-serif;
    color: var(--text-primary);
    font-weight: 800; /* extabold equivalent */
}

.title-divider::before, .title-divider::after {
    content: "";
    width: 10px;
    height: 10px;
    background: gold;
    transform: rotate(45deg);
    border-radius: 2px;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.12); /* Adjusted to accent color */
    margin: 0 0.5rem;
    display: inline-block;
    vertical-align: middle;
}

/* Responsive Grid Container (Main Change) */
.grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Default: 1 column for mobile (sm:grid-cols-2) */
    gap: 1rem; /* gap-4 equivalent */
}

/* Small Screens (sm) and up */
@media (min-width: 640px) {
    .grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }
}

/* Large Screens (lg) and up */
@media (min-width: 1024px) {
    .grid {
        grid-template-columns: repeat(4, 1fr); /* 4 columns for desktop */
    }
}

/* Card Styling */
.card {
    padding: 1.5rem; /* p-6 */
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); /* shadow-lg */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    aspect-ratio: 1 / 1; /* aspect-square */
    transition: all 0.3s ease; /* transition duration-300 */
    position: relative;
    overflow: hidden;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); /* hover:shadow-xl */
}

/* Icon Card Specifics */
.icon-card {
    background-color: var(--background-light); /* bg-blue-50 */
}

.icon-card .icon-wrapper {
    margin-bottom: 1rem; /* mb-4 */
}

.icon-card .icon-wrapper img {
    width: 100%;
    height: auto;
    max-width: 60px; /* Appropriate size for icons */
}

.icon-card h3 {
    font-size: 24px; /* text-xl */
    font-weight: 700; /* font-bold */
    color: rgba(7, 51, 74, 1);
    margin-bottom: 0.5rem; /* mb-2 */
}

.icon-card p {
    color: rgba(7, 51, 74, 1);
    font-size: 20px; 
    letter-spacing: normal; 
    line-height: 1.7;
    margin-top: 20px; 
}

/* Image Card Specifics */
.image-card {
    background-color: var(--background-dark); /* bg-gray-900 */
}

.card-image-full-bleed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-image-full-bleed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* end section */



/* section4 */
/* Container for all stat blocks */

.campaign-stats-section {
    padding: 20px;
    text-align: center;
    background-color: #fff; /* White background matching the image */
    direction: rtl; /* Set base direction to Right-to-Left for the section */
    padding-top: 11rem;
}

.container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto; /* Center the container */
    flex-wrap: nowrap; /* Prevent wrapping on large screens */
}

.stat-item {
    flex: 1; /* Distribute space evenly */
    padding: 10px;
    margin: 0 5px;
    min-width: 150px; /* Ensure a minimum width */
}

/* Styling for the number and diamonds line */
.stat-number-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 48px; /* Large size for the numbers */
    font-weight: 700;
    color: rgba(31, 136, 193, 1);
    padding: 0 10px;
    line-height: 1; /* Adjust line-height for better alignment */
}

/* Styling for the diamond shapes */
.diamond {
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-bottom-color: var(--orange); /* Initial color for the top half */
    position: relative;
    transform: rotate(45deg); /* Rotate to form a diamond shape */
    margin: 0 5px;
}

/* This is a simple way to create a filled diamond shape using one element */
.orange-diamond {
    border-color: transparent;
    background-color: var(--orange);
    width: 10px;
    height: 10px;
    /* Adjust rotation if needed for better look */
}


/* Styling for the description text */
.stat-description {
    font-size: 24px;
    color: rgba(2, 39, 59, 1);
    line-height: 1.5;
    text-align: center;
    /* dir="rtl" is on the HTML element for correct text flow */
}

/* --- Responsiveness: Stacking columns on smaller screens --- */

@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack items vertically on medium/small screens */
        flex-wrap: wrap; /* Allow wrapping */
    }

    .stat-item {
        margin: 15px 0; /* Add vertical space between stacked items */
        width: 100%; /* Full width when stacked */
        min-width: auto;
    }

    .stat-number {
        font-size: 2em; /* Slightly smaller numbers on mobile */
    }
}
/* section4 */


/* section5 */
/* ====== الغلاف ====== */
/* ====== الغلاف ====== */
.wrapper{ max-width:1150px; margin:148px auto; padding:0 16px 60px; }
.title{ display:flex;align-items:center;justify-content:center;gap:10px;margin:0 0 26px;font-weight:700;letter-spacing:.3px }
.title i{ width:10px;height:10px;background:var(--accent);transform:rotate(45deg);display:inline-block;border-radius:2px;box-shadow:0 0 0 2px rgba(255,210,77,.18) }
.title h2{ margin:0;
     font-size:32px;
    color: rgba(2, 39, 59, 1);
    }

/* ====== الشبكة ====== */
.grid{ display:grid; gap:18px; grid-template-columns:1fr; }
@media (min-width:640px){ .grid{ grid-template-columns:repeat(2,1fr);} }
@media (min-width:1024px){ .grid{ grid-template-columns:repeat(3,1fr);} }

/* ====== البطاقة ====== */
.cardy{
  background:var(--card); border-radius:var(--radius);
  box-shadow:var(--shadow); padding:28px 16px; position:relative;
}
/* .cardk{
     background:var(--card);
    box-shadow:var(--shadow);

} */
.row{
  display:grid; align-items:center; gap:12px;
  grid-template-columns:auto 1fr auto;
  /* ترتيب الأعمدة: يسار Play – وسط النص – يمين الأفاتار */
  grid-template-areas: "play meta avatar";
}
.playbtn{ grid-area:play }
.meta{ grid-area:meta; min-width:0;text-align: end;  }
.avatar{ grid-area:avatar }

.avatar{
  width:80px;height:80px;background:#a3c7df;
  display:grid;place-items:center;overflow:hidden;
}
.avatar img{width:80px;height:80px;opacity:.95;}

.name{ font-size:16px;font-weight:700;color:rgba(2, 39, 59, 1);margin:0 0 2px; }
.desc{
  margin:0;color:rgba(133, 150, 170, 1);font-size:16px;line-height:1.5;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}

/* زر التشغيل */
.playbtn{
  width:38px;height:38px;border:none;outline:none;cursor:pointer;
  border-radius:999px;background:#e9f3fa;display:grid;place-items:center;
  transition:transform .15s ease, background .2s ease;
}
.playbtn:hover{ transform:translateY(-1px); }
.playbtn svg{width:18px;height:18px;fill:#589cc9}

/* ====== الشريط والزمن ====== */
.progressWrap{
margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  border-top: 1px solid rgba(185, 223, 243, 1);
}

.bar{ height:6px;background:var(--ring);border-radius:999px;position:relative;overflow:hidden }
.fill{ position:absolute;inset:0 100% 0 0;background:var(--primary);border-radius:999px;width:0% }
.time{ font-size:10px;color:#88a3b6 }

/* إخفاء الشريط حتى يبدأ التشغيل */
.card:not(.active) .progressWrap{ display:none }

/* توزيع متعرّج بسيط */
.cardk:nth-child(2){ transform:translateY(8px) }
.cardk:nth-child(3){ transform:translateY(-8px) }
.cardk:nth-child(4){ transform:translateY(6px) }
.cardk:nth-child(5){ transform:translateY(-6px) }
@media (max-width:639px){ .cardk:nth-child(5){ transform:none !important } }

/* section5 */


/* section6 */

       /* ضبط حجم الخط الأساسي للـ body على الشاشات الصغيرة والكبيرة (p-4 sm:p-8) */


        .container-wrapper {
            max-width: 1280px; /* max-w-7xl equivalent */
            margin: 0 auto; /* mx-auto equivalent */
            padding: 1.5rem; /* p-6 equivalent */
            border-radius: 0.75rem; /* rounded-xl equivalent */
        }

        @media (min-width: 640px) {
            .container-wrapper {
                padding: 2.5rem; /* sm:p-10 equivalent */
            }
        }
        
        /* ------------------------------------------- */
        /* Header Styles               */
        /* ------------------------------------------- */
        
        .header-section {
            text-align: center; /* text-center equivalent */
            margin-bottom: 2.5rem; /* mb-10 equivalent */
        }

        .header-content {
            display: flex;
            justify-content: center; /* justify-center equivalent */
            align-items: center; /* items-center equivalent */
        }

        .main-title {
            font-size: 32px; /* text-3xl equivalent */
            font-weight:700;
            color: #1f2937; /* text-gray-800 equivalent */
            margin-left: 0.75rem; /* mx-3 equivalent */
            margin-right: 0.75rem; /* mx-3 equivalent */
        }

        @media (min-width: 640px) {
            .main-title {
                font-size: 2.25rem; /* sm:text-4xl equivalent */
            }
        }

        .subtitle {
            color: #6b7280; /* text-gray-500 equivalent */
            margin-top: 0.5rem; /* mt-2 equivalent */
        }

        /* NEW CSS DIAMOND ACCENT (كما طلبت) */
        .diamond-accent {
            width: 10px;
            height: 10px;
            background-color: #facc15; /* Tailwind yellow-500 equivalent */
            transform: rotate(45deg);
            display: inline-block;
        }

        /* ------------------------------------------- */
        /* Logo Grid                 */
        /* ------------------------------------------- */

        .logo-grid {
            display: grid;
            gap: 1rem; /* gap-4 equivalent */
            grid-template-columns: repeat(2, 1fr); /* grid-cols-2 (Mobile) */
        }

        @media (min-width: 640px) {
            .logo-grid {
                gap: 1.5rem; /* sm:gap-6 equivalent */
            }
        }

        @media (min-width: 768px) {
            .logo-grid {
                grid-template-columns: repeat(3, 1fr); /* md:grid-cols-3 (Tablet) */
            }
        }

        @media (min-width: 1024px) {
            .logo-grid {
                grid-template-columns: repeat(5, 1fr); /* lg:grid-cols-5 (Desktop for 5x2 layout) */
            }
        }

        .logo-card {
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            transition: transform 0.3s ease, filter 0.3s ease;
        }

        .logo-card:hover {
            transform: scale(1.03); 
            filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
        }

        .logo-card img {
            width: 100%; /* w-full equivalent */
            height: auto;
            max-width: 150px; /* max-w-[150px] equivalent */
            object-fit: contain;
        }
/* section6 */