/* -------------------------------------
   YINAA LANDING PAGE STYLES
------------------------------------- */
/* Utility colors */
.bg-primary-subtle {
  background-color: rgba(26, 54, 93, 0.1) !important;
}

.bg-secondary-subtle {
  background-color: rgba(212, 175, 55, 0.1) !important;
}

.bg-success-subtle {
  background-color: rgba(86, 154, 78, 0.1) !important;
}

.bg-warning-subtle {
  background-color: rgba(252, 186, 4, 0.1) !important;
}

.text-primary {
  color: #1A365D !important;
}

.text-secondary {
  color: #D4AF37 !important;
}

.text-success {
  color: #569A4E !important;
}

.text-warning {
  color: #FCBA04 !important;
}

/* Hero Section with Pattern */
.hero-section {
  position: relative;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 54, 93, 0.95);
  z-index: 0;
}

.hero-pattern {
  background-image: radial-gradient(rgba(250, 250, 250, 0.05) 2px, transparent 2px);
  background-size: 30px 30px;
}

/* Glassmorphism & Effects */
.backdrop-blur {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hover-scale {
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.hover-scale:hover {
  transform: scale(1.05);
  background-color: rgba(255, 255, 255, 0.1) !important;
}

.hover-float:hover {
  transform: translateY(-5px) !important;
  z-index: 10 !important;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15) !important;
}

.nav-link-hover {
  transition: color 0.2s ease;
}
.nav-link-hover:hover {
  color: #D4AF37 !important;
}

.hero-image-wrapper {
  position: relative;
  display: inline-block;
}
.hero-image-wrapper::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  background-color: rgba(26, 54, 93, 0.1);
  z-index: -1;
}

/* Tracking / Typography */
.tracking-wider {
  letter-spacing: 0.1em;
}

.lh-sm {
  line-height: 1.2 !important;
}

/* Cards hover effect */
.hover-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
}

.transform-scale-lg {
  transform: scale(1.05);
  z-index: 2;
}

@media (max-width: 992px) {
  .transform-scale-lg {
    transform: scale(1);
    z-index: auto;
  }
}
/* Footer Links */
.nav-link-footer {
  transition: color 0.2s ease;
}
.nav-link-footer:hover {
  color: #1A365D !important;
}/*# sourceMappingURL=style.css.map */