
body {
  font-family: 'Inter', sans-serif;
    margin: 0px;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
}


.header{
    height: 40px;
    background-color: #044D25;
}
.main{
    display: flex;
}
.email{
    display: flex;
}
.email .emailimg{
    margin-top: 10px;
    margin-left: 40px;
}
.email a{
    color: white;
    text-decoration: none;
    margin-top: 14px;
}
.phone{
    display: flex;
    margin-left: 12px;
}
.phone .phoneimg{
    margin-top: 10px;
    margin-left: 40px;
    height: 20px;
    width: 20px;
}
.phone a{
    color: white;
    text-decoration: none;
    margin-top: 14px;
    margin-left: 5px;
}
.header{
    display: flex;
}
.social{
    margin-top: 10px;
    margin-left: 750px;
    margin-bottom: 12px;
}
@media (max-width: 1256px) {
  .social{
    margin-left: 650px;  
}
}
@media (max-width: 1188px) {
  .social {
      margin-left: 550px;
  }
}
@media (max-width: 1056px) {
  .social {
      margin-left: 500px;
  }
}

@media (max-width: 1056px) {
  .social {
      margin-left: 450px;
  }
}
@media (max-width: 500px) {
    .header{
        display: none;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; 
    width: 100%;
    background: transparent;
    transition: all 0.3s ease-in-out;
    z-index: 999;
}

.navbar.fixed {
    top: 0px;
    position: fixed;
    background: white;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.navbar.fixed a{
  color: #000;
}


.logoimg{
    height: 80px;
    width: 80px;
    margin-left: 80px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-style: bold;
    font-size: 18px;
    padding: 10px;
    display: block;
    margin-right: 12px;
}

.dropdown-menu, .sub-menu {
  display: none;
  position: absolute;
  background-color: white;
  color: black;
  list-style: none;
  padding: 10px;
  width: 200px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000; /* Ensures dropdown appears on top */
  border-radius: 5px; /* Rounded corners for a clean look */
}

.dropdown-menu li a, .sub-menu li a {
  color: #000;
  padding: 10px;
}

.dropdown:hover .dropdown-menu, 
.dropdown-sub:hover .sub-menu {
  display: block;
}


.sub-menu {
    left: 100%;
    top: 0;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: black;
    font-size: 24px;
    cursor: pointer;
}

.desktop-arrow {
    margin-left: auto;
    float: right;
}

.mobile-arrow {
    display: none;
}

@media (max-width: 768px) {
  .logoimg{
    margin-left: 13px;
  }
  .navbar {
    width: 100%;
}

  .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      left: 0;
      width: 93%;
      background: white;
      color: black;
      margin-top: 40px;
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }
  .nav-links li  a{
      color: black;
  }

  .nav-links.show {
    display: flex;
    width: 94.5%;
    top: 84px;
    
  }

  .dropdown-menu {
      position: static;
      width: 100%;
      box-shadow: none;
  }

  /* Ensure submenus are displayed correctly */
  .dropdown-sub > .sub-menu {
      display: none;
      position: relative; 
      width: 100%;
      color: black;
      padding-left: 20px;
      box-shadow: none;
  }

.sub-menu {
  display: none;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Show submenu when dropdown-sub is active */
.dropdown-sub.active .sub-menu {
  display: block !important; /* Ensure it overrides any inline styles */
  position: relative;
}

  .hamburger {
      display: block;
      margin-right: 20px;
  }

  .desktop-arrow {
      display: none;
  }

  .mobile-arrow {
      display: inline;
  }
}

/* Banner Styles */
.banners {
  position: relative;
  width: 100%;
  height: 400px;
  background: url('./Images/mainbanner.png') center/cover no-repeat;
}

.banners::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 25, 25, 0.5); /* Light gray overlay */
}

.banner-content h1 {
  font-size: 30px;
    color: #fff;
    position: relative;
    line-height: 1.25em;
    margin-bottom: 0;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 60px;
}

.banner-content h5{
  font-size: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .logoimg {
    margin-left: 23px;
    margin-top: 20px;
}
  
}
/* Responsive Styles */
@media (max-width: 768px) {
  .banners {
      height: 200px; /* Adjust height for smaller devices */
  }

  .banner-content h1 {
    font-size: 28px;
    margin-top: 4px;
  }
}

@media (max-width: 480px) {
  .banners {
      height: 250px; /* Adjust height for mobile devices */
  }

  .banner-content h1 {
    font-size: 25px;
    margin-top: 36px;
  }
}