/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Arial', sans-serif;
}

.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: #f4f4f4;
  border-bottom: 1px solid #ddd;
  position: relative;
}

/* Permet de centrer le bouton */
.center-side {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Bouton stylé */
.admin-button a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  color: #8000ff;
  text-decoration: none;
  background: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  border: 2px solid #8000ff;
  transition: background 0.3s, color 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.admin-button a:hover {
  background: #8000ff;
  color: white;
}

/* Alignement des icônes à droite */
.right-side i,
.right-side img {
  margin-left: 12px;
  cursor: pointer;
}



.top-icons a {
  margin-left: 12px;
  color: #444;
  font-size: 16px;
}
.top-icons img {
  width: 20px;
  vertical-align: middle;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo img {
  height: 60px;
}
.nav-links {
  display: flex;
  gap: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.contact-links {
  list-style: none;
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.contact-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.child_item_icon_custom {
  display: inline-block;
  width: 36px;
  height: 36px;
}

.tooltip_light {
  display: none; /* ou remplace par effet tooltip selon ton besoin */
}


.nav-links a {
  color: #595959;
  font-weight: bold;
  text-decoration: none;
}
.nav-links a:hover {
  color: #8000ff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.hamburger div {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  height: 100vh;
  background: white;
  padding: 20px;
  flex-direction: column;
  z-index: 1000;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #595959;
  text-decoration: none;

}
.close-btn {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  
}
.mobile-menu a:hover{
    color: #8000ff;
}
/* Responsive */
@media (max-width: 991px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}


/* ✅ Super Slider Styles */
.super-slider {
  position: relative;
  width: 100%;
  height: 600px; /* ✅ كبرناها من 400 إلى 600 */
  overflow: hidden;
  background: #000;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.slide.active {
  display: block;
}

/* ✅ Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  background: rgba(0,0,0,0.4);
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 10px 15px;
  border-radius: 50%;
}
.slider-arrow.left {
  left: 15px;
}
.slider-arrow.right {
  right: 15px;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .super-slider {
    height: 250px;
  }
  .slider-arrow {
    font-size: 30px;
  }
}






.foundation-section {
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
}

.foundation-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #333;
}

.foundation-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.stat-card {
  max-width: 300px;
  text-align: center;
}

.stat-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.stat-card h1 {
  font-size: 35px;
  color: #000000;
  margin: 15px 0 8px;
}

.stat-card p {
  font-size: 20px;
  color: #696969;
  line-height: 1.4;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .stat-card {
    max-width: 80%;
  }
}
.presence-section-with-wave {
  position: relative;
  background: #bcbcbc;
  padding-bottom: 100px;
}

.presence-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  z-index: 2;
  position: relative;
}

.presence-left {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  text-align: center;
}
.presence-left h2 {
  font-size: 28px;
  margin-bottom: 10px;
}
.presence-left p {
  font-size: 16px;
}
.presence-left img {
  width: 100%;
  margin-top: 20px;
}

.presence-map {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}
.map-container {
  position: relative;
}
.map-image {
  width: 100%;
  border-radius: 10px;
}

.map-point {
  position: absolute;
  width: 15px;
  height: 15px;
  background: red;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px red;
}

/* ✅ موجة SVG */
.wave-divider {
  position: absolute;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 100px;
}

/* Responsive */
@media (max-width: 768px) {
  .presence-content {
    flex-direction: column;
    align-items: center;
  }
}
.tooo{
width: 100%;


}




.center-sectione {
  display: flex;
  justify-content: center; /* أفقي */
  align-items: center;     /* عمودي */
  height: 20vh;           /* ارتفاع الشاشة بالكامل */
  text-align: center;
}
.foundation-titlee {
  font-size: 32px;
  font-weight: bold;
  color: #333;
}
.news-section {
  padding: 60px 20px;
  background: #ffffff;
}

.foundation-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #222;
}

.news-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.news-card {
  flex: 1 1 350px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.news-card.no-shadow {
  box-shadow: none;
}

.news-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.news-body {
  padding: 20px;
}

.news-title a {
  font-size: 20px;
  color: #000000;
  font-size: larger;
  text-decoration: none;
}


.news-intro {
  margin: 15px 0;
  color: #6f6f6f;
  font-size: large;
}

.news-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.news-date {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.read-more-btn {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #8000ff;
  color: #8000ff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
}

.read-more-btn:hover {
  background: #8000ff;
  color: #fff;
}
.news-title-center {
  text-align: center;
  margin: 50px 0;
}

.news-title-center h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
}
.qqw{
width: 100%;

}
.news-section{

    background-color: white;
}



.super-carousel {
  position: relative;
  padding: 20px;
  overflow: hidden;
  background: #ffffff;
}

.carousel-title {
  text-align: center;
  margin-bottom: 15px;
}

.carousel-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-image {
  height: 200px;
  width: auto;
  transition: transform 0.3s;
}

.carousel-image:hover {
  transform: scale(1.05);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  background: rgba(255, 255, 255, 0.4);
  color: #125ad6;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 10;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}








.custom-footer {
  background-color: #f7f7f7;
  color: #333;
  padding: 40px 20px;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-column {
  flex: 1 1 300px;
}

.footer-column h3 {
  margin-bottom: 10px;
  font-size: 30px;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  margin: 8px 0;
}

.footer-contact a {
  text-decoration: none;
  color: #333;
}


.footer-contact a:hover{

color: #8000ff;

}

.footer-map {
  margin-top: 40px;
  font-size: x-large;
}

.footer-bottom {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid #ccc;
  padding-top: 15px;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 15px;
  padding: 0;
}

.footer-links li a {
  text-decoration: none;
  color: #333;
}

/* Floating Button */
.fab-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.fab-button {
  background-color: #ff0022;
  color: white;
  font-size: 30px;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.fab-options {
  list-style: none;
  padding: 0;
  position: absolute;
  bottom: 70px;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.fab-options.active {
  display: flex;
}

.fab-options li a {
  background: #fff;
  padding: 10px 15px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.fab-options li a:hover {
  background-color: #f0f0f0;
}

.fab-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
