@font-face {
  font-family: 'suadiFont';
  src: url('../Web fonts/WOFF-2-TT/Saudi Web/SaudiWeb-Regular.woff2') format('woff2'),
  url('../Web fonts/WOFF-TT/Saudi Web/SaudiWeb-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'suadiFont';
  src: url('../Web fonts/WOFF-2-TT/Saudi Web/SaudiWeb-Bold.woff2') format('woff2'),
       url('../Web fonts/WOFF-TT/Saudi Web/SaudiWeb-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

h1, h2, h3,a,li, p,.cards-title {
  /* word-spacing: 2px;
   letter-spacing: 0.30em !important; */
}

body {
    font-family: 'suadiFont', sans-serif;
    box-sizing:border-box;
  margin: 0;
  padding: 0;
}
body.lang-en {
  font-family: 'Poppins', sans-serif;
}
/* \\\\\\\\\\\\\\\\\\\\\\\ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  box-shadow: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ;
  z-index: 1000;
}
.navbar-nav.ms-auto .nav-item:not(:last-child) {
  margin-right: 260px; /* المسافة بين الأزرار داخل الـ ul */
}

.navbar.scrolled {
    background-color: #094734; 
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* شعار الموقع */
.navbar .navbar-brand img {
  height: 50px;
  border-radius: 10%;
}

/* القوائم */
.navbar .navbar-nav {
  display: flex;
  align-items: center;
}

.navbar .nav-link {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin: 0 0.5rem;
  transition: color 0.3s;
}
.navbar .nav-link:hover { color: #1b916d; }

/* Dropdown */
.navbar .dropdown-menu {
  background-color: #F6E9D9;
  border: none;
}
.navbar .dropdown-item {
  color: #823848;
  transition: background-color 0.3s, color 0.3s;
}
.navbar .dropdown-item:hover {
  background-color: #0c5e40;
  color: #fff;
}

/* زرار تسجيل الدخول */
#nav-login {
  border-radius: 25px;
  padding: 0.4rem 1rem;
  font-weight: 500;
  background-color: #094734;
  color: #F6E9D9;
  transition: background-color 0.3s, transform 0.2s;
}
#nav-login:hover {
  background-color: #0c5e40;
  transform: translateY(-2px);
}

/* زرار تغيير اللغة */
#lang-toggle {
  margin-left: 10px;
  font-weight: 500;
  color: white;
  transition: color 0.3s;
}
#lang-toggle:hover { color: #145c32; }


/* Responsive adjustments */
@media(max-width:991.98px){
  .navbar .nav-link { font-size: 1rem; margin: 0 0.3rem; }
  #nav-login { padding: 0.3rem 0.8rem; font-size: 0.9rem; }
}

@media(max-width:767.98px){
  .navbar .nav-link { font-size: 0.95rem; }
  #nav-login { font-size: 0.85rem; }
}

@media(max-width:575.98px){
  .navbar .nav-link { font-size: 0.9rem; }
  #nav-login { font-size: 0.8rem; }
}


.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-color: #F6E9D9; /* خلفية فاتحة */
  color: #7F573C; /* النص الأساسي بني غامق */
  transition: background-image 1s ease-in-out;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 17, 12, 0.6); /* طبقة شفافة فوق الصور */
}

.hero .container {
  position: relative;
  z-index: 2;
}
#hero-title{
  color: 
 #fafdf9;
  /* background-color:#F6E9D9 ; */
border-radius: 10%;
width: fit-content;
}
#hero-text{
  font-size: 1.5rem;
width: 650px;
color: white;
/* background-color:#F6E9D9 ; */
border-radius: 10%;

}
#btn-start{
  color: white;
  background-color: #145c32;
}
@media(max-width: 991.98px){
  .hero .container {
    text-align: center;
    align-items: center;
    padding: 0 30px;
  }

  #hero-title {
    margin: 0 auto 1rem auto; /* يخلي العنوان في النص */
  }

  #hero-text {
    width: 80%;
  }
}

@media(max-width: 575.98px){
  .hero .container {
    text-align: center;
    align-items: center;
    padding: 0 15px;
  }

  #hero-title {
    margin: 0 auto 1rem auto; /* يخلي العنوان في النص */
  }

  #hero-text {
    width: 95%;
  }

  .hero .btn {
    width: 90%;
    max-width: 300px;
    margin: 10px auto; /* يخلي الأزرار كمان في النص */
  }
}

/* \\\\\\\\\\\\\\\\\\\\\\\\ */
.about-section {
  background-color: #F6E9D9; 
  background-image: url("images/WhatsApp Image 2025-09-13 at 14.04.54_58e7588b.jpg");
  background-position: top end;
  background-repeat: no-repeat;
  background-size: 120px; 
  padding: 60px 0;
}



.main-title {
  font-size: 2rem;
  font-weight: bold;
  color: #823848;
  margin-bottom: 1rem;
}

.about-text {
  font-size: 1.1rem; /* كبرت النص شوية */
  line-height: 1.8;
  color:#823848;
}

/* الصورة */
.about-section img {
  border-radius: 20%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* تنظيم الصورة والنص جنب بعض */
.about-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.about-row .about-content {
  flex: 1;
}

.about-row .about-image {
  flex: 1;
  text-align: center;
}

/* الموبايل */
@media (max-width: 767.98px) {
  .about-row {
    flex-direction: column; /* يخليهم تحت بعض */
    text-align: center;
  }

  .about-text {
    font-size: 1rem; /* أصغر شوية عشان يناسب الموبايل */
  }

  .main-title {
    font-size: 1.6rem;
  }
}



/* \\\\\\\\\\\\\\\\\\\\\\ */
.choose-us-section {
  display: flex;
  align-items: center;
  padding: 5rem 1rem;
  color: #7F573C; 
}

.choose-us-container {
  width: 100%;
}

.choose-us-content-wrapper {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* العنوان */
.choose-us-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #823848;
  text-align: right;
  margin-bottom: 2rem;
  position: relative;
}



/* شبكة الميزات */
.choose-us-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 600px;
}

/* بطاقة الميزة */
.choose-us-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #823848;
  border-radius: 16px;
  padding: 1.5rem;
  color: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.choose-us-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.choose-us-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  flex-shrink: 0;
  transition: 0.3s;
}

.choose-us-card:hover .choose-us-icon {
  transform: scale(1.1);
}

.choose-us-card-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.choose-us-card-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  color: #f0f0f0;
}

/* الصورة */
.choose-us-image {
  max-width: 500px;
  text-align: center;
  border-radius: 3%;
}

.choose-us-main-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.choose-us-main-image:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}
/* أيقونات الكروت */
.choose-us-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.choose-us-icon i {
  font-size: 2rem;          /* حجم الأيقونة */
  color: #F6E9D9;           /* لون الأيقونة */
  transition: transform 0.3s ease, color 0.3s ease; /* تأثير عند hover */
}

/* تأثير عند تحريك الماوس على الكارت */
.choose-us-card:hover .choose-us-icon i {
  transform: scale(1.2);    /* تكبير الأيقونة */
  color: #094734;           /* تغيير اللون عند hover */
}


/* متجاوب */
@media(max-width:991px){
  .choose-us-content-wrapper { flex-direction: column-reverse; align-items:center; }
  .choose-us-title { font-size:2rem; text-align:center; }
  .choose-us-features { max-width:100%; }
  .choose-us-card { flex-direction: column; text-align:center; gap:0.75rem; }
  .choose-us-card-content { text-align:center; }
  .choose-us-icon { align-self:center; }
}
/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */

.flip-cards-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 4rem 1rem;

  background: linear-gradient(rgba(226, 179, 132, 0.336), rgba(1, 73, 52, 0.9)),
              url("images/Screenshot (174).png") center/cover no-repeat;
}

.flip-cards-section h1 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color:#5a2c3c;
  margin-bottom: 3rem; /* مسافة بين العنوان والكروت */
}
.flip-card {
  background-color: transparent;
  perspective: 1000px;
  margin-bottom: 1rem;
}
.details-btn{
  text-decoration: none;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 300px;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.flip-card-front {
  /* background: #823848; */
  background: #e7a74a40;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.flip-card-front img {
  width: 80%;
  border-radius: 12px;
  margin-bottom: 10px;
}

.flip-card-back {
  /* background: #5a2c3c; */
  background: #f4cb8fa3;
  color: white;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.details-btn {
  background: #fff;
  color: #823848;
  border: none;
  padding: 0.5rem 1.5rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.details-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.card-summary {
  font-size: 0.95rem;
  color: white;
  text-align: center;
}


/* \\\\\\\\\\\\\\\\\ */
.statistics-section {
  min-height: 100vh;
  padding: 60px 20px;
  color: #7F573C;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.statistics-section::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: #7F573C; */
  z-index: 1;
}
.stat-card, .cta-section {
  position: relative;
  z-index: 2;
}

.stat-card {
  flex: 1 1 30%;
  background: #F6E9D9;
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.stat-icon {
  font-size: 48px;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}
.sponsor-icon i,
.sponsor-icon-small i {
  font-size:9rem;
  color: #e0f617; /* يمكن تغييره حسب الألوان */
}

.sponsor-icon-small i {
  font-size: 9rem;
}


.stat-card:hover .stat-icon {
  transform: scale(1.1) rotateY(180deg);
}

.stat-number { font-size: 48px; font-weight: 700; margin-bottom: 15px; }
.stat-description { font-size: 16px; color:#7F573C; }

.cta-section {
  flex: 1 1 30%;
  text-align: center;
}
.cta-logo {
  max-width: 160px;
  height: auto;
  margin: 0 auto 20px; 
  display: block;
}


.cta-title { font-size: 56px; font-weight: 700; margin-bottom: 15px; }
.cta-subtitle { font-size: 24px; margin-bottom: 30px; color: #7F573C; }

.cta-button {
  background: transparent;
  color: white;
  border: 2px solid white;
  background-color: #7F573C;
  padding: 12px 32px;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  transition: left 0.3s ease;
  z-index: -1;
}

.cta-button:hover {
  color: #823848;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.cta-button:hover::before { left: 0; }

/* استجابة */
@media(max-width:991.98px){.stat-card{flex:1 1 45%;margin-bottom:30px}.cta-section{flex:1 1 100%;margin-top:40px}.cta-title{font-size:42px}.cta-subtitle{font-size:20px}} 
@media(max-width:767.98px){.stat-card{flex:1 1 100%}.stat-number{font-size:36px}.stat-icon{width:60px;height:60px;font-size:36px}.stat-description{font-size:14px}.cta-title{font-size:36px}.cta-subtitle{font-size:18px}.cta-button{font-size:16px;padding:10px 24px}}
/* \\\\\\\\\\\\\\\\\\\\\\ */
.cta-button {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
}

.modal-content {
  border-radius: 20px;
}

.modal-header {
  border-bottom: none;
}

.modal-title {
  font-weight: 700;
  color: #094734;
}



    /* \\\\\\\\\\\\\\\ */
    .contact-section {
  background-color: #F6E9D9;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.sponsor-icon i,
.sponsor-icon-small i {
  color: #823848 !important;
}

.contact-section .btn {
  background-color: #823848;
  color: #fff;
  border: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.contact-section .btn:hover {
  background-color: #30151a;
}

.sponsor-logo {
  max-height: 70px;
  max-width: 160px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sponsor-logo:hover {
  transform: scale(1.1);
  opacity: 0.9;
}


/* ===== Modal Title ===== */
.modal-title {
  font-weight: 700;
  font-size: 1.8rem;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

/* ===== Form Labels ===== */
.modal-body label {
  font-weight: 600;
  color: #555;
}

/* ===== Input Fields ===== */
.modal-body input,
.modal-body textarea {
  border-radius: 12px;
  border: 1px solid #ccc;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.modal-body input:focus,
.modal-body textarea:focus {
  outline: none;
  border-color: #4CAF50;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

/* ===== Buttons ===== */
.modal-footer .btn-primary {
  background-color: #4CAF50;
  border-color: #4CAF50;
  border-radius: 12px;
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.modal-footer .btn-primary:hover {
  background-color: #45a049;
  border-color: #45a049;
  transform: scale(1.05);
}

.modal-footer .btn-secondary {
  border-radius: 12px;
  padding: 10px 25px;
  font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 576px) {
  .modal-dialog {
    max-width: 90%;
  }
}
/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
.sponsors-section {
  background: #fff; /* زي الصورة بالظبط */
}

.sponsors-section h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #222;
}

.sponsors-section p {
  font-size: 2rem;
  color: #666;
}

.sponsor-logo img {
  max-height: 80px;
  max-width: 180px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sponsor-logo img:hover {
  transform: scale(1.05);
  opacity: 0.85;
}



/* \\\\\\\\\\\\\\\\ */
.footer-section {
  background: #094734;
  color: #fff;
  padding: 2rem 1rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.social-icons {
  margin-bottom: 1rem;
}

.social-icons a {
  display: inline-block;
  margin: 0 5px;
  width: 36px; height: 36px;
  line-height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  text-align: center;
  transition: 0.3s;
}

.social-icons a:hover { background: rgba(255,255,255,0.3); }

.footer-col h5 {
  margin-bottom: 1rem;
  font-size: 1rem;
}
.footer-links {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin: 0.5rem 0;
}

.footer-col a {
color:rgba(255,255,255,0.8) !important;
  text-decoration: none;
  display: block;
  text-align: right;
  transition: color 0.3s;
  position: relative;
  overflow: hidden;
}


.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  display: block;
  text-align: right;
  transition: color 0.3s;
  position: relative;
  overflow: hidden;
}
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s;
}

.footer-links a:hover {
  color: white;
}
.footer-links a:hover::after {
  width: 100%;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
}


/* ===== News Section ===== */
.news-section {
  background-color: #F6E9D9;
  padding: 60px 0;
}
.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
.news-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-image { transform: scale(1.06); }
.news-date-chip {
  position: absolute;
  top: 12px; left: 12px;
  background: #094734;
  color: #fff;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
}
.news-title { color: #823848; font-weight: 700; }
.news-excerpt { color: #7F573C; }
.news-btn {
  background: #823848;
  color: #fff;
  border-radius: 10px;
}
.news-btn:hover { background: #5a2c3c; color: #fff; }

/* ===== Reports Section ===== */
.reports-section {
  background-color: #fff;
  padding: 60px 0;
}
.report-card {
  background: #F6E9D9;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.report-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.report-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: #823848;
  color: #fff;
  flex-shrink: 0;
}
.report-title { color: #094734; font-weight: 700; }
.report-desc { color: #7F573C;min-height: 35px; }
.report-download {
  background: #094734;
  color: #fff;
  border-radius: 10px;
}
.report-download:hover { background: #0c5e40; color: #fff; }

@media(max-width: 767.98px){
  .news-image-wrapper{ height: 180px; }
}


/* اجبر السلايد ياخد العرض كله */
.swiper {
    width: 100%;
}

.swiper-wrapper {
    display: flex;
    justify-content:center;
}

.swiper-slide {
    width: auto; /* أو 100% حسب التصميم */
    flex: 0 0 auto; 
}

/* لو عايز كل كارد يملأ العرض اللي مخصص له */
.news-card, .report-card {
    width: 100%;
    height: 100%;
}

.swiper-button-prev ,.swiper-button-next{
  color:#823848;
}

.swiper-pagination-bullet-active{
   background-color:#823848 !important;
}