@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

body {
  font-family: "Cairo", sans-serif !important;
  margin: 0;
  overflow-x: hidden;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: ease-in;
  animation-name: fadeIn;
}

.footer {
  position: fixed;
  bottom: 5px;
  text-align: center;
  margin: auto;
  width: 100%;
  z-index: 9;
}

.footer span {
  font-size: 12px;
  font-weight: bold;
  color: #ffffff !important;
}

@media (max-width: 767px) {
  .footer span {
    font-size: 9px;
  }
}

.images-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.image-preview {
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  margin: 5px;
  border: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.faq-section {
  padding: 60px 0;
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-slider-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.faq-slide {
  display: none;
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  min-height: 300px;
  animation: slideIn 0.5s ease-out;
}

.faq-slide.active {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.faq-question-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #002e6d;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid #002e6d;
  position: relative;
}

.faq-answer-text {
  font-size: 1.2rem;
  line-height: 2;
  color: #000000;
  text-align: justify;
}

.navigation-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding: 0 20px;
}

.nav-btn {
  background: linear-gradient(135deg, #002e6d 0%, #000000 100%);
  color: white;
  border: none;
  border-radius: 50px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.nav-btn:active {
  transform: translateY(0);
}

.nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.counter {
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item {
  background: unset !important;
  backdrop-filter: blur(10px);
  border-radius: 15px;
  margin-bottom: 0.5rem;
  display: none;
}
