body {
  background: #02132d;
}

/* NAVBAR */

.dagsal-navbar {
  /*position: fixed;*/
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 18px 0;
  background: transparent;
  transition: .4s;
}

.dagsal-navbar.scrolled {
  background: rgba(2,19,45,.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* LOGO */

.logo-img {
  width: 100px;
  height: 52px;
  object-fit: contain;
  margin-right: 12px;
  /*filter: drop-shadow(0 0 15px #0066ff);*/
}

.logo-text span {
  display: block;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.logo-text small {
  color: #4ea1ff;
  letter-spacing: 3px;
}

/* NAV LINKS */

.nav-link {
  color: #fff !important;
  font-weight: 600;
  margin: 0 12px;
  transition: .3s;
}

.nav-link:hover {
  color: #3b82f6 !important;
}

/* BUTTONS */

.nav-buttons {
  display: flex;
  gap: 12px;
}

.login-btn {
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.2);
  padding: 11px 24px;
  border-radius: 50px;
  transition: .3s;
}

.login-btn:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

.app-btn {
  color: #fff;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  background: linear-gradient( 135deg, #2563eb, #06b6d4 );
  box-shadow: 0 10px 30px rgba(37,99,235,.45);
  transition: .3s;
}

.app-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37,99,235,.6);
}

/* MEGA MENU */

.mega-parent {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 550px;
  background: rgba(7,27,66,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 25px;
  display: flex;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.mega-parent:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(10px);
}

.mega-column {
  flex: 1;
}

.mega-column h5 {
  color: #4ea1ff;
  margin-bottom: 15px;
  font-size: 16px;
}

.mega-column a {
  display: block;
  color: #d7e3ff;
  text-decoration: none;
  padding: 10px 0;
  transition: .3s;
}

.mega-column a:hover {
  color: #fff;
  transform: translateX(5px);
}

/* HERO */

.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient( rgba(0,0,0,.45), rgba(0,0,0,.45) ), url('images/banner.jpg');
  background-size: cover;
  background-position: center;
}

/* MOBILE */

@media (max-width:991px) {
  .mega-menu {
    display: none !important;
  }
}

@media (max-width:991px) {
  .nav-buttons {
    margin-top: 20px;
  }
}

@media (max-width:991px) {
  .navbar-collapse {
    background: #071b42;
    padding: 20px;
    border-radius: 20px;
    margin-top: 15px;
  }
}

@media (max-width:991px) {
  .nav-link {
    margin: 8px 0;
  }
}

