
.header, 
.header * {
  box-sizing: content-box;
}

/* ===== HEADER ===== */
.header {
    background-color: #06071B;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 180px;
    overflow: hidden;
}
.logo img {
    width: 100%;
    height: auto;
}





.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #eaeaea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

.nav-menu a:hover {
    color: #4471F5;
}


header .btn-contact {
    background: linear-gradient(to right, #4471F5, #0041FF);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
    padding: 8px 20px;
    font-size: 14px;
    text-decoration: none;
}


header .btn-contact:hover {
    box-shadow: 0 0 20px rgba(68, 113, 245, 0.7);
    transform: translateY(-2px);
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}
/* Hide desktop menu on mobile */
@media (max-width: 991px) {
  .nav-menu {
    display: none;
  }
}
/* ---------- MOBILE MENU ---------- */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #06071B;
  z-index: 9999;
  padding: 30px 25px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

/* Header (logo + close) */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-header img {
  height: 45px;
}

.close-btn {
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}

/* Links */
.mobile-links {
  list-style: none;
  margin-top: 80px;
  padding: 0;
}

.mobile-links li {
  margin-bottom: 30px;
}

.mobile-links a {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
}

/* Hamburger styling */
.menu-toggle {
  display: none;
}


header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff; /* keep same header color */
  transition: box-shadow 0.3s ease;
  z-index: 1000;
  padding: 15px 40px;
}

/* Glowing shadow when scrolled */
header.scrolled {
  box-shadow: 0 4px 15px rgba(68, 113, 245, 0.25);
}
@media (max-width: 991px) {
  .menu-toggle {
    display: block;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    margin-bottom: 6px;
  }
}
@media (max-width: 768px) {
    .header .container {
    padding: 0 10px;
}
.header {
    padding: 8px 0; 
}
.logo {
    max-width: 140px;
}

}
@media (max-width: 990px) {
   .btn-contact {
        display: none;
    }
  }
@media (min-width: 1300px) {
.header .container {
   
    margin: 0 auto;
    padding: 0 0px;
    
}
}