/* GLOBAL */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #0f0f0f;
  color: #f4f4f4;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 140px;
}

a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffffff;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
}

/* Top Header Bar */
.top-header-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030; /* higher than navbar */
  background: linear-gradient(90deg, #3a005a, #1a0033);
  color: #fff;
  padding: 10px 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  user-select: none;
  transition: background 0.3s ease;
}
.top-header-bar .container > div {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.top-header-bar a.btn-outline-warning {
  border-color: #d4af37;
  color: #d4af37;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.top-header-bar a.btn-outline-warning:hover {
  background: linear-gradient(45deg, #d4af37, #ffdb4d);
  color: #000;
  border-color: transparent;
  box-shadow: 0 0 10px #d4af37;
}
/* 💎 LUXURY FINISHES FOR NAVBAR */

/* NAVBAR BACKGROUND POLISH */
.main-navbar {
  background: linear-gradient(90deg, #12002f, #3b0070);
  border-bottom: 2px solid #d4af37;
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(255, 215, 0, 0.1), 0 0 60px rgba(106, 13, 173, 0.1);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  position: fixed;
  top: 56px;
  left: 0;
  width: 100%;
  z-index: 1020;
  transition: background 0.4s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(6px);
}

/* ✨ LOGO HOVER POLISH */
.main-navbar .navbar-brand img {
  height: 80px;
  border-radius: 18px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.main-navbar .navbar-brand img:hover {
  transform: scale(1.07);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
}

/* 🌟 LUXURY NAV LINKS */
.nav-luxury .nav-link {
  color: #d4af37;
  font-size: 1.15rem;
  padding: 0.6rem 1.1rem;
  margin: 0 0.35rem;
  position: relative;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 0 1px rgba(212, 175, 55, 0.15);
  transition: all 0.4s ease;
}

.nav-luxury .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.25rem;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #d4af37, #ffdd55);
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(212, 175, 55, 0.6);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.nav-luxury .nav-link:hover {
  color: #fffbea;
  text-shadow: 0 0 10px #ffd700, 0 0 18px #d4af37;
}
.nav-luxury .nav-link:hover::after {
  width: 100%;
}

/* ✨ SHIMMER OVERLAY */
.main-navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(255, 215, 0, 0.06), transparent),
              radial-gradient(ellipse at bottom right, rgba(255, 255, 255, 0.04), transparent);
  z-index: 0;
  pointer-events: none;
}

/* Make sure navbar content appears above shimmer */
.main-navbar .container {
  position: relative;
  z-index: 1;
}

/* 👑 TOGGLER HIGHLIGHT FOR MOBILE */
.navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none;
  filter: brightness(1.3);
}
.navbar-toggler:hover {
  filter: brightness(1.6);
}

/* 📱 RESPONSIVE POLISH */
@media (max-width: 767.98px) {
  .nav-luxury .nav-link {
    font-size: 1rem;
    padding: 0.9rem 0;
    margin: 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.08);
    text-align: center;
  }

  .navbar-collapse {
    background: linear-gradient(90deg, #1a0033, #3a005a);
    padding: 1rem;
    margin-top: 10px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
  }
}



 /* Premium styling for the Our Core Services section */
  .services-section {
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    color: #f5f5f5;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.03em;
  }

  .services-section .container {
    max-width: 1000px;
    margin: 0 auto;
  }

  .services-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffb800; /* Gold highlight */
    border-bottom: 2px solid #ffb800;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .services-section p.intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 40px;
  }

  .services-section .service {
    margin-bottom: 40px;
  }

  .services-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #ffcc33;
  }

  .services-section ul {
    list-style-type: none;
    padding-left: 0;
  }

  .services-section ul li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.5;
    color: #eee;
  }

  .services-section ul li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: #ffb800;
    font-weight: bold;
  }

  @media (max-width: 768px) {
    .services-section h1 {
      font-size: 2.2rem;
    }
    .services-section h2 {
      font-size: 1.4rem;
    }
  }





/* Footer */
.custom-footer {
  background: linear-gradient(to right, #0a0020, #30004a);
  color: #ccc;
  padding: 1.5rem 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  user-select: none;
  border-top: 2px solid #d4af37;
}
.custom-footer a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}
.custom-footer a:hover {
  color: #ffdb4d;
}
