* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #000;
  color: #fff;
}

a{
    text-decoration: none;
}
.hero {
  background: url("img/map-bg.jpg") center/cover no-repeat;
  min-height: 100vh;
  position: relative;
  padding: 20px;
}

.overlay {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 1;
  text-align: center;
}

.top-row,
.middle-row,
.bottom-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 220px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.card p {
  padding: 12px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  position: relative;
  z-index: 9;
      font-size: 14px;
    line-height: 20px;
}

.card .hover-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 100%,
    rgba(0, 0, 0, 0.6) 0%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card .hover-arrow {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  background: rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.card:hover img {
  transform: scale(1.05);
}

.card:hover .hover-gradient {
  opacity: 1; 
}

.card:hover .hover-arrow {
  opacity: 1; 
  transform: translate(-50%, -50%) scale(1);
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
}

.middle-row {
  align-items: flex-start;
}

.col-left,
.col-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.center-logo {
  flex: 1;
  text-align: center;
  border: 1px solid;
  border-radius: 40px;
  padding: 44px 0;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  min-height: 350px;
  display: flex;
  align-items: center;
}

.center-logo-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: auto;
  text-align: left;
}

.center-logo img {
  width: 120px;
  margin-bottom: 10px;
}

.flags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.flags img {
  width: 50px;
  height: 50px;
}

.center-logo h1 {
  font-size: 38px;
  color: #eef525;
  font-weight: bold;
  line-height: 1.4;
}

@media (max-width: 767px) {
    .overlay {
        background: #000;
        background-image: none !important;
    }
    .top-row, .middle-row, .bottom-row {
        flex-direction: column;
        align-items: center;
    }
    .center-logo-inner {
        flex-direction: column;
    }
     .center-logo h1 {
    text-align: center;
  }
}


@media (min-width: 768px) and (max-width: 1024px) {
  .hero {
    padding: 30px;
    min-height: 90vh;
  }

  .top-row,
  .middle-row,
  .bottom-row {
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .card {
    width: 180px;
  }

  .card img {
    height: 120px;
  }

  .center-logo {
    padding: 30px 0;
    border-radius: 30px;
    margin: 15px;
  }

  .center-logo-inner {
        flex-direction: column;
    }

  .center-logo img {
    width: 100px;
  }

  .center-logo h1 {
    font-size: 32px;
    text-align: center;
  }

  .flags img {
    width: 35px;
    height: 35px;
  }
}
