/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #fffdf9;
  color: #333;
} */
header {
  background: #f95f62;
  color: white;
  padding: 2rem;
  text-align: center;
}
header h1 {
  font-size: 2.5rem;
}
.banner1 {
  overflow: hidden;
  width: 300px;
  height: 200px;
}
.carousel {
  display: flex;
  animation: slide 15s infinite;
}
.carousel img {
  width: 100%;
  flex-shrink: 0;
  height: auto;
}
@keyframes slide {
  0% { transform: translateX(0%); }
  33% { transform: translateX(-100%); }
  66% { transform: translateX(-200%); }
  100% { transform: translateX(0%); }
}
 section1 {
  padding: 2rem;
  max-width: 200px;
  margin: auto;
} 
.about, .advantages, .faq {
  background-color: #f1f1f1;
  margin: 1rem 0;
  border-radius: 8px;
  padding: 1.5rem;
}
h2 {
  margin-bottom: 1rem;
  color: #f95f62;
}
.advantages ul {
  list-style-type: none;
}
.advantages li {
  margin: 0.5rem 0;
}
.faq-item {
  margin-bottom: 1rem;
}
footer {
  text-align: center;
  padding: 1rem;
  background-color: #333;
  color: white;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .accordion-header {
    background-color: #9bbaf7;
    color: white;
    cursor: pointer;
    padding: 1rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    border: none;
    text-align: left;
    transition: background 0.3s ease;
  }
  
  .accordion-header:hover,
  .accordion-header:focus {
    background-color: #5e30f8;
    outline: none;
  }
  
  .accordion-header .icon {
    font-weight: bold;
    font-size: 1.5rem;
  }
  
  .accordion-content {
    background: #ffeeee;
  padding: 15px 20px;
  font-size: 1rem;
  color: #333; /* Make sure it's not white on white */
  line-height: 1.5;
  }
  
  .accordion-content p {
    margin: 0;
  }
  

  .image-carousel-section {
    width: 100%;
    padding: 40px 10px;
    background-color: #f9f9f9;
  }
  
  .swiper {
    width: 100%;
  }
  
  .swiper-slide {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 250px; /* or any fixed width you prefer */
    height: 350px; /* or adjust based on layout */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0; /* Optional: fallback background */
    border-radius: 8px; /* Optional */
  }
  
  .swiper-slide img,
  .swiper-slide iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
    display: block;
  }

  /* For image slides */
.image-slide {
  width: 250px;
  height: 250px;
  background: #eee;
}

.image-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


  /* For video slides (landscape) */
.video-slide {
  width: 400px;
  height: 250px;
  background: #000;
}

.video-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

  
  .swiper-slide:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  /* Adjust arrow styles */
  .swiper-button-next,
  .swiper-button-prev {
    color: #333;
  }
  
  @media (max-width: 768px) {
    .swiper-slide {
      width: 70%;
    }
  }
    @media (max-width: 480px) {
        .swiper-slide {
        width: 90%;
        }
    }

/* Responsive adjustments */