
/* Reset and container */
.customss-header {
  background-color: #0f74d8;
  border-bottom: 1px solid #0f74d8;
  padding: 15px 0;
  position: relative;
  z-index: 999;
  margin: -8px;
}

.customss-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.customss-logo {
  height: 68px;
  width: 100%;
}

.customss-nav {
  display: flex;
  flex-direction: row;
}

.customss-nav-list {
  list-style: none;
  display: flex;
  gap: 25px;
  padding-left: 0;
  margin: 0;
}

.customss-link {
  text-decoration: none;
  color: #ffffff;
  position: relative;
  text-transform: uppercase;
    font-size: 14px;
    font-family: Archivo, sans-serif;
    font-weight: 600;
}

.customss-link:hover {
  color: #ffc631;
}

.customss-dropdown {
  position: relative;
}

.customss-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  flex-direction: column;
  background-color: #001f3f;
  box-shadow: 0 2px 8px rgba(207, 2, 2, 0.1);
  min-width: 150px;
  z-index: 1000;
}

.customss-dropdown:hover .customss-dropdown-menu {
  display: block;
}

.customss-dropdown-link {
  padding: 10px 15px;
  text-decoration: none;
  color: #ffffff;
  display: block;
    text-transform: uppercase;
    font-size: 14px;
    font-family: Archivo, sans-serif;
    font-weight: 600;
}

.customss-dropdown-link:hover {
  background-color: #f5f5f5;
  color: #007BFF;
}

/* Toggle button for mobile */
.customss-toggle {
  display: none;
  flex-direction: column;
  border: none;
  background: none;
  gap: 4px;
}

.customss-bar {
  height: 3px;
  width: 25px;
  background-color: #4d0404;
  border-radius: 2px;
}

/* Responsive styles */
@media (max-width: 991px) {
  .customss-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    display: none;
  }

  .customss-nav.show {
    display: flex;
    background-color: #007BFF;
    height: 100vh;
  }

  .customss-nav-list {
    flex-direction: column;
    gap: 40px;
    margin-left: 2%;
    margin-top: 30px;
  }

  .customss-toggle {
    display: flex;
  }

  .customss-dropdown-menu {
    position: static;
    box-shadow: none;
    border-top: 1px solid #eee;
  }

  .customss-dropdown:hover .customss-dropdown-menu {
    display: none;
  }

  .customss-dropdown.open .customss-dropdown-menu {
    display: flex;
  }
}

@media screen and (min-width: 1366px) {
  .customss-logo {
    height: 45px; /* or whatever size fits better */
    width: auto;  /* maintain aspect ratio */
  }
}

@media (min-width: 1366px) and (max-width: 1380px) {
  .customss-nav {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
  }

  .customss-nav.show {
    display: flex;
    background-color: #007BFF;
    height: 100vh;
  }

  .customss-nav-list {
    flex-direction: column;
    gap: 40px;
    margin-left: 2%;
    margin-top: 30px;
  }

  .customss-toggle {
    display: flex;
  }

  .customss-dropdown-menu {
    position: static;
    box-shadow: none;
    border-top: 1px solid #eee;
  }

  .customss-dropdown:hover .customss-dropdown-menu {
    display: none;
  }

  .customss-dropdown.open .customss-dropdown-menu {
    display: flex;
  }
}


