/* ===============================
   SITE HEADER (DARK GLASS)
================================ */
.site-header p{
  margin: 0  !important;
  padding: 0 !important;
  margin-top: -5px !important;
  font-size: 23px !important;
}



.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(5, 8, 18, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(30, 200, 255, 0.15);
  padding: 8px 16px;

  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header .container {
  max-width: 1400px;
}

/* ===============================
   BRAND
================================ */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff !important;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s ease;
  
}

.navbar-brand:hover {
  opacity: 0.85;
}

.logo-image {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-icon {
  font-size: 1.5rem;
  color: #1ec8ff;
}

.logo-text {
  font-weight: 700;
}

/* ===============================
   NAV LINKS
================================ */
.navbar-nav {
  gap: 25px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.95rem;
  font-weight: 400;
  padding: 0.5rem 0 !important;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: #ffffff !important;
}

/* underline */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #16a2e7, #1ec8ff);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* ===============================
   DROPDOWN
================================ */
.dropdown-toggle::after {
  margin-left: 0.45rem;
}

.dropdown-menu {
  background: rgba(10, 15, 30, 0.96);
  border: 1px solid rgba(30, 200, 255, 0.25);
  border-radius: 12px;
  padding: 8px 0;
  margin-top: 10px;
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.dropdown-item {
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 22px;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.dropdown-item:hover {
  background: rgba(30, 200, 255, 0.18);
  color: #ffffff;
}

/* ===============================
   CTA BUTTON
================================ */
.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 30px;

  background: linear-gradient(135deg, #1ec8ff, #16a2e7);
  border: none;

  color: #041018;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(30, 200, 255, 0.4);
}

.btn-contact i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.btn-contact:hover i {
  transform: translateX(4px);
}

/* ===============================
   MOBILE TOGGLER
================================ */
.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(30, 200, 255, 0.35);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}



/* ================================================================
   NAVBAR HEIGHT FIX — Gratitext
   Ensures consistent navbar height across ALL pages
   Add this to Assets/Css/Header/Main.css
================================================================ */



/* Lock the header to a fixed height on all pages */
.site-header {
  padding: 10px 16px !important;
}

/* Ensure logo image is always same height */
.logo-image {
  height: 40px !important;
  width: auto;
  object-fit: contain;
}

/* Ensure brand text never shifts height */
.navbar-brand {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* ── Responsive overrides ── */
@media (max-width: 991px) {
  .site-header {
    padding: 10px 16px !important; /* was 1rem 0 — keeps height same as desktop */
  }
}

@media (max-width: 576px) {
  .site-header {
    padding: 8px 16px !important; /* was 0.8rem 0 */
  }

  .logo-image {
    height: 36px !important;
  }
}