/* ===== Section Layout ===== */
.testimonials-section {
  padding: 80px 0;
  position: relative;
  text-align: center;
  color: #fff;
}

.section-tittle span {
  font-size: 1rem;
  letter-spacing: 1px;
  color: #ffb100;
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-tittle h2 {
  font-size: 2.2rem;
  font-weight: 700;
  /*color: #fff;*/
  margin-bottom: 50px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===== Carousel Structure ===== */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.testimonial-slide {
  display: flex;
  justify-content: center;
  flex: 0 0 100%;
  gap: 20px;
}

/* ===== Cards ===== */
.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 25px;
  width: 300px;
  color: #333;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card img {
  width: 81px;
  height: 81px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #ff5f13;
}

.testimonial-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #002b5c;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* ===== Navigation Arrows ===== */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ff5f13;
  color: #fff;
  border: none;
  font-size: 26px;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background: #e09e00;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .testimonial-slide {
    flex-wrap: wrap;
  }
  .testimonial-card {
    width: calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    width: 100%;
  }
}


.text-primary {
    color: #ff5f13 !important;
}

.email{
    text-transform: none!important;
}


.why-choose-us {
  padding: 100px 0;
  background-color: #f8f9fc;
  color: #333;
}

.why-choose-us-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.why-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.why-content {
  flex: 1;
  min-width: 320px;
}

.why-content h2 {
  font-size: 2.5rem;
  color: #002b5c;
  margin-bottom: 20px;
}

.why-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.icon {
  font-size: 28px;
  color: #ffb100;
  flex-shrink: 0;
}

.feature h4 {
  font-size: 18px;
  color: #002b5c;
  margin-bottom: 5px;
}

.feature p {
  font-size: 15px;
  color: #666;
}

/* Responsive */
@media (max-width: 992px) {
  .why-choose-us-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .why-image img {
    max-width: 100%;
  }
  .features {
    align-items: center;
  }
  .feature {
    justify-content: center;
    text-align: left;
  }
}


.services-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #002147;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

.service-card {
  background: #f8f9fb;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 340px;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card h3 {
  color: #002147;
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px;
}

.service-card p {
  color: #555;
  font-size: 15px;
  padding: 0 20px 30px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Section Wrapper */
.process-section {
  width: 100%;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
}

/* Header */
.process-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-header h2 {
  font-size: 2.5rem;
  color: #002366;
  margin-bottom: 15px;
}

.process-header p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Process Blocks */
.process-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
}

.process-block.reverse {
  flex-direction: row-reverse;
}

/* Image */
.process-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Content */
.process-content {
  flex: 1;
}

.process-content h3 {
  font-size: 1.8rem;
  color: #002366;
  margin-bottom: 15px;
}

.process-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 992px) {
  .process-block, .process-block.reverse {
    flex-direction: column;
    text-align: center;
  }

  .process-image img {
    max-width: 100%;
  }

  .process-content {
    padding-top: 20px;
  }
}

.logo img {
    width: 200px !important;
}

.footer-logo img {
    width: 200px !important;
}

.map {
  margin-bottom: 5%;
}