* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.header {
  width: 75%;
  height: 80px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-left: 5px solid #d11516;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2%;
  position: absolute;
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  border-radius: 10px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  box-shadow: 0 12px 25px -10px rgba(255, 255, 255, 0.1);
   overflow: visible;
   z-index: 500;
}
.logo {
  width: 200px;
  height: 150px;
  border-radius: 5px;
  /* margin: 0 0 80px 0; */
  object-fit: cover;
}
.logo-image {
  width: 200px;
  height: 130px;
  /* margin: 5px 0 -30px 0; */
margin-top:10px;
}

.navbar {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.nav-list li {
  position: relative;
}
.nav-list li a {
 text-decoration: none;
  color: white;
  font-weight: 600;
  /* padding: 0 10px; */
  padding:0 7px 0 7px;
  transition: 0.3s ease;
  border-radius: 5px;
  font-size: 15px;
}
.nav-list li a:hover {
  text-underline-offset: 5px;
  color: #d11516;
}

.has-dropdown {
  position: relative;
  /* padding-bottom:10px; */
}
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
   top:calc(100% + 5px);
  left: 0;
  background: #f0f8ff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  padding: 10px 0;
  min-width: 220px;
  min-width:180px;
  z-index: 999;
  border-top: 3px solid #d11516;
  /* margin-top: 5px; */
}
.dropdown li {
  display: block;
}
.dropdown li a {
  display: block;
  padding: 10px 20px;
  color: #071952;
  font-weight: 500;
  transition: 0.3s;
}
.has-dropdown:hover .dropdown{
  display:block;
  top:100%;
}
.dropdown li a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ff3c3c;
  transform: translateX(5px);
}

.has-dropdown:hover > .dropdown,
.dropdown:hover {
  display: block;
}
.header-btn button {
  background: linear-gradient(95deg, #071952, #d11516);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 17px;
  font-weight: 600;
  padding: 15px 20px;
  cursor: pointer;
   transition: 
    background 0.35s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.header-btn button:hover {
  background: #d11516;
  color: white;
    transform: translateY(-3px);
    box-shadow:
    0 10px 25px rgba(209, 21, 22, 0.35),
    0 0 20px rgba(209, 21, 22, 0.45);
}
.header-btn i {
  margin-right: 5px;
  animation: pulse 1.3s infinite ease-in-out;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.mobile-menu-btn {
  display: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  margin-left: 15px;
   z-index: 1000;
}


.mobile-link-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
}

.mobile-main-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.mobile-drop-icon {
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}
 .mobile-nav {
    position: fixed;
    top: 0;
   
    /* top:80px; */
    /* right: -100%; */
     right: 0;
    width: 260px;
    /* width:100%; */
    height: 100%;
    background: #071222;
    padding: 20px;
    transition: 0.3s ease;
    z-index: 999;
    /* position: relative; */
      /* inset: 0; */
       transform: translateX(100%);
  transition: 0.3s ease;
  }
/* Close Button */
.mobile-close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

  /* show mobile nav when checkbox checked */
#mobile-toggle:checked ~ .mobile-nav {
  /* right: 0; */
   transform: translateX(0);
}

/* mobile nav list styles */
.mobile-nav ul {
  list-style: none;
  margin-top: 30px;
}

.mobile-nav ul li {
  margin-bottom: 18px;
}

.mobile-nav ul li a {
  color: white;
  font-size: 1.05rem;
  text-decoration: none;
}

.mobile-nav ul li a:hover {
  color: #d11516;
}

/* mobile dropdown / submenu */
.mobile-submenu {
  display: none;
  background: #050b14;
  padding: 6px 0 4px 0;
  border-radius: 6px;
  transition: max-height 0.3s ease;
}

/* open the submenu when its checkbox is checked */
.mobile-dropdown input:checked + .mobile-submenu {
  display: block;
  max-height: 500px;
}

.mobile-submenu li a {
  display: block;
  padding: 6px 0 6px 20px;
  font-size: 0.95rem;
}

.mobile-drop-label {
  color: #fff;
  cursor: pointer;
  font-size: 1.05rem;
  display: inline-block;
    cursor: pointer;
}
@media (max-width: 1610px) {
  .nav-list li a {
    font-size: 14px;
  }
}

@media (max-width: 1555px) {
  .nav-list li a {
    font-size: 11px;
  }
}

@media(max-width:1450px) {
  .header{
     width:85%; 
    
  }
}
@media (max-width:1350px) {
  .header {
    width: 100%; 
    width:90%;
    /* width:85%;  */
    height: 70px;
    /* top: 0; */
    border-radius: 0;
    /* padding: 0 70px; */
    justify-content: space-between;
 

  }
.navbar{
  /* border:1px solid orange; */
   display: flex;
  /* justify-content: center; */
 
}
  .logo {
    margin: 0;
    width: 120px;
    height: auto;
  }

  .logo-image {
    width: 140px;
    height: auto;
    margin: 0;
  }
   .nav-list li a {
    font-size: 12px;
  }
}

/* shrink font a bit if needed */
@media (max-width:1400px) {
  .nav-list li a {
    font-size: 10px;
  }
}
@media (max-width: 1179px) {
  .nav-list li a {
    font-size: 12px;
  }
}


@media (max-width:900px){
     /* .logo {
        margin-left:-50px;
     } */
    .nav-list li a{
        /* border:1px solid orange; */
        font-size: 12px;
        width:100%;
    }
}




@media (max-width: 560px) {
  .header {
    padding: 0 14px;
  }

  .logo-image {
    width: 120px;
  }
  /* .header{
    border:1px solid orange;
    z-index: 10000;
  } */
}   

/* new queires */

@media (min-width: 601px) {
  .mobile-nav {
    display: none;
  }
}




 
@media (max-width: 925px) {
  .header {
    width: 100%;
    height: 70px;
    top: 0;
    border-radius: 0;
    padding: 0 20px;
    justify-content: space-between;
  }

  .logo {
    margin: 0;
    width: 110px;
    height: auto;
  }

  .logo-image {
    width: 130px;
    height: auto;
    margin: 0;
  }

  /* IMPORTANT:
     Still show desktop nav between 600px–900px */
  .navbar {
    display: flex;
  }
}


   /* MOBILE (≤ 600px)
   SHOW HAMBURGER, HIDE DESKTOP NAV
   */
@media (max-width: 620px) {
  .header {
    padding: 0 14px;
    width: 100%;
    top: 0;
    border-radius: 0;
  }

  .logo-image {
    width: 120px;
    height: auto;
  }

  /* .header-btn {
    display: none;
  } */
}

@media (max-width:755px){
 /* show hamburger from 600px down */
  .mobile-menu-btn {
    display: block;
  }

  /* ensure mobile-nav visible type */
  .mobile-nav {
    display: block;
  }
   /* hide desktop nav & button  */
  .navbar {
    display: none;
  }
  .header-btn button {
   font-size: 13px;
      padding:15px;
      /* border:2px solid orange; */
  }

}
@media (max-width:780px){
      .nav-list li a{

        font-size:9px;
      }
}
@media (max-width:663px){
  .nav-list li a{

        font-size:8px;
      }
}

@media (max-width: 1040px) {
  .nav-list li a {
    font-size: 9px;
  }
}
 @media  (max-width:1100px) {
    .header-btn button{
      font-size: 11px;
      padding:12px;
    }
  }
  @media  (max-width:830px) {
    .header-btn button{
      font-size: 11px;
      padding:10px;
    }
  }
 