/* Dark Blue Background */
.top-bar {
  background: #060a3a;
  padding: 18px 30px;
}

.header-content {
  display: flex;
  justify-content: flex-end;
}

.info-section {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
}

.review-img {
  height: 30px;
}

/* Divider */
.divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.3);
}

/* Phone Button */
.phone-btn {
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 18px;
  border-radius: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.phone-btn:hover {
  background: #fff;
  color: #060a3a;
}

/* White Bottom Nav */
.bottom-nav {
  background: #f3f3f3;
  padding: 12px 30px;
}

/* Nav Links */
.bottom-nav .nav-link {
  font-weight: 600;
  color: #111;
  margin-left: 20px;
}

.bottom-nav .nav-link:hover {
  color: #060a3a;
}

/* Left Triangle */
.header-triangle {
  background: #ffffff;
  position: relative;
}

.header-triangle::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 0;
  width: 80px;
  height: 100%;
  background: #ffffff;
  transform: skewX(-20deg);
}

.logo-img {
 
  padding: 10px;
 
}

/* Mobile */
.mobile-logo {
  height: 45px;
  display: none;
}

@media (max-width: 992px) {
  .desklogo-sec {
    display: none;
  }
  .mobile-logo {
    display: block;
  }
}


.feature-card {
  padding: 25px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: .3s;
}
.feature-card:hover {
  transform: translateY(-6px);
}
.stats {
  background: #0b0f4a;
}
.cta {
  background: linear-gradient(45deg,#0b0f4a,#1e3a8a);
}
.hero-video {
  position: relative;
  height: 90vh;
}

.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  top: 40%;
  transform: translateY(-40%);
}

.hero-video::after {
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.5);
}
.gallery-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
}

.enterprise-login {
  min-height:100vh;
  background: linear-gradient(135deg,#0b0f4a,#1e3a8a);
  display:flex;
  align-items:center;
  justify-content:center;
}

.login-box {
  background:#fff;
  padding:40px;
  border-radius:14px;
  width:100%;
  max-width:450px;
  box-shadow:0 15px 40px rgba(0,0,0,0.2);
}

.security-note {
  font-size:13px;
  color:#6c757d;
  text-align:center;
}
