/* Key Services Section Styling */
.key-services {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
  font-weight: 700;
  margin-bottom: 2rem;
}

.title-line {
  height: 2px;
  background-color: var(--smart-orange);
  width: 80%;
  max-width: 300px;
  margin: 1rem auto 0;
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.services-image-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .service-badge {
    width: 70px !important;
    height: 70px !important;
    font-size: 0.9rem;
  }
}

@media (max-width: 767px) {
  .service-card {
    height: auto;
  }
}

/* Global Export Reach Section Styling */
.global-reach {
  background: linear-gradient(to right, #f8f9fa, #ffffff);
}

.export-map-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.map-point {
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #f58220;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(245, 130, 32, 0.4);
  z-index: 2;
}

.map-point:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(245, 130, 32, 0.6);
  z-index: -1;
  animation: pulse-ring 2s ease-out infinite;
}

.map-point.headquarters {
  background-color: #0033a0;
  width: 24px;
  height: 24px;
  box-shadow: 0 0 0 5px rgba(0, 51, 160, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
}

.map-point.headquarters:after {
  background-color: rgba(0, 51, 160, 0.6);
}

/* Map point positions (adjust according to your map image) */
.map-point.jordan {
  top: 30%;
  left: 57%;
}
.map-point.yemen {
  top: 38%;
  left: 59%;
}
.map-point.morocco {
  top: 30%;
  left: 45%;
}
.map-point.libya {
  top: 33%;
  left: 51%;
}
.map-point.sudan {
  top: 40%;
  left: 54%;
}
.map-point.usa {
  top: 25%;
  left: 20%;
}
.map-point.egypt {
  top: 33%;
  left: 55%;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  80%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.country-flag {
  font-size: 1.5rem;
}

.world-map-bg {
  opacity: 0.05;
  object-fit: cover;
}

@media (max-width: 767px) {
  .map-point {
    width: 10px;
    height: 10px;
  }

  .map-point.headquarters {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }
}
