/* /* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
}

/* Header Styles */
.header-area {
  background-color: #1e3a5f;
  color:#1e3a5f;
  padding: 10px 0;
  width: 100%;
  position: initial;
}
.row-s{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding-inline:20px; */
}

.header-top {
  background: #f5f1e3;
  padding: 5px 0;
  text-align: center;
}
.logo{
  color: white;
  /* background-color: #fff; */
}
.header-info-left{
  display: flex;
}
.social-icon{
  display: flex;
  margin-left: 10px;
  align-items: center;
}
.sc{
  margin-left: 10px;
}

.header-info-left ul,
.header-info-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
}

.header-info-left ul li,
.header-info-right ul li {
  font-size: 14px;
  margin: 5px 10px;
}

.header-info-right ul li a {
  color: #1e3a5f;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.header-info-right ul li a:hover {
  color: #ffc107;
}

/* Navigation Menu */
.main-menu div ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.main-menu div ul li {
  position: relative;
  margin: 10px;
}

.main-menu div ul li a {
  color: #d1d5db;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.nvg-btn{
  padding: 25px 15px;
}

.main-menu div ul li a:hover {
  color: #fff;
  opacity: 1;
  /* transform: scale(1.1); */
}

.submenu {
  position: absolute;
  top: 100%;
  left: -20px;
  background: #343a40;
  display: none !important;
  min-width: 175px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 1;
  transform: translateY(-10px), translateX(10px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  z-index: 1000;
  text-align: center;
}



.submenu li a {
  color: #d1d5db !important;
  text-decoration: none;
  display: block;
  text-align: center;
  padding: 5px 10x !important;
  transition: background 0.3s ease-in-out;

}

.submenu li a:hover {
  color: #1E3A5F ;
  background-color: #F5F1E3;
}

 #navigation li:hover .submenu{
  display: block !important;
  opacity: 1;
 }
/* fix-icons */
.header-right{
    display: flex;
    list-style: none;
    gap: 16px;
    align-items: center !important;
    color: black;
}
.header-right li a{
    color: #d1d3db;
}
.fix-card{
  color: #1e7043;
}

/* Search Box */
.form-box {
  position: absolute;
  text-align: center;
}


.form-box input {
  padding: 10px;
  /* position: absolute; */
  /* z-index: 400; */
  /* top: 40px; */
  /* left: -220px; */
  /* max-width: 250px; */
  border: 1px solid #fff;
  color: #fff;
  border-radius: 5px;
  transition: box-shadow 0.3s ease-in-out;
  display: none;
}

.form-box input:focus {
  box-shadow: 0 0 8px rgba(255, 193, 7, 0.8);
}

.search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  /* color: #777; */
  transition: color 0.3s ease-in-out;
}

.fix-card ul li:hover {
  transform: rotateX('180deg');
  color: #ffc107;
}

/* footer css */
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

footer {
  background-color: #1e3a5f;
  color: white;
  padding: 20px 0;
}

.bot-btn {
  background-color: #f5f1e3;
  color: #1e3a5f;
  text-align: center;
  padding: 15px 0;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.bot-btn:hover {
  background-color: #444;
}
select{
  display: block;
}

.footer-link {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-around;
  /* padding: 30px; */
  width: 100%;
  
}

.foot-com-logo {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}
.about-com p{
  width: 200px;
}

.foot-com-logo select {
  padding: 8px;
  border-radius: 5px;
  border: none;
}

.quick-link {
  margin: 20px;
}
.quick-link h1{
 color:#F5F1E3;
}
.about-com{
  width: 25%;
}

.quick-link h1 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  border-bottom: 2px solid white;
  display: inline-block;
  padding-bottom: 5px;
}

.quick-link ul {
  list-style: none;
}

.quick-link ul li {
  color: #e8c547;
  margin: 10px 0;
  transition: color 0.3s;
  cursor: pointer;
}

.quick-link ul li:hover {
  color: #14a098;
}

.social-link {
  text-align: center;
}

.icon-link {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 1.5rem;
  margin-top: 10px;
}

.icon-link i {
  cursor: pointer;
  transition: transform 0.3s, color 0.3s;
}

.icon-link i:hover {
  transform: scale(1.2);
  color: #f1c40f;
}

.sub-lin {
  margin-top: 20px;
}

.sub-lin input[type="text"] {
  padding: 10px;
  width: 60%;
  border: none;
  border-radius: 5px;
}

.sub-lin input[type="button"] {
  padding: 10px 15px;
  border: none;
  background-color: #f1c40f;
  color: black;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.sub-lin input[type="button"]:hover {
  background-color: #d4ac0d;
}

.low-foot {
  text-align: center;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}


/* Responsive Design */
/* /* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
}

/* Header Styles */
.header-area {
  background-color: #1e3a5f;
  color:#1e3a5f;
  padding: 10px 0;
  width: 100%;
  position: initial;
}
.row-s{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding-inline:20px; */
}

.header-top {
  background: #f5f1e3;
  padding: 5px 0;
  text-align: center;
}
.logo{
  color: white;
  /* background-color: #fff; */
}
.header-info-left{
  display: flex;
}
.social-icon{
  display: flex;
  margin-left: 10px;
  align-items: center;
}
.sc{
  margin-left: 10px;
}

.header-info-left ul,
.header-info-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
}

.header-info-left ul li,
.header-info-right ul li {
  font-size: 14px;
  margin: 5px 10px;
}

.header-info-right ul li a {
  color: #1e3a5f;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.header-info-right ul li a:hover {
  color: #ffc107;
}

/* Navigation Menu */
.main-menu div ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.main-menu div ul li {
  position: relative;
  margin: 10px;
}

.main-menu div ul li a {
  color: #d1d5db;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.nvg-btn{
  padding: 25px 15px;
}

.main-menu div ul li a:hover {
  color: #fff;
  opacity: 1;
  /* transform: scale(1.1); */
}

.submenu {
  position: absolute;
  top: 100%;
  left: -20px;
  background: #343a40;
  display: none !important;
  min-width: 175px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 1;
  transform: translateY(-10px), translateX(10px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  z-index: 1000;
  text-align: center;
}



.submenu li a {
  color: #d1d5db !important;
  text-decoration: none;
  display: block;
  text-align: center;
  padding: 5px 10x !important;
  transition: background 0.3s ease-in-out;

}

.submenu li a:hover {
  color: #1E3A5F ;
  background-color: #F5F1E3;
}

 #navigation li:hover .submenu{
  display: block !important;
  opacity: 1;
 }
/* fix-icons */
.header-right{
    display: flex;
    list-style: none;
    gap: 16px;
    align-items: center !important;
    color: black;
}
.header-right li a{
    color: #d1d3db;
}
.fix-card{
  color: #1e7043;
}

/* Search Box */
.form-box {
  position: absolute;
  text-align: center;
}


.form-box input {
  padding: 10px;
  /* position: absolute; */
  /* z-index: 400; */
  /* top: 40px; */
  /* left: -220px; */
  /* max-width: 250px; */
  border: 1px solid #fff;
  color: #fff;
  border-radius: 5px;
  transition: box-shadow 0.3s ease-in-out;
  display: none;
}

.form-box input:focus {
  box-shadow: 0 0 8px rgba(255, 193, 7, 0.8);
}

.search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  /* color: #777; */
  transition: color 0.3s ease-in-out;
}

.fix-card ul li:hover {
  transform: rotateX('180deg');
  color: #ffc107;
}

/* footer css */
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

footer {
  background-color: #1e3a5f;
  color: white;
  padding: 20px 0;
}

.bot-btn {
  background-color: #f5f1e3;
  color: #1e3a5f;
  text-align: center;
  padding: 15px 0;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.bot-btn:hover {
  background-color: #444;
}
select{
  display: block;
}

.footer-link {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-around;
  /* padding: 30px; */
  width: 100%;
  
}

.foot-com-logo {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}
.about-com p{
  width: 200px;
}

.foot-com-logo select {
  padding: 8px;
  border-radius: 5px;
  border: none;
}

.quick-link {
  margin: 20px;
}
.quick-link h1{
 color:#F5F1E3;
}
.about-com{
  width: 25%;
}

.quick-link h1 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  border-bottom: 2px solid white;
  display: inline-block;
  padding-bottom: 5px;
}

.quick-link ul {
  list-style: none;
}

.quick-link ul li {
  color: #e8c547;
  margin: 10px 0;
  transition: color 0.3s;
  cursor: pointer;
}

.quick-link ul li:hover {
  color: #14a098;
}

.social-link {
  text-align: center;
  color: #fff;
}
.socil-link h1{
  color: #fff !important;
}

.icon-link {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 1.5rem;
  margin-top: 10px;
}

.icon-link i {
  cursor: pointer;
  transition: transform 0.3s, color 0.3s;
}

.icon-link i:hover {
  transform: scale(1.2);
  color: #f1c40f;
}

.sub-lin {
  margin-top: 20px;
}

.sub-lin input[type="text"] {
  padding: 10px;
  width: 60%;
  border: none;
  border-radius: 5px;
}

.sub-lin input[type="button"] {
  padding: 10px 15px;
  border: none;
  background-color: #f1c40f;
  color: black;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.sub-lin input[type="button"]:hover {
  background-color: #d4ac0d;
}

.low-foot {
  text-align: center;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}
#toggle-menu{
  display: none;
}

 




/* Responsive Design */
@media (max-width: 998px) {

 

  .main-menu div ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    display: block;
}


#mobile-nav {
  display: none;
  position: absolute; 
  top: 100px; /* Adjust according to header height */
  right: 0;
  width:100%;
  background-color: #1e3a5f;
  text-align: center;
  padding: 15px 0;
  z-index: 1000;
}



  #toggle-menu{
    display: block;
  }
  
  .header-info-right{
    display: none;
  }
  #mobile-nav.active {
    display: block;
  }
  .logo a img{
    width: 80px !important;
    height: 50px;
  }
  /* .submenu {
    position: relative;
    display: none;
    width: 100%;
  } */
  .footer{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .main-menu nav ul li:hover .submenu {
    display: block;
  }
}

@media (max-width: 450px) {
  .header-area, .header-top, .header-bottom {
    padding: 5px 0;
  }
  .main-menu div ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    display: block;
}
  
  .form-box input {
    width: 100%;
    padding: 8px;
  }
  .search-icon {
    right: 5px;
  }
  .header-btn {
    padding: 8px 10px;
    font-size: 12px;
  }
  .header-info-left ul li, .header-info-right ul li {
    font-size: 12px;
  }
}
@media (max-width: 1000px) {
  .footer-link {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .foot-com-logo,
  .quick-link,
  .social-link {
    width: 90%;
    margin-bottom: 20px;
  }

  .about-com p {
    width: 100%;
  }

  .icon-link {
    justify-content: center;
  }

  .sub-lin input[type="text"] {
    width: 80%;
  }
}

/* Mobile Screens (max-width: 448px) */
@media (max-width: 448px) {
  .footer-link {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .foot-com-logo,
  .quick-link,
  .social-link {
    width: 100%;
    margin-bottom: 20px;
  }

  .about-com p {
    width: 100%;
    font-size: 14px;
  }

  .icon-link {
    gap: 10px;
    font-size: 1.2rem;
  }

  .sub-lin input[type="text"] {
    width: 90%;
    margin-bottom: 10px;
  }

  .sub-lin input[type="button"] {
    width: 60%;
  }
}
