@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.cdnfonts.com/css/montserrat");
* {
  font-family: "Montserrat", sans-serif;
}


/* AUDIO BUTTON POSITION */
.audio-btn-wrapper {
    position: absolute;
    bottom: 20px;
    right: 20px;
  
}

/* AUDIO BUTTON STYLE */
.audio-btn {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 16px;
}

/* HOVER EFFECT */
.audio-btn:hover {
    background: #02449A; /* Your hover color */
}


:root {
  --primary-blue: #004aad;
  --accent-blue: #00bfff;
}

.hero-video {
  filter: brightness(0.4);
}

.gradient-overlay {
  background: linear-gradient(
    135deg,
    rgba(0, 74, 173, 0.9) 0%,
    rgba(0, 191, 255, 0.9) 100%
  );
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 191, 255, 0.2);
}

.pulse-btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 191, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 191, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 191, 255, 0);
  }
}

.gallery-item {
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.4s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  transition: all 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.nav-blur {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.1);
}

.mobile-menu {
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.heritage-accent {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--accent-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
