@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
/* Theme Colors */
:root {
  --primary: #d4a62a;
  --secondary: #ddab2c;
  --gold: #ddab2c;
  --navy: #142952;;
}

body{
    font-family: "DM Sans", sans-serif;
    font-size: 0.875rem;
  
}
.menu-link {
  @apply px-5 py-4 md:p-0 text-lg md:text-sm font-medium rounded-2xl md:rounded-none hover:bg-gray-800 md:hover:bg-transparent md:hover:text-amber-500 transition;
}
.bg-navy-dark {
    background-color: #0b1832;
}
.bg-amber-500{
    background: var(--secondary);

}

.text-amber-500{
    color: #f59e0b !important;
}
.text-gold {
    color: var(--gold);
}
.bg-gold{
    background: var(--gold) !important;
}

/* Hero Background */
.hero {
  height: 100vh;
  background: linear-gradient(rgb(1 23 47 / 65%), #070d2185, #0b1832), url(images/hero-bg-Cilbjqjc.jpg) center / cover no-repeat;
}

/* Join Button */
.join-btn {
  background: var(--primary);
  color: #000;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
}

/* Primary Button */
.btn-primary {
  background: var(--primary);
  color: #000;
  padding: 10px 26px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
}
.icon-box {
  width: 40px;
  height: 40px;
  background: rgba(10, 20, 40, 0.1); /* navy/10 */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box i {
  width: 20px;
  height: 20px;
  color: #0a1428; /* navy */
}

.label {
  font-weight: 600;
  font-size: 14px;
  color: #111;
  margin-bottom: 4px;
}

.value {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.email-link {
  font-size: 14px;
  color: #c8a45c; /* gold */
  transition: 0.3s;
}

.email-link:hover {
  color: #a8843f;
}
/* Outline Button */
.btn-outline {
  border: 1px solid rgba(255,255,255,0.5);
  padding: 10px 26px;
  border-radius: 8px;
  color: #fff;
  display: inline-block;
}

/* Hover Effects */
.btn-primary:hover {
  background: #e6b93a;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* Smooth section spacing consistency */
section {
  position: relative;
}

/* Subtle hover zoom for image */
img:hover {
  transform: scale(1.03);
  transition: 0.4s ease;
}

/* Smooth image hover like premium sites */
.about-img {
  transition: transform 0.5s ease;
}
.about-img:hover {
  transform: scale(1.05);
}

/* Card Style */
.card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Icon Box */
.icon-box {
  width: 50px;
  height: 50px;
  background: #f1f1f1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
  transition: 0.3s;
}

.card:hover .icon-box {
  background: rgba(212,166,42,0.2);
}

/* Text */
.card h3 {
  font-weight: 600;
  color: #0b1f3a;
  margin-bottom: 10px;
}

.card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

/* CTA Button */
.apply-btn {
  background: #0b1f3a;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}

.apply-btn:hover {
  background: #16325c;
  transform: translateY(-2px);
}

#menu a{
      color: #e2e4e9;
    font-size: 13px;
}
#menu a:hover{
    color: var(--gold);
}
#menu a.btn-primary{
    color: var(--navy);
}
html {
  scroll-behavior: smooth;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* stagger delay */
.fade-up:nth-child(1) { transition-delay: 0.1s; }
.fade-up:nth-child(2) { transition-delay: 0.2s; }
.fade-up:nth-child(3) { transition-delay: 0.3s; }
.fade-up:nth-child(4) { transition-delay: 0.4s; }