
.navbarr {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important; 
padding: 15px 33px;
    background: transparent !important;

  position: relative;
}
.nav-padding{
  padding: 15px 33px !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.logo {
  min-width: 200px;
}

.logo img {
 /* height: 40px;*/
}

.nav-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
    gap: 65px;
}

.navbarr a {
  color: #000;
  transition: color 0.3s ease;
}

/* On scroll - white navbarr, black links */
.navbarr.scrolled a {
  color: #000;
}


nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #000;

  padding: 5px 0;
      font-weight: 500;
  font-size: 15px;
}

nav ul li::after {
  content: "|";
  color: #000;
  position: absolute;
    right: -29px;
}


nav ul li:nth-child(6)::after {  content: "";
}


nav ul li:last-child::after {
  content: "";
}

nav ul li a:hover {
  color: #253c86;
}

/* Remove hover dropdown, use click-based dropdown via JS */
.dropdown-menu {
  display: none;
  position: absolute;
    top: 48px;
    left: -32px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
    min-width: 150px;
    padding: 0 !important;



}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 8px 20px;
  white-space: nowrap;
  color: #000;
}

.dropdown-menu a:hover {
  background: #0d4625;
  color: #fff;
}

.right-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.login {
  text-align: center;
  
}

.login-desktop{
color: #000;
}

.login-label {
font-size: 17px;
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 16px;
  /* border: 2px solid #e9242d; */
  border-radius: 5px;
  display: inline-block;
  /* transition: background-color 0.3s ease, color 0.3s ease; */
  
    background-color: #0d4625;
}

.login-label:hover {
  background-color: #fff !important;
  color: #000 !important; border-radius: 0px;
  /* border-color: #f48120; */
}


.hamburger {
  font-size: 28px;
  cursor: pointer;
  display: none;
}

/* Visibility controls */
.login-mobile {
  display: none;
}

.login-desktop {
  display: block;
 /* background-color: #0d4625;
 */ border-radius: 5px;
}


/*login model css*/

.login-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.login-container {
  position: absolute;
  background: white;
  display: flex;
  width: 55%;
  height: 70%;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0,0,0,0.3);
}

/* .login-left {
  flex: 1.2;
} */

.login-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .login-right {
  flex: 1;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
} */

.login-right {
    /* flex: 1; */
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    width: 70%;
    margin: 5% 0;
    padding: 0 15%;
}

.login-right .logo {
    height: auto;
    margin-bottom: 15px;
   /* width: 100%;*/
}

.login-right p{
  text-align: center;
  color: #979797;
}

.login-right h3 {
  color: #1b3581;
  margin-bottom: 10px;
}

.login-right form {
  display: flex;
  flex-direction: column;
  width: 93%;
  gap: 25px;
}

.login-right input {
  padding: 10px;
  font-size: 14px;
  border-bottom: 1px solid #ccc;
  /* border-radius: 4px; */
}


.login-right button {
  padding: 10px;
  background: #144d2e;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 25px;
}

.login_from input {
  border: 0px solid #ccc;
  outline: none;
}

.login_from input{
  border-bottom: #ccc solid 1px;
}

.login_from input:focus {
  outline: none;
  border-color: #999; /* Optional: softer focus border */
  box-shadow: none;
}

.close-btn {
    position: absolute;
    top: 0px;
    right: 20px;
    font-size: 34px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    z-index: 10;
}

.close-btn:hover {
  color: #000;
}


.navbar-nav .dropdown-menu {
    position: static  ;
    float: none;
}


/*login model End css*/

/*login model responsive css*/

/* 0px – 1000px */
@media (max-width: 1000px) {
  .login-container {
    flex-direction: column;
    width: 90%;
    height: auto;
  }

  .login-left img {
    height: 200px;
    width: 100%;
  }

  .login-right {
    width: 100%;
    margin: 30px 0;
    padding: 0 10%;
  }

  .login-right .logo {
    margin-bottom: 30px;
  }

  .close-btn {
    top: 10px;
    right: 10px;
  }
}

/* 1001px – 1100px */
@media (min-width: 1001px) and (max-width: 1100px) {
  .login-container {
    width: 80%;
  }

  .login-right {
    padding: 0 10%;
  }
}

/* 1101px – 1200px */
@media (min-width: 1101px) and (max-width: 1200px) {
  .login-container {
    width: 75%;
  }

  .login-right {
    padding: 0 10%;
  }
}

/* 1201px – 1300px */
@media (min-width: 1201px) and (max-width: 1300px) {
  .login-container {
    width: 70%;
  }

  .login-right {
    padding: 0 10%;
  }
}

/* 1301px – 1400px */
@media (min-width: 1301px) and (max-width: 1400px) {
  .login-container {
    width: 65%;
  }

  .login-right {
    padding: 0 10%;
  }
}

/* 1401px – 1500px */
@media (min-width: 1401px) and (max-width: 1500px) {
  .login-container {
    width: 60%;
  }
}

/* 1501px – 1600px */
@media (min-width: 1501px) and (max-width: 1600px) {
  .login-container {
    width: 58%;
  }
}

/* 1601px – 1700px */
@media (min-width: 1601px) and (max-width: 1700px) {
  .login-container {
    width: 56%;
  }
}

/* 1701px – 1800px */
@media (min-width: 1701px) and (max-width: 1800px) {
  .login-container {
    width: 54%;
  }
}

/* 1801px – 1900px */
@media (min-width: 1801px) and (max-width: 1900px) {
  .login-container {
    width: 52%;
  }
}


/*login model responsive end css*/

















/* ============ MOBILE STYLES ============ */
@media (max-width: 1000px) {
  .navbarr {
    flex-wrap: wrap;
    padding: 10px 20px; background:#fff !important;
  }

  .nav-wrapper {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
        background: #fff;

    display: none;
    justify-content: center;
    z-index: 9;
  }

  .nav-wrapper.active {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
    align-items: center;
  }

  nav ul li::after {
    display: none;
  }
.dropdown-menu.show {
    display: block;
    width: 100%;
}
.dropdown, .dropdown-center, .dropend, .dropstart, .dropup, .dropup-center {
    position: relative;
    width: 100%;
    text-align: center;
}

nav{width: 100%;}
.dropdown-menu a{text-align: center;}

  .hamburger {
    display: block;
  }

  .login-desktop {
    display: none;
  }

  .login-mobile {
    display: block;
    margin-top: 10px; 
  }

  .dropdown-menu {
    position: static !important;
    box-shadow: none;
    padding-left: 20px;
  }

  .logo img {
          height: 30px;
}
}
ol, ul {
    padding-left: 0rem !important;
}

dl, ol, ul {
    margin-top: 0;
    margin-bottom: 0rem !important;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.navbarr {
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.navbarr.scrolled {
  background-color: #fff !important;
  border-bottom: 1px solid #ddd;
}

.logo-default {
  display: block;
}

.logo-scrolled {
  display: none;
}

.navbarr.scrolled .logo-default {
  display: none;
}

.navbarr.scrolled .logo-scrolled {
  display: block;
}





@media only screen and (min-width: 1401px) and (max-width: 1500px) {

  .navbarr {

    padding: 15px 18px !important;
  }
  .logo img {
    height: 35px !important;
}
nav ul {

    gap: 44px !important;
}
}

@media only screen and (min-width: 1301px) and (max-width: 1400px) {

  .navbarr {

    padding: 15px 18px !important;
  }
  .logo img {
    height: 35px !important;
}
nav ul {

    gap: 44px !important;
}
}

@media only screen and (min-width: 1201px) and (max-width: 1300px) {

  .navbarr {

    padding: 15px 10px !important;
  }
  .logo img {
          height: 30px !important;
}
nav ul {

    gap: 35px !important;
}
nav ul li::after {
    content: "|";
    color: #ccc;
    position: absolute;
          right: -18px !important;
}
.login-label {
 
    padding: 4px 9px;
}

}

@media only screen and (min-width: 1101px) and (max-width: 1200px) {

  .navbarr {

    padding: 15px 10px !important;
  }
  .logo img {
          height: 26px !important;
}
nav ul {

    gap: 35px !important;
}

.login-label {
font-size: 16px;
}
nav ul li a {

    font-size: 16px !important;
}

nav ul li::after {
    content: "|";
    color: #ccc;
    position: absolute;
          right: -18px !important;
}
.login-label {
 
    padding: 4px 9px;
}


}


@media only screen and (min-width: 1001px) and (max-width: 1100px) {

  .navbarr {

    padding: 15px 10px !important;
  }
  .logo img {
          height: 27px !important;
}
nav ul {

          gap: 23px !important;
}


nav ul li::after {
    content: "|";
    color: #ccc;
    position: absolute;
          right: -18px !important;
}
.login-label {
 
    padding: 4px 9px;
}

.login-label {
font-size: 15px !important;
}
nav ul li a {

          font-size: 15px !important;
}

}