body {
  
  overflow-x: hidden; 
}

.logoimage{
  margin-top: 10px;
}
.hLogo{
  font-size: 2.8rem !important;
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px; /* Fixed height for the header */
  padding: 0 9%; /* Remove vertical padding since we're using fixed height */
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: 0.3s;
}

.header.sticky {
  background: var(--bg-color);
  height: 80px; /* Same fixed height for sticky state */
}

/* Optional: Ensure logo and navigation items are vertically centered */
.logoimage {
  vertical-align: middle;
}
RTL Presentation Section
.presentation[dir="rtl"] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 5%;
    font-family: 'Tahoma', 'Arial', sans-serif;
  }
  
  .presentation[dir="rtl"] .introduction {
    flex: 1;
    padding-left: 50px;
    text-align: right;
  }
  
  .presentation[dir="rtl"] .intro-text h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
  }
  
  .presentation[dir="rtl"] .intro-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .presentation[dir="rtl"] .cta-select {
    background: #f58e49;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
  }
  
  .presentation[dir="rtl"] .cta-select:hover {
    background: #e07a35;
  }
  
  .presentation[dir="rtl"] .cta-select a {
    color: white;
    text-decoration: none;
  }
  
  .presentation[dir="rtl"] .cover {
    flex: 1;
    text-align: left;
  }
  
  .presentation[dir="rtl"] .cover img {
    max-width: 100%;
    height: auto;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .presentation[dir="rtl"] {
      flex-direction: column-reverse;
      text-align: center;
    }
    
    .presentation[dir="rtl"] .introduction {
      padding-left: 0;
      padding-top: 30px;
      text-align: center;
    }
    
    .presentation[dir="rtl"] .cover {
      text-align: center;
    }
  }
  /* Navigation arrows */

  .swiper-button-next,
.swiper-button-prev {
  color: #fff !important; 
  background: rgba(0, 0, 0, 0.5); 
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px; 
}

.swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev {
  right: 10px;
  left: auto;
}
@media (max-width: 768px) {
  .adv {
    font-size: 50px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .swiper {
    width: 350px !important;
  }
}
@media (max-width: 784px) {
  .swiper {
    width: 300px !important;
  }
}
@media (max-width: 320px) {
  .swiper {
    width: 270px !important;
  }
}
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 1000;

  display: flex;
  align-items: center;
  padding: 10px 50px;
  height: 70px; /* Adjust based on your logo height */
}
/* Center content on small screens */
@media (max-width: 600px) {
  .box {
    flex-direction: column-reverse; /* text first, then image */
    align-items: center;            /* center both elements horizontally */
    text-align: center;             /* center text */
  }

  .box img {
    width: 250px !important;
    height: 229px !important;
  }

  .box div {
    padding: 0 10px;
  }
}
@media (max-width: 433px) {
  .box img {
    width: 210px !important;
    height: 200px !important;
  }
}
@media only screen and (max-width: 433px) {
  .box img {

display: flex !important;

  }
}