@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@400;500;600;700&family=Noto+Kufi+Arabic:wght@500;700&display=swap');

body {
    background: linear-gradient(135deg, rgba(197, 145, 0, 0.3) 0%, rgba(255, 224, 138, 0.4) 50%, rgba(197, 145, 0, 0.3) 100%), url('../images/night.jpg') center/cover fixed no-repeat;
    background-size: 100% 100%;
    background-attachment: fixed;
    font-family: 'Cairo', Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    color: #333;
    line-height: 1.7;
    font-size: 1.08em;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    animation: fadeInPage 1.5s ease-in-out;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Arabic official typography overrides */
html[lang="ar"] body {
    font-family: 'IBM Plex Sans Arabic', 'Cairo', Tahoma, Arial, sans-serif;
}
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] h5,
html[lang="ar"] h6,
html[lang="ar"] .section-title,
html[lang="ar"] .committees-title {
    font-family: 'Noto Kufi Arabic', 'IBM Plex Sans Arabic', 'Cairo', system-ui, sans-serif;
}

/* iPhone/iOS specific fixes - only for iOS devices */
@supports (-webkit-touch-callout: none) {
  body {
    background-attachment: scroll;
    background-size: cover;
    -webkit-background-size: cover;
  }
}




.main-logo {
    position: relative;
    display: block; /* منع فراغ السطر أسفل وأعلى العنصر */
    line-height: 0; /* إزالة فراغ السطر العمودي حول الشكل */
    overflow: hidden; /* قص أي توهج يتجاوز الحدود عمودياً */
  }
  
  /* News page specific logo placement */
 .main-logo {
    display: block;
    margin: 50px auto 15px auto;
    text-align: center;
  }
  
  /* Subtle golden sun glow behind the logo */
  .main-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 224, 138, 0.22) 0%, rgba(197, 145, 0, 0.18) 35%, rgba(197, 145, 0, 0) 70%);
    filter: blur(2px); /* تقليل إضافي للتوهج */
    opacity: 0.06;
    z-index: 0;
    pointer-events: none;
    transform: scaleY(0.6); /* ضغط أكبر عمودياً لتقليل الارتفاع */
    transform-origin: center;
    animation: none; /* إيقاف أي نبض، سيتم استبداله بتمرير اللمعان */
  }
  
  /* Border glow emanating from the logo edges */
  .main-logo::after {
    content: '';
    position: absolute;
    inset: 0; /* align glow to exact logo bounds */
    border-radius: 18px; /* match rounded rectangle */
    box-shadow: 0 0 8px rgba(197, 145, 0, 0.18), 0 0 18px rgba(255, 224, 138, 0.12);
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
    will-change: transform, opacity;
    animation: none; /* إيقاف وميض الحدود */
    transform: scaleY(0.6); /* ضغط أكبر عمودياً */
    transform-origin: center;
  }
  
  @keyframes borderGlow {
    0%   { opacity: 0.24; transform: scale(0.985); }
    50%  { opacity: 0.42; transform: scale(1.005); }
    100% { opacity: 0.24; transform: scale(0.985); }
  }
  
  @keyframes sunPulse {
    0% { opacity: 0.22; transform: scale(0.98); }
    100% { opacity: 0.32; transform: scale(1.03); }
  }
  /* Home logo badge redesign (circular golden medallion) */
  .main-logo .logo-bg {
    /* Match menu golden gradient */
    --gold1: #c59100;
    --gold2: #ffe08a;
    --gold3: #c59100;
    position: relative;
    display: inline-block;
    padding: 0; /* إزالة الحشوة ليطابق الشكل حجم الصورة */
    border: 0; /* إلغاء الحد حتى لا يزيد الحجم عن الصورة */
    line-height: 0; /* إزالة أي مساحة عمودية داخل الحاوية */
    background: linear-gradient(135deg, var(--gold1) 0%, var(--gold2) 50%, var(--gold3) 100%);
    border-radius: 14px; /* حواف ناعمة مخففة */
    box-shadow: 0 3px 6px rgba(0,0,0,0.10), inset 0 1px 2px rgba(255,255,255,0.10), inset 0 -3px 6px rgba(0,0,0,0.10);
    overflow: hidden;
    z-index: 1;
    /* تقليل الارتفاع الظاهر من الأعلى والأسفل بقصّ بسيط */
    clip-path: inset(15% 0 15% 0 round 14px);
  }
  
  .main-logo .logo-bg::before {
    content: '';
    position: absolute;
    inset: 0; /* محاذاة التأثير تماماً مع حواف الصورة بدون فراغ علوي/سفلي */
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
    border: 1px solid rgba(255, 224, 138, 0.25);
    opacity: 0.6; /* تخفيف لمعان الحدود الداخلية */
    transform: scaleY(0.85); /* ضغط أكبر عمودياً */
    transform-origin: center;
    pointer-events: none;
  }
  
  .main-logo .logo-animate {
    max-width: 340px; /* تكبير الشعار ليتطابق حجم الصورة مع الشكل */
    width: 100%;
    height: auto; /* الحفاظ على نسبة الأبعاد لمنع فراغ رأسي */
    display: block;
    margin: 0 auto;
    image-rendering: auto;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.25));
    transition: transform 0.25s ease;
  }
  
  .main-logo .logo-animate:hover {
    transform: scale(1.03);
  }
  
  /* Responsive sizing for the logo image */
  @media (max-width: 600px) {
    .main-logo::after { opacity: 0.22; box-shadow: 0 0 18px rgba(197,145,0,0.34), 0 0 42px rgba(255,224,138,0.2); }
    .main-logo::before { opacity: 0.16; filter: blur(8px); }
    .main-logo .logo-animate { width: 60vw; max-width: 240px; max-height: 20vh; }
    .main-logo .logo-bg { padding: 0; border-radius: 12px; clip-path: inset(10% 0 10% 0 round 12px); }
    .main-logo .logo-bg::after { opacity: 0.6; filter: blur(5px); animation: goldenShineSweep 8s cubic-bezier(0.45, 0.05, 0.2, 1) infinite; width: 80%; left: -160%; height: 150%; top: -25%; }
  }
  @media (max-width: 400px) {
    .main-logo::after { opacity: 0.18; box-shadow: 0 0 16px rgba(197,145,0,0.3), 0 0 34px rgba(255,224,138,0.16); }
    .main-logo::before { opacity: 0.14; filter: blur(7px); }
    .main-logo .logo-animate { width: 66vw; max-width: 190px; max-height: 18vh; }
    .main-logo .logo-bg { padding: 0; border-radius: 10px; clip-path: inset(8% 0 8% 0 round 10px); }
    .main-logo .logo-bg::after { opacity: 0.55; filter: blur(5px); animation: goldenShineSweep 9s cubic-bezier(0.45, 0.05, 0.2, 1) infinite; width: 85%; left: -170%; height: 160%; top: -30%; }
  }
  
  /* Golden light pass over the logo */
  .main-logo .logo-bg::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -150%;
    width: 75%;
    height: 140%;
    background: linear-gradient(120deg, rgba(255,215,0,0) 0%, rgba(255,215,0,0.40) 35%, rgba(255, 240, 170, 0.75) 50%, rgba(255,215,0,0.40) 65%, rgba(255,215,0,0) 100%);
    filter: blur(5px);
    opacity: 0.65;
    will-change: transform, left;
    animation: goldenShineSweep 6.5s cubic-bezier(0.45, 0.05, 0.2, 1) infinite;
    mix-blend-mode: screen;
    pointer-events: none;
  }
  
  @keyframes logoShimmer {
    0%   { left: -120%; opacity: 0.0; }
    20%  { opacity: 0.35; }
    50%  { left: 130%; opacity: 0.25; }
    70%  { opacity: 0.0; }
    100% { left: 130%; opacity: 0.0; }
  }
  
  @media (prefers-reduced-motion: reduce) {
    .main-logo .logo-bg::after { animation: none; opacity: 0.25; }
  }
  /* Removed legacy logo size constraints to allow larger logos on small screens */
  .logo-bg::after {
      content: '';
      position: absolute;
      top: -10%;
      left: -120%;
      width: 60%;
      height: 120%;
      background: linear-gradient(120deg, rgba(255,215,0,0) 0%, rgba(255,215,0,0.25) 35%, rgba(255, 240, 170, 0.55) 50%, rgba(255,215,0,0.25) 65%, rgba(255,215,0,0) 100%);
      mix-blend-mode: screen;
      pointer-events: none;
      filter: blur(6px);
      opacity: 0.45;
      animation: goldenShineSweep 3.8s ease-in-out infinite; /* تمرير لمعان ذهبي أنيق */
      z-index: 2;
  }
  .logo-bg {
      display: inline-block;
      background: radial-gradient(circle at 50% 50%, rgba(255, 224, 138, 0.25), rgba(197, 145, 0, 0.15) 40%, rgba(197, 145, 0, 0.35) 70%), linear-gradient(135deg, #c59100 0%, #ffe08a 50%, #c59100 100%);
      border-radius: 50%;
      box-shadow: 0 8px 25px rgba(197, 145, 0, 0.35);
      padding: 15px;
      border: 3px solid #b8860b;
      position: relative;
      overflow: hidden;
      animation: logoBgPulse 4s ease-in-out infinite, goldHeartbeat 2.8s ease-in-out infinite;
  }
  .logo-bg::before {
      content: '';
      position: absolute;
      inset: -15%;
      background: conic-gradient(from 0deg, rgba(255, 224, 138, 0.15), transparent 25%, rgba(255, 224, 138, 0.15) 50%, transparent 75%, rgba(255, 224, 138, 0.15));
      border-radius: 50%;
      pointer-events: none;
      animation: goldSunRays 12s linear infinite;
      filter: blur(0.6px);
  }
  /* Removed legacy media queries that shrank the logo on small screens */
  
  /* Strong mobile overrides to ensure larger logo image */
  @media (max-width: 600px) {
    .hero-titles .main-logo .logo-bg { padding: 0; border-radius: 12px; }
    .hero-titles .main-logo .logo-animate {
      width: 60vw;
      max-width: 240px;
      max-height: 20vh;
    }
  }
  @media (max-width: 400px) {
    .hero-titles .main-logo .logo-bg { padding: 0; border-radius: 10px; }
    .hero-titles .main-logo .logo-animate {
      width: 66vw;
      max-width: 190px;
      max-height: 18vh;
    }
  }
  
  
  @keyframes logoShineSweep {
      0% { left: -60%; opacity: 0.0; }
      20% { left: -20%; opacity: 0.25; }
      50% { left: 110%; opacity: 0.0; }
      100% { left: 110%; opacity: 0.0; }
  }
  
  @keyframes sparkleTwinkle {
      0% { transform: rotate(0deg) scale(1); opacity: 0.5; }
      25% { transform: rotate(8deg) scale(1.02); opacity: 0.8; }
      50% { transform: rotate(0deg) scale(1.03); opacity: 0.65; }
      75% { transform: rotate(-6deg) scale(1.01); opacity: 0.85; }
      100% { transform: rotate(0deg) scale(1); opacity: 0.6; }
  }
  
  /* Reintroduce golden glow animation for the logo */
  @keyframes logoGlow {
      0% {
          filter: drop-shadow(0 6px 28px rgba(0,0,0,0.18)) drop-shadow(0 0 0px #c59100) drop-shadow(0 0 0px #ffd700);
          transform: scale(1);
      }
      50% {
          filter: drop-shadow(0 6px 28px rgba(0,0,0,0.18)) drop-shadow(0 0 28px #c59100) drop-shadow(0 0 40px #ffd700) drop-shadow(0 0 55px #ffed4e);
          transform: scale(1.02);
      }
      100% {
          filter: drop-shadow(0 6px 28px rgba(0,0,0,0.18)) drop-shadow(0 0 0px #c59100) drop-shadow(0 0 0px #ffd700);
          transform: scale(1);
      }
  }
  
  @keyframes logoBgPulse {
      0% { box-shadow: 0 8px 25px rgba(197,145,0,0.25); transform: scale(1); }
      50% { box-shadow: 0 10px 30px rgba(197,145,0,0.4); transform: scale(1.02); }
      100% { box-shadow: 0 8px 25px rgba(197,145,0,0.25); transform: scale(1); }
  }
  @keyframes goldHeartbeat {
      0% { transform: scale(1); box-shadow: 0 8px 24px rgba(255, 215, 0, 0.25), inset 0 0 10px rgba(255, 224, 138, 0.15); }
      50% { transform: scale(1.035); box-shadow: 0 10px 34px rgba(255, 215, 0, 0.35), inset 0 0 16px rgba(255, 224, 138, 0.25); }
      100% { transform: scale(1); box-shadow: 0 8px 24px rgba(255, 215, 0, 0.25), inset 0 0 10px rgba(255, 224, 138, 0.15); }
  }
  @keyframes goldSunRays {
      0% { transform: rotate(0deg); opacity: 0.45; }
      50% { opacity: 0.6; }
      100% { transform: rotate(360deg); opacity: 0.45; }
  }
  @keyframes logoShimmer {
      0%, 100% {
          box-shadow:
              0 8px 40px rgba(0, 0, 0, 0.6),
              0 0 30px rgba(197, 145, 0, 0.3),
              0 0 60px rgba(255, 224, 138, 0.2),
              0 0 90px rgba(255, 215, 0, 0.1),
              inset 0 0 15px rgba(197, 145, 0, 0.1);
      }
      50% {
          box-shadow:
              0 8px 40px rgba(0, 0, 0, 0.6),
              0 0 50px rgba(197, 145, 0, 0.4),
              0 0 90px rgba(255, 224, 138, 0.3),
              0 0 120px rgba(255, 215, 0, 0.2),
              inset 0 0 20px rgba(197, 145, 0, 0.2);
      }
  }
  
  /* Golden shine sweep animation */
  @keyframes goldenShineSweep {
    0%   { left: -150%; opacity: 0.0; }
    15%  { opacity: 0.55; }
    45%  { left: 120%; opacity: 0.50; }
    60%  { left: 150%; opacity: 0.0; }
    100% { left: 150%; opacity: 0.0; }
  }
  @keyframes logoRotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
  }
  @keyframes fadeInPage {
      from { opacity: 0; }
      to { opacity: 1; }
  }
  
  



@media (max-width: 480px) {
  body {
    background: linear-gradient(135deg, rgba(197, 145, 0, 0.3) 0%, rgba(255, 224, 138, 0.4) 50%, rgba(197, 145, 0, 0.3) 100%), url('../images/night.jpg') center/cover fixed no-repeat;
    background-size: 100% 100%;
    background-attachment: fixed;
    min-height: 100vh;
  }
}

@media (max-width: 320px) {
  body {
    background: linear-gradient(135deg, rgba(197, 145, 0, 0.3) 0%, rgba(255, 224, 138, 0.4) 50%, rgba(197, 145, 0, 0.3) 100%), url('../images/night.jpg') center/cover fixed no-repeat;
    background-size: 100% 100%;
    background-attachment: fixed;
    min-height: 100vh;
  }
}


@media (max-width: 768px) {
    body {
        background: linear-gradient(135deg, rgba(197, 145, 0, 0.3) 0%, rgba(255, 224, 138, 0.4) 50%, rgba(197, 145, 0, 0.3) 100%), url('../images/night.jpg') center/cover fixed no-repeat;
        background-size: 100% 100%;
        background-attachment: fixed;
        min-height: 100vh;
    }

}



/* 12. Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}



/* Sections */
.section-box {
    background: linear-gradient(135deg, #c59100 0%, #ffe08a 50%, #c59100 100%);
    padding: 40px;
    margin: 30px 0;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(197, 145, 0, 0.3);
    border: 1px solid rgba(197, 145, 0, 0.5);
    animation: fadeIn 0.8s ease-out;
    color: #333;
}
.committees-title {
    color: #333;
    background: linear-gradient(135deg, #c59100 0%, #ffe08a 50%, #c59100 100%);
    display: inline-block;
    padding: 12px 18px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    border: 1px solid rgba(197,145,0,0.6);
}

/* Append organization suffix in H1 titles inside committee detail pages */
html[lang="ar"] .committees-title::after { content: "  —  المجلس الدولي للمعالم والمواقع (إيكوموس) السودان"; color: #333; font-size: .6em; font-weight: 700; }
html[lang="en"] .committees-title::after { content: "  —  ICOMOS Sudan"; color: #333; font-size: .6em; font-weight: 700; }
html[lang="fr"] .committees-title::after { content: "  —  ICOMOS Soudan"; color: #333; font-size: .6em; font-weight: 700; }
.section-box h2, .section-box h3 {
    color: #333; /* نص داكن فوق الخلفية الذهبية */
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2em;
    text-shadow: none;
    font-weight: bold;
    display: inline-block;
    background: linear-gradient(135deg, #c59100 0%, #ffe08a 50%, #c59100 100%);
    padding: 10px 16px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    border: 1px solid rgba(197,145,0,0.6);
}

.section-box p, .section-box .about-content {
    text-align: left;
    color: #333;
    line-height: 1.7;
    font-size: 1.1em;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    word-spacing: normal;
    letter-spacing: normal;
}
@media (max-width: 768px) {
    .about-content {
        font-size: 1em;
        line-height: 1.5;
        padding: 10px;
    }
}



/* --- إصلاح وتوحيد أسلوب body والنص العام --- */
html {
    scroll-behavior: smooth;
}



html[lang="ar"] body {
    direction: rtl;
}
html[lang="en"] body {
    direction: ltr;
}

/* إزالة أي تعريفات body متداخلة أو مكررة لاحقاً في الملف */

/* Structure principale */
.page-container {
    width: 80%; /* Increased width for larger screens */
    max-width: 1200px; /* Allow more space for larger devices */
    padding: 15px;
    background: transparent;
    border-radius: 15px;
    box-shadow: none;
    border: none;
    overflow: hidden;
}

/* Responsive rules for small screens */
/* OLD CONTAINER CODE REMOVED - REPLACED BY NEW CODE AT END OF FILE */

.article-video-container {
    max-width: 800px;
    margin: auto;
}

.article-video {
    width: 100%;
    height: auto;
    display: block;
}


.main-container {
    width: 90%;
    max-width: 1000px;
    padding: 15px;
    background: transparent;
    border-radius: 15px;
    box-shadow: none;
    border: none;
    overflow: hidden;
}


/* OLD MAIN-CONTAINER CODE REMOVED - REPLACED BY NEW CODE AT END OF FILE */


.box {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
}

.gallery-box {
    background: var(--primary-color);
    margin: 0 auto; /* Center horizontally */
}



a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


/* Conteneur du contenu principal */
.content {
    margin-top: 20px !important;
    position: relative !important;
    z-index: 2 !important;
}

/* 4. Hero Section */

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 100px;
}


.hero-titles {
    text-align: center;
}


/* 1. Reset and Base Styles */
:root {
    --primary-color: #c59100;
    --secondary-color: #d4a017;
    --text-color: #333;
    --white: #ffffff;
    --black: #000;
    --transition: all 0.3s ease;
}


/* 2. Main Wrapper */
.main-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.747);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Titres et textes */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', Arial, sans-serif;
    color: #c59100;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 1px 2px rgba(197, 145, 0, 0.2);
}

h1 { font-size: 2.5em; }
h2 { font-size: 2em; }
h3 { font-size: 1.8em; }
h4 { font-size: 1.5em; }




@media (max-width: 768px) {
    h1 { font-size: 1.8em; }
    h2 { font-size: 1.5em; }
    h3, h4 { font-size: 1.2em; }

    .box, .section-box {
        padding: 15px;
        margin: 10px 0;
    }
}


/* About and Sections */
-box {
    padding: 40px 20px;
    background-color: white;
    margin: 20px 200px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}


/* Articles Section */
.article-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    justify-content: center;
}

.article-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    max-width: 300px;
    text-align: center;
}

.article-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.article-description {
    margin-top: 10px;
    color: #555;
    font-size: 14px;
    text-align: center;
}

.articles-section {
    margin-bottom: 20px;
    padding: 20px;
    border-bottom: 1px solid #ccc;
}

.article-title {
    font-size: 1.5em;
    color: #c59100;
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(197, 145, 0, 0.2);
}


/* Gallery Section */
.section-box.gallery-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 224, 138, 0.1) 50%, rgba(255, 255, 255, 0.95) 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(197, 145, 0, 0.2);
    border: 1px solid rgba(197, 145, 0, 0.3);
    margin: 20px 0;
    width: 100%;
    box-sizing: border-box;
}

/* Gallery Item - Ensure Each Image is Centered and Takes the Whole Row */
.gallery-item {
    max-width: 800px; /* Make the width responsive */
    margin: 20px auto; /* Space between items and centered */
    text-align: center; /* Center image and description */
}

/* Gallery Item Image Styling */
.gallery-item img {
    width: 100%; /* Full width of the container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Responsive Styling */
@media (max-width: 768px) {
    .gallery-item {
        max-width: 95%; /* Adjust max width for small screens */
    }
}


.gallery-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #c59100;
    text-shadow: 0 2px 4px rgba(197, 145, 0, 0.3);
}


/* Image Description */
.image-description {
    padding: 10px 0; /* Small space between description and image */
    color: #333; /* Dark text color for contrast */
    font-size: 0.9em; /* Smaller font size */
    text-align: center; /* Center the text */
}

/* Modal for Full-Size Image */
#imageModal.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

#imageModal .modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain; /* Ensure the image fits without distortion */
}

#imageModal .close {
    position: absolute;
    right: 35px;
    top: 15px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

#imageModal .close:hover {
    color: #bbb;
}

/* Responsive Design */
@media (min-width: 1024px) {
    .gallery-item img {
        max-height: 450px; /* Allow larger images on big screens */
    }
}

@media (max-width: 768px) {
    .gallery-item {
        max-width: 95%; /* Adjust for smaller screens */
    }

    #imageModal .modal-content {
        max-width: 95%; /* Adjust modal for smaller screens */
    }
}

/* Ensure Consistent Grid Layout */
/* Consolidated images-container block */
.images-container {
    display: block;
    gap: 20px;
    padding: 10px;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

/* Wrapper for Image Handling */
.image-wrapper {
    width: 100%;
    height: auto; /* Allow automatic height adjustment */
    overflow: hidden;
    position: relative;
}

.image-wrapper img {
    width: 100%;
    max-height: 350px; /* Adjust max height */
    object-fit: cover; /* Cover the container without distortion */
    transition: transform 0.3s ease;
}

.image-wrapper img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}


.image-description {
    padding: 15px;
    text-align: center;
    color: #333;
    font-size: 0.9em;
}

/* Modal */
#imageModal.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

#imageModal .modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

#imageModal .close {
    position: absolute;
    right: 35px;
    top: 15px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

#imageModal .close:hover {
    color: #bbb;
}

/* Responsive */
@media (min-width: 1024px) {
    .image-wrapper img {
        max-height: 450px; /* تكبير الصور للشاشات الأكبر */
    }
}

    /* duplicate removed */

    .image-wrapper {
        height: 200px;
    }

    #imageModal .modal-content {
        max-width: 95%;
    }


/* General Section Styling */
.section-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 224, 138, 0.1) 50%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 15px;
    padding: 20px;
    margin: 20px auto;
    box-shadow: 0 5px 15px rgba(197, 145, 0, 0.2);
    border: 1px solid rgba(197, 145, 0, 0.3);
    max-width: 1000px; /* Limits overall width */
    transition: all 0.3s ease;
}

.section-container:hover {
    transform: translateY(-5px);
}



  @keyframes fadeInPage {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* تحسينات الأنيميشن */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.8s;
    transition-timing-function: ease-in-out;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}


/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.5s ease; /* Increased duration to 2 seconds */
}
.animate-on-scroll.visible {  
    opacity: 1;
    transform: translateY(0);
}



/* === تحسين تباعد النصوص - بدون important === */
p, .about-content p, .meroe-text p, .text-content p, .article-text, .article-description, .article-content p {
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: left;
    word-spacing: normal;
    letter-spacing: normal;
}

/* تحسين المسافات للنصوص الطويلة - بالتصميم الذهبي الأصلي */
.about-content, .text-content {
    padding: 20px;
    background: linear-gradient(135deg, #c59100 0%, #ffe08a 50%, #c59100 100%);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(197, 145, 0, 0.3);
    border: 1px solid rgba(197, 145, 0, 0.5);
    margin: 15px 0;
    color: #333;
}

/* إصلاح المسافات للشاشات الكبيرة */
@media (min-width: 1024px) {
    .about-content, .text-content {
        padding: 30px;
        margin: 20px 0;
    }
    
    .about-content p, .meroe-text p, .text-content p {
        font-size: 1.1em;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    /* تحسين حاويات About ICOMOS للشاشات الكبيرة - بالتصميم الذهبي الأصلي */
    .section-box {
        background: linear-gradient(135deg, #c59100 0%, #ffe08a 50%, #c59100 100%);
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 5px 15px rgba(197, 145, 0, 0.3);
        border: 1px solid rgba(197, 145, 0, 0.5);
        margin: 30px auto;
        max-width: 1200px;
        color: #333;
    }
}



    .main-container {
        width: 100% !important; /* عرض كامل في الموبايل */
        max-width: 100% !important; /* لا قيود على العرض الأقصى */
        padding: 5px !important; /* حشو أدنى */
        margin: 0 !important; /* إزالة الهوامش */
        border-radius: 0 !important; /* لا زوايا مدورة في الموبايل */
    }
    
    .section-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px !important; /* حشو مقلل */
        margin: 10px 0 !important; /* هوامش رأسية أدنى */
        border-radius: 0 !important;
    }
    
    .section-box {
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px !important; /* حشو مقلل */
        margin: 10px 0 !important; /* هوامش أدنى */
        border-radius: 0 !important;
    }

/* إصلاح فجوات الجسم والمحتوى */
@media (max-width: 768px) {
    body {
        padding: 0 !important; /* إزالة حشو الجسم */
        margin: 0 !important; /* إزالة هوامش الجسم */
    }
    
    .content {
        padding: 5px !important; /* حشو محتوى أدنى */
        margin: 0 !important; /* إزالة هوامش المحتوى */
    }
    
    .content-section {
        padding: 5px !important; /* حشو قسم أدنى */
        margin: 5px 0 !important; /* هوامش رأسية أدنى */
    }
}



/* إصلاح الفجوة في العربية - إزالة الفجوة اليسرى */
html[lang="ar"] body {
    direction: rtl !important;
    text-align: right !important;
    margin: 0 !important;
    padding: 0 !important;
}

@media (max-width: 768px) {
    html[lang="ar"] .page-container,
    html[lang="ar"] .main-container,
    html[lang="ar"] .section-container,
    html[lang="ar"] .section-box {
        width: 100% !important;
        margin: 0 !important;
        padding: 5px !important;
        right: 0 !important;
        left: 0 !important;
        transform: none !important;
    }
    
    html[lang="ar"] body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}


/* إصلاح شامل لمنع انزياح الصفحة */
@media (max-width: 768px) {
    * {
        box-sizing: border-box !important;
    }
   
    
    .page-container,
    .main-container,
    .section-container,
    .section-box,
    .partners-section {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 5px !important;
        border-radius: 0 !important;
        box-sizing: border-box !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }
}

/* Committees Styles */
.committees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.committee-card {
    background: linear-gradient(135deg, #c59100 0%, #ffe08a 50%, #c59100 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(197, 145, 0, 0.3);
    transition: transform 300ms ease, box-shadow 300ms ease;
    border: 2px solid #b8860b;
    position: relative;
    overflow: hidden;
    /* reveal base state */
    opacity: 0;
    transform: translateY(18px) scale(0.98);
}

.committee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    pointer-events: none;
}

.committee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(197, 145, 0, 0.4);
}

/* Subtle shine sweep overlay */
.committee-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.28) 45%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.28) 55%, transparent 100%);
    transform: translateX(-120%) skewX(-20deg);
    pointer-events: none;
    opacity: 0;
}

/* When visible in viewport */
.committee-card.is-visible {
    animation: committeeReveal 650ms ease-out forwards;
}

/* Staggered delays (13 بطاقات) */
.committees-grid .committee-card:nth-child(1)  { animation-delay: .05s; }
.committees-grid .committee-card:nth-child(2)  { animation-delay: .10s; }
.committees-grid .committee-card:nth-child(3)  { animation-delay: .15s; }
.committees-grid .committee-card:nth-child(4)  { animation-delay: .20s; }
.committees-grid .committee-card:nth-child(5)  { animation-delay: .25s; }
.committees-grid .committee-card:nth-child(6)  { animation-delay: .30s; }
.committees-grid .committee-card:nth-child(7)  { animation-delay: .35s; }
.committees-grid .committee-card:nth-child(8)  { animation-delay: .40s; }
.committees-grid .committee-card:nth-child(9)  { animation-delay: .45s; }
.committees-grid .committee-card:nth-child(10) { animation-delay: .50s; }
.committees-grid .committee-card:nth-child(11) { animation-delay: .55s; }
.committees-grid .committee-card:nth-child(12) { animation-delay: .60s; }
.committees-grid .committee-card:nth-child(13) { animation-delay: .65s; }

@keyframes committeeReveal {
    0%   { opacity: 0; transform: translateY(18px) scale(0.98); }
    60%  { opacity: 1; transform: translateY(-2px) scale(1.005); box-shadow: 0 12px 30px rgba(197,145,0,0.35); }
    100% { opacity: 1; transform: translateY(0) scale(1); box-shadow: 0 8px 25px rgba(197,145,0,0.3); }
}

/* Trigger a light sweep shortly after reveal */
.committee-card.is-visible::after {
    animation: committeeSweep 9s ease-in-out 1s infinite;
}

@keyframes committeeSweep {
    0%   { transform: translateX(-120%) skewX(-20deg); opacity: 0; }
    30%  { transform: translateX(-30%)  skewX(-20deg); opacity: .85; }
    60%  { transform: translateX(60%)   skewX(-20deg); opacity: .35; }
    100% { transform: translateX(120%)  skewX(-20deg); opacity: 0; }
}

/* Reduce-motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .committee-card,
    .committee-card::after,
    .committee-card.is-visible {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.committee-name {
    font-size: 1.4em;
    font-weight: bold;
    color: #000; /* نص داكن لكونتراست أعلى */
    margin-bottom: 15px;
    text-align: center;
    text-shadow: none; /* إزالة الوهج الذي يقلل الوضوح */
    background: rgba(255, 255, 255, 0.85); /* خلفية فاتحة خلف العنوان */
    padding: 8px 14px;
    border-radius: 12px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    backdrop-filter: blur(2px);
}

.committee-chair {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.committee-desc {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.committee-link {
    display: inline-block;
    background: #333;
    color: #DAA520;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #333;
}

.committee-link:hover {
    background: #DAA520;
    color: #333;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.3);
}

/* Fast Links Grid */
.fast-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.fast-link-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #c59100 0%, #ffe08a 50%, #c59100 100%);
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(197, 145, 0, 0.2);
    border: 2px solid #b8860b;
    font-weight: bold;
}

.fast-link-item i {
    font-size: 1.5em;
    color: #333;
    transition: transform 0.3s ease;
}

.fast-link-item span {
    font-size: 1.1em;
    font-weight: bold;
}

.fast-link-item:hover {
    transform: translateY(-5px);
    background: #333;
    color: #DAA520;
    box-shadow: 0 10px 25px rgba(197, 145, 0, 0.4);
}

.fast-link-item:hover i {
    color: #DAA520;
    transform: scale(1.2);
}

/* RTL Support for Committees */
[dir="rtl"] .committee-card {
    text-align: right;
}

[dir="rtl"] .committee-name,
[dir="rtl"] .committee-chair {
    text-align: center;
}

[dir="rtl"] .committee-desc {
    text-align: justify;
}

[dir="rtl"] .fast-link-item {
    flex-direction: row-reverse;
}

/* Responsive Design for Committees */
@media (max-width: 768px) {
    .committees-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    .committee-card {
        padding: 20px;
    }

    .committee-name {
        font-size: 1.2em;
    }

    .committee-chair {
        font-size: 1em;
    }

    .committee-desc {
        font-size: 0.9em;
    }

    .fast-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .fast-link-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .fast-link-item i {
        font-size: 1.3em;
    }

    .fast-link-item span {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .committee-card {
        padding: 15px;
    }

    .committee-name {
        font-size: 1.1em;
    }

    .committee-chair {
        font-size: 0.9em;
    }

    .committee-desc {
        font-size: 0.85em;
    }

    .fast-links-grid {
        grid-template-columns: 1fr;
    }
}




/* أنماط خاصة بصفحة اللجان للشاشات الصغيرة */
@media (max-width: 768px) {
    /* تحسين عرض شبكة اللجان */
    .committees-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }

    .committee-card {
        margin: 0;
        padding: 15px;
        border-radius: 8px;
    }

    .committee-name {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .committee-chair {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .committee-desc {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .committee-link {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    /* تحسين عرض روابط الوصول السريع */
    .fast-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
    }

    .fast-link-item {
        padding: 12px 8px;
        font-size: 0.85rem;
    }

    .fast-link-item i {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    /* تحسين المسافات والعناوين */
    .section-box {
        padding: 20px 15px;
        margin: 15px 0;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .about-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    /* تحسين شريط الأخبار */
    .news-section {
        padding: 8px 10px;
    }

    #news-text {
        font-size: 0.8rem;
    }

   
}

/* تحسينات إضافية للشاشات الصغيرة جداً */
@media (max-width: 480px) {
    .committees-grid {
        padding: 0 5px;
    }

    .committee-card {
        padding: 12px;
    }

    .fast-links-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0 5px;
    }

    .section-box {
        padding: 15px 10px;
        margin: 10px 0;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .about-content p {
        font-size: 0.85rem;
    }

  
}

@media (max-width: 768px) {
    /* Reduce title sizes for mobile */
    .section-title {
        font-size: 1.4em !important;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .committee-name {
        font-size: 1.2em !important;
        line-height: 1.2;
    }
    
    .committee-chair {
        font-size: 0.9em !important;
    }
    
    .committee-desc {
        font-size: 0.85em !important;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
  
    /* Further reduce title sizes for very small screens */
    .section-title {
        font-size: 1.2em !important;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .committee-name {
        font-size: 1.1em !important;
        line-height: 1.1;
    }
    
    .committee-chair {
        font-size: 0.8em !important;
    }
    
    .committee-desc {
        font-size: 0.75em !important;
        line-height: 1.3;
    }
    
    /* Reduce spacing for very small screens */
    .committee-card {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .committees-grid {
        gap: 15px;
    }
}

@media (max-width: 320px) {
   
 
    /* Minimal title sizes for extra small screens */
    .section-title {
        font-size: 1.1em !important;
        line-height: 1.1;
        margin-bottom: 10px;
    }
    
    .committee-name {
        font-size: 1em !important;
        line-height: 1.1;
    }
    
    .committee-chair {
        font-size: 0.75em !important;
    }
    
    .committee-desc {
        font-size: 0.7em !important;
        line-height: 1.2;
    }
    
    /* Minimal spacing for extra small screens */
    .committee-card {
        padding: 10px;
        margin-bottom: 12px;
    }
    
    .committees-grid {
        gap: 12px;
    }
    
   
}

@media screen and (max-width: 768px) {
  .hamburger-icon {
    width: 25px;
    top: 15px;
    left: 10px;
    z-index: 2002;
  }
  
  .hamburger-icon span {
    width: 25px;
    height: 3px;
    margin: 3px 0;
  }
  
  input.hamburger-checkbox {
    top: 15px;
    left: 10px;
    width: 25px;
    height: 25px;
  }
  
  .menu-pane {
    width: 80vw;
    padding: 15px;
    z-index: 2001;
  }
  
  .menu-links li {
    margin: 8px 0;
  }
  
  .menu-links li a {
    font-size: 0.9em;
    padding: 8px 12px;
  }
}

@media screen and (max-width: 480px) {
  .hamburger-icon {
    width: 22px;
    top: 10px;
    left: 8px;
    z-index: 2002;
  }
  
  .hamburger-icon span {
    width: 22px;
    height: 2px;
    margin: 2px 0;
  }
  
  input.hamburger-checkbox {
    top: 10px;
    left: 8px;
    width: 22px;
    height: 22px;
  }
  
  .menu-pane {
    width: 85vw;
    padding: 12px;
    z-index: 2001;
  }
  
  .menu-links li {
    margin: 6px 0;
  }
  
}




/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #c59100 0%, #ffe08a 50%, #c59100 100%);
    color: #333;
    padding: 50px 20px;
    margin-top: 50px;
    text-align: center;
    border-top: 3px solid #b8860b;
    box-shadow: 0 -5px 15px rgba(197, 145, 0, 0.2);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

/* ضبط أحجام عناوين ونصوص الفوتر لتوحيدها بين الصفحات */
.footer-section h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
}

.footer-section p {
    font-size: 1em;
    line-height: 1.6;
    margin: 0;
    color: #333;
}

/* توحيد نمط الفوتر للنص الأخير والحقوق */
.footer-bottom p, .copyright p {
  margin: 5px 0;
}

.footer-title {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 2px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin: 10px 0;
    color: #333;
    font-size: 1.1em;
}

.footer-links i {
    margin-right: 10px;
    color: #b8860b;
}

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid rgba(184, 134, 11, 0.3);
    color: #333;
    font-size: 1em;
    text-align: center;
}

.creator-credit {
    font-size: 0.8em;
    margin-top: 5px;
    opacity: 0.8;
    text-align: center;
}

/* دعم توافقي للفوتر الذي يستخدم footer-bottom بدلاً من copyright */
.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid rgba(184, 134, 11, 0.3);
    color: #333;
    font-size: 1em;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-section {
        min-width: auto;
        padding: 0 8px;
    }
    
    .footer {
        padding: 20px 12px;
    }
    
    .footer-title {
        font-size: 1.3em;
    }

    .footer-section h3 { font-size: 1.15em; }
    .footer-section p { font-size: 0.95em; }
}

@media (max-width: 600px) {
  .footer { padding: 16px 10px; }
  .footer-content { gap: 12px; }
  .footer-section { padding: 0 6px; }
  .footer-links li { margin: 6px 0; font-size: 1em; }
  .copyright, .footer-bottom { font-size: 0.9em; }
}


    /* تحسين الفوتر */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 15px;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .footer-section p {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .footer-bottom {
        padding: 15px;
        font-size: 0.8rem;
    }
    .footer i,
    .fast-link-item i {
        font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free', sans-serif;
        font-weight: 900;
    }