/* Global */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Montserrat', sans-serif; line-height:1.6; }

/*Header Section*/
.header {
  position: sticky;
  top: 0;
  z-index: 8;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-image: url(topheader.png);
  background-color: white; 
}

.logocontainer { 
  display:flex;
  width:90%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1;
  margin: auto; 
}
.nav-bar { display:flex; align-items:center; justify-content:space-between; padding: 10px 0 0 0px; }
.logo-container{
  position: relative;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  z-index: 1;
}
.logo { 
  width:100%;
  height:100%;
 }
 .nav-menu{
  display:flex;
  align-items: center;
 }
.nav-menu a { 
  display:flex;
  align-items:center;
  justify-content: center;
  font-size: 16px;
  margin:0px 10px; 
  text-decoration:none; 
  color: #333333; 
  height:100%; 
  font-weight: 600;
  padding: 23px 0px;
  border-bottom: 2px solid #f3f3f3;
}
.btn-orange { background:#f58220; color: #ffffff;border:none; padding:8px 16px; cursor:pointer; }
.nav-menu a:hover, .nav-menu a.active {
  color: #f58220; /* Brand accent orange on hover */
  border-bottom: 2px solid  #f58220;
}

.nav-menu .btn-orange {
  height: 46px;
  border-radius: 16px;
}


.footer {
  background-color: black;
  padding: 40px 20px 10px;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icons a {
  color: white;
  margin-right: 15px;
  font-size: 18px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: orange;
}


.footer-links .footer-column ul li a {
  font-weight: 600;
  font-size: 16px;
}

.footer-column {
  min-width: 200px;
  padding: 10px;
  color:wheat;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 8px;
  font-size: 11px;
  color: white;
}

.footer-column a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
}

.footer-column a:hover {
  text-decoration: none;
  color: orange;
}

.footer-bottom {
  text-align: center;
  padding: 10px;
  font-size: 11px;
  border-top: 2px solid rgba(217, 217, 217, 0.07);
  margin-top: 20px;
  font-weight: 400;
  color: white;
}
.footer-bottom span {
  font-weight: 700;
}
.footer-services {
  font-size: 16px;
  font-weight: 600;
}
.orange {
  color: orange;
}



/* Responsive */
.menu-overlay {
  height: 0;
  width: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.menu-overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.menu-overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.menu-overlay a.active, .menu-overlay a:hover, .menu-overlay a:focus {
  color: #f58220;
}

.menu-overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}
@media screen and (max-width: 450px) {
  .nav-menu{
    display:none;
  }
}

@media(max-width:768px){
  .nav-menu { display:none; }
}
@media (min-width:770px) {
  .menu-icon{
    display: none;
  }
  
  
}