.hero {
  padding: 20px 20px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  margin-top: 30px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #055590;
}

.hero p {
  font-size: 1.1rem;
}
.text-blue{
  color: #055590 !important;
}
.location {
  font-size: 1rem;
  margin-top: 15px;
  color: #5dbadb;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

.gallery .col {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}

.video-card {
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}
video {
  width: 100%;
  height: auto;
  display: block;
}