p{font-size:19px}

.germany-hero {
  background: linear-gradient(to left, #f4f4f4, #ffffff);
  padding: 4rem 1rem 2rem 1rem;
  direction: rtl;
}

.germany-hero-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}

.germany-hero-content {
  flex: 1;
  min-width: 320px;
  padding: 1rem 2rem;
}

.flag-icon {
  width: 50px;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.germany-hero-content h1 {
  color: #003399;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.germany-hero-content p {
  color: #333;
  line-height: 2;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-cta {font-size: 19px;
  background-color: #003399;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  display: inline-block;
  text-align: center;
}

.hero-cta:hover {
  background-color: #002366;
}

.hero-phone {font-size: 19px;
  background-color: #f4b942;
  color: #222;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}

.germany-hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.germany-hero-image img {
  max-width: 320px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* موبایل */
@media (max-width: 768px) {
  .germany-hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-buttons {
    align-items: center;
  }
}























.hero-germany {
  background: linear-gradient(135deg, #ffffff, #f9f9f9);
  padding: 3rem 2rem;
  direction: rtl;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fefefe;
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-text {
  flex: 1;
}

.hero-text h2 {
  font-size: 2rem;
  color: #003399;
  margin-bottom: 1rem;
}

.hero-text p {
  color: #333;
  line-height: 2;
  margin-bottom: 1.5rem;
}

.hero-button {
  background-color: #f4b942;
  color: #003399;
  padding: 0.8rem 1.6rem;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-button:hover {
  background-color: #eaa528;
}

.hero-icon img {
  max-width: 160px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .hero-text {
    width: 100%;
  }

  .hero-text h2 {
    font-size: 1.5rem;
  }

  .hero-text p {
    line-height: 1.8;
  }

  .hero-button {
    margin-top: 1rem;
    padding: 0.7rem 1.4rem;
  }

  .hero-icon {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
  }

  .hero-icon img {
    max-width: 120px;
  }
}













.start-steps {
  background-color: #f5f5f5;  /* خاکی کم رنگ برای پس‌زمینه */
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  color: #003399;  /* آبی تیره برای متن */

}

.start-steps h2 {
  font-size: 26px;
  text-align: center;
  margin-bottom: 20px;
  color: #003399;
}

.start-steps p {
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center;
  color: #333;
}

.steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.step {
  width: 30%;
  background-color: #f4b942;  /* طلایی ملایم برای جعبه‌ها */
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-10px);  /* افکت حرکت جعبه‌ها هنگام هاور */
}

.step h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #003399;  /* آبی تیره برای عنوان گام‌ها */
}

.step p {
  color: #555;
}

@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    width: 90%;
    margin-bottom: 20px;
  }

  .step h3 {
    font-size: 18px;
  }

}












/* Testimonials Section */
.testimonials-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.testimonials-section h2 {
  font-size: 32px;
  color: #003399;
  margin-bottom: 40px;
  font-weight: bold;
}

.testimonials-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.testimonial {
  background-color: #ffffff;
  width: 30%;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.testimonial p {
  color: #555;
  margin-bottom: 20px;
}

.testimonial h4 {
  font-size: 18px;
  color: #003399;
  font-weight: bold;
}

.testimonial span {
  color: #888;
}

@media (max-width: 768px) {
  .testimonials-container {
    flex-direction: column;
    align-items: center;
  }

  .testimonial {
    width: 90%;
    padding: 20px;
  }

 
  .testimonial h4 {
    font-size: 17px;
  }

 }


























/* FAQ Section */
.faq-section {
  background-color: #f4f4f4;
  padding: 60px 20px;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  margin-top: 60px;
}

.faq-section h2 {
  font-size: 32px;
  color: #003399;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.faq-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-item {
  width: 80%;
  margin-bottom: 15px;
}

.faq-question {
  background-color: #f4b942;
  color: #003399;
  border: none;
  padding: 15px;
  font-size: 18px;
  width: 100%;
  text-align: left;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: #f0a500;
}

.faq-answer {
  display: none;
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  margin-top: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* When the question is clicked (using the :checked pseudo-class on the input), show the answer */
.faq-question:after {
  content: \"+\";
  font-size: 20px;
  color: #003399;
}

.faq-item input[type=\"checkbox\"]:checked + .faq-question:after {
  content: \"-\";
}

.faq-item input[type=\"checkbox\"] {
  display: none;
}

.faq-item input[type=\"checkbox\"]:checked + .faq-question + .faq-answer {
  display: block;
}















.image-slider {padding: 50px 0 50px 0;
  overflow: hidden;
  width: 100%;
  direction: ltr;
  position: relative;
}

.image-slider::before,
.image-slider::after {
  content: \"\";
  position: absolute;
  top: 0;
  width: 30px; /* نازک‌تر شد */
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.image-slider::before {
  left: 0;

}

.image-slider::after {
  right: 0;

}

.slider-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollLeft 90s linear infinite;
  position: relative;
  z-index: 1;
}

.slider-track img {
  width: 150px;
  height: 150px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* موبایل */
@media (max-width: 500px) {
  .slider-track img {
    width: 120px;
    height: 120px;
  }
}