.hero-section {
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 10;
  max-width: 800px;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.info-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.21);
  max-width: 350px;
}
.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.info-icon {
  background: #eef5ff;
  color: #2c374a;
  font-size: 18px;
  padding: 12px;
  border-radius: 50%;
  margin-right: 15px;
}
.info-text h6 {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
}
.info-text p {
  margin: 0;
  font-size: 14px;
  color: #555;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  background: #eef5ff;
  color: #2c374a;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-icons a:hover {
  background: #2e2a4d;
  color: #fff;
}

.info-card-map {
  margin-left: 10%;
  margin-right: 5%;
  margin-top: 7% !important;
  gap: 7%;
}
@media (max-width: 768px) {
  .info-card {
    max-width: 90% !important;
    margin-bottom: 10%;
  }
}

@media (max-width: 576px) {
  .info-card {
    max-width: 90% !important;
    margin-bottom: 10%;
  }
}
