:root{
  --mainColor: #485f80;
  --primaryFont: "Lora", serif;
        --bg-1:#050b14;
      --bg-2:#07121f;
      --accent:#1f77e5;
      --accent-2:#2d7dff;
      --glass: rgba(255,255,255,.08);
      --glass-border: rgba(255,255,255,.14);
      --text-muted: rgba(255,255,255,.72);
}

body{
  font-family: var(--primaryFont);
}


/* NavBar css */

/* NAVBAR HEIGHT */
.navbar {
  min-height: 90px;
}

/* FIXED GLASS HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  width: 100%;

  /* Glass base */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;

  transition: 
    background 250ms ease,
    backdrop-filter 250ms ease,
    box-shadow 250ms ease,
    border-color 250ms ease;
}

/* GLASS EFFECT ON SCROLL */
.site-header.is-scrolled {
  background: rgb(255 255 255 / 65%);
  backdrop-filter: blur(6px) saturate(300%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 8px 32px rgba(31, 38, 135, 0.15);
}

/* BODY OFFSET */
body {
  padding-top: 90px;
}


/* Dropdown base */
.navbar .dropdown-menu {
  border: none;
  border-radius: 12px;
  padding: 0.75rem 0;
  min-width: 260px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  animation: dropdownFade 0.25s ease-in-out;
}

/* Dropdown animation */
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dropdown items */
.navbar .dropdown-item {
  padding: 0.65rem 1.25rem;
  font-weight: 500;
  color: #333;
  transition: background-color 0.2s ease, padding-left 0.2s ease;
}

/* Hover effect */
.navbar .dropdown-item:hover {
  background-color: #f5f7fa;
  padding-left: 1.5rem;
  color: #0d6efd; /* Bootstrap primary */
}

/* Active item */
.navbar .dropdown-item.active {
  background-color: #e9f2ff;
  color: #0d6efd;
}

/* Remove Bootstrap caret spacing */
.navbar .dropdown-toggle::after {
  margin-left: 0.4rem;
}


/* Footer CSS */


.company-info p {
  color: white;
}
footer{
      background: #063a7b;
}
.footer-link {
  color: white;
  text-decoration: none;
}

.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

footer h5,
footer h6 {
  letter-spacing: 0.5px;
}





