/* 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: 1400px;
  margin: auto;
  padding: 0 20px;
}

.customss-logo {
  height: 95px;
  width: 100%;
  margin-top: 0px;
  margin-bottom: 0px;
}

.customss-nav {
  display: flex;
  flex-direction: row;
}

.customss-nav-list {
  list-style: none;
  display: flex;
  gap: 15px;
  padding-left: 0;
  margin: 0;
  margin-top: 5px;
}

.customss-link {
  text-decoration: none;
  color: #000000;
  position: relative;
  text-transform: uppercase;
  font-size: 13px;
  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;
}


@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {

  /* Container setup */
  .customss-header {
    padding: 20px 0;
    margin: 0;
  }

  .customss-container {
    max-width: 100%;
    /* Use full viewport width */
    width: 100vw;
    /* Ensure it fits full viewport width */
    padding: 0 32px;
    /* Add horizontal padding for content breathing */
    box-sizing: border-box;
    justify-content: space-between;
  }

  /* Logo scales proportionally */


  /* Navigation styling */
  .customss-nav {
    flex-wrap: wrap;
    /* Wrap nav items if needed */
    justify-content: flex-end;
    gap: 36px;
    width: auto;
  }

  .customss-nav-list {
    gap: 36px;
    flex-wrap: wrap;
    /* Wrap navigation links on smaller widths */
  }

  .customss-link {
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    /* Prevent nav links from wrapping mid-word */
  }

  /* Dropdown menu tweaks */
  .customss-dropdown-menu {
    min-width: 180px;
    max-width: 100%;
    /* Prevent overflow on smaller widths */
    word-break: break-word;
  }

  .customss-dropdown-link {
    padding: 14px 20px;
    font-size: 15px;
  }

  /* Hamburger/toggle button adjustments if used */
  .customss-toggle {
    display: flex;
    gap: 6px;
    cursor: pointer;
  }

  .customss-bar {
    height: 4px;
    width: 30px;
  }
}




/* 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 css for logo */
/* iPhone SE, 5, 6, 7, 8 */
@media (max-width: 375px) {
  .customss-logo {
    height: 60px;
  }
}

/* iPhone XR/12/13/14 */
@media (min-width: 376px) and (max-width: 428px) {
  .customss-logo {
    height: 70px;
  }
}

/* Android phones & small devices */
@media (min-width: 429px) and (max-width: 600px) {
  .customss-logo {
    height: 80px;
  }
}

/* iPad 10.2", iPad Air, iPad Mini (Portrait) */
@media (min-width: 601px) and (max-width: 834px) {
  .customss-logo {
    height: 90px;
  }
}

/* iPad Air, iPad 11 (Landscape) */
@media (min-width: 835px) and (max-width: 1023px) {
  .customss-logo {
    height: 95px;
  }
}

/* ✅ iPad Pro 12.9" All Browsers */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px),
only screen and (min-width: 1024px) and (max-width: 1366px) {
  .customss-logo {
    height: 110px;
  }
}

.customss-container-2{
display: flex
;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;}