/* Add custom CSS styles below */ 
#main-content .s-block.s-block--fixed-banner.wide-placeholder {
  /* margin-top: 0 !important; */
   .container {
    max-width: 100%;
  }
}
#main-content .s-block.s-block--fixed-banner.wide-placeholder:first-of-type {
  margin-top: 0 !important;
}
.s-block--slider-with-bg .slider-bg::before{
  background-color: #0040874d;
  opacity: .6;
}

@media screen and (min-width: 1024px) {
  /* Your desktop styles go here */
  .s-block--slider-with-bg .text-lg{
    font-size: 2rem;
    margin-bottom: 15px;
  }

.s-block--slider-with-bg .text-sm{
  font-size: 1rem;
  line-height: 1.5rem;
  width: 324px;
}
}
.s-block--slider-with-bg .s-slider-nav-arrow svg {
  fill: #fff;
  width: 22px;
}
/*location section start */
.install-section {
  margin-block: 40px;
  display: flex;
  min-height: 612px;
  width: 100%;
  overflow: hidden;
  font-family: inherit;
}

.install-content {
  width: 50%;
  background: linear-gradient(135deg, #65b9dd 0%, #4ea7d0 55%, #3f9ac8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 60px 40px;
  text-align: center;
}

.install-content h2 {
  margin: 0;
  color: #082d69;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.4;
  font-family: "El Messiri";
}

.install-content p {
  margin: 0;
  max-width: 650px;
  color: #ffffff;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.7;
}

.branches {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.branch-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #082d69;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.branch-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.install-map {
  width: 50%;
  min-height: 612px;
}

.install-map iframe {
  width: 100%;
  height: 100%;
  min-height: 612px;
  border: 0;
  display: block;
}

@media (max-width: 991px) {
  .install-section {
    flex-direction: column;
  }

  .install-content,
  .install-map {
    width: 100%;
  }

  .install-content {
    min-height: 420px;
    padding: 50px 24px;
  }

  .install-map,
  .install-map iframe {
    min-height: 380px;
  }

  .install-content h2 {
    font-size: 32px;
  }

  .install-content p {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .install-content {
    padding: 40px 18px;
  }

  .install-content h2 {
    font-size: 26px;
  }

  .install-content p {
    font-size: 17px;
  }

  .branches {
    gap: 20px;
  }

  .branch-link {
    font-size: 15px;
  }

  .install-map,
  .install-map iframe {
    min-height: 320px;
  }
}
/*location section end */


/*site features section start*/
.features-section {
  padding: 80px 20px;
}

.features-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-box {
  background: #2a3f74;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  width: 300px;
  transition: 0.3s;
}

.feature-box:hover {
  transform: translateY(-6px);
}

.feature-box img {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

.feature-box h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-box p {
  color: #d6d6d6;
  font-size: 15px;
  line-height: 1.6;
}

/* 📱 responsive */
@media (max-width: 768px) {
  .feature-box {
    width: 100%;
    max-width: 350px;
  }
}
.features-section {
  text-align: center; /* يخلي العنوان في النص */
}

.features-title {
  text-align: center;
  font-weight: 800;
  margin: 0 auto 40px;
}
.feature-box {
  display: flex;
  flex-direction: column;
  align-items: center;   /* 🔥 توسيط أفقي */
  justify-content: center; /* 🔥 توسيط عمودي (لو فيه ارتفاع) */
  text-align: center;
}

.feature-box img {
  display: block;
  margin: 0 auto 15px; /* 🔥 توسيط + مسافة تحت */
}
/*site features section end*/