.country-section {
  padding: 80px 0;
  background: #f8fbff;
  overflow: hidden;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading span {
  color: #0a61af;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-heading h2 {
  margin: 10px 0;
  font-size: 42px;
}

.section-heading p {
  max-width: 700px;
  margin: auto;
  color: #666;
}

.country-slider {
  overflow: hidden;
  position: relative;
}

.country-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scrollCountries 45s linear infinite;
}

.country-slider:hover .country-track {
  animation-play-state: paused;
}

.country-card {
  min-width: 180px;
  background: #fff;
  border-radius: 18px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.country-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(10, 97, 175, 0.25);
}

.country-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0a61af;
  margin-bottom: 15px;
  transition: 0.4s;
}

.country-card:hover img {
  transform: rotate(8deg) scale(1.1);
}

.country-card h5 {
  margin: 0;
  font-size: 17px;
  color: #222;
  font-weight: 600;
}

@keyframes scrollCountries {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .section-heading h2 {
    font-size: 30px;
  }

  .country-card {
    min-width: 150px;
  }

  .country-track {
    animation-duration: 30s;
  }
}

.country-slider {
  width: 100%;
  overflow: hidden;      /* track chhupa rahega, sirf JS/animation se scroll hoga */
  position: relative;
}

.country-track {
  display: flex;
  gap: 16px;
  width: max-content;    /* jitni cards utni width, but wrapper isse hide kar lega */
}