* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}
/* Reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Top Menu Bar */
.top-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #D3D3D3;/* light gray */
  padding: 8px 40px;;
  font-size: 14px;
  position: fixed;       /* Keeps it on screen when scrolling */
  top: 0;                /* Sticks it to the top of the page */
  width: 100%;           /* Full width */
  height: 40px;          /* Adjust height */
  background-color: lightgray;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 1000;    
  
}

/* Contact Info (Left Side) */
.contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
}

.contact-info i {
  color: #000;
  font-size: 14px; /* small icon size */
}

/* Optional if you use your own icon images */
.small-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

/* Social Media Icons (Right Side) */
.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons a {
  color: #000;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #007bff; /* Blue hover color */
}

/* If using your own icon images */
.social-img {
  width: 18px;
  height: 18px;
}

/* Responsive for small screens */
@media (max-width: 600px) {
  .top-menu {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }
  .contact-info {
    margin-bottom: 8px;
  }
}

  .main-menu ul {
    flex-direction: column;
    align-items: center;
    margin: 0px;
  }

  .main-menu ul li {
    margin: 8px 0;
  }

#menu{
    background-color: #898989;
    width:100%;
    height: 120px;
    position: fixed;
  z-index: 1000; /* keeps it above everything else */
 position: fixed;
  top: 40px;             /* Pushed down by height of top menu */
  background-color: #898989;
  display: flex;
  z-index: 999;          /* Slightly below top menu */  
  margin-bottom: 20px;
}
#menu ul{
    list-style: none;
    display: flex; 
    align-items:center ;
}
#menu ul li{
margin: 0 ;


}
#menu ul li a{
    text-decoration: none;
    color: lightgrey;
    padding: 20px;
font-size: x-large;
    font-weight: bold;
 margin-top: 45px;
    margin-bottom: 5px;
    margin-left: 5px;


}
#menu ul li img{
    width: 80px;
    height: 75px;
    margin-top: 25px;
    margin-bottom: 5px;
    margin-left: 5px;
}
#menu ul li a:hover{
    background-color: darkgray




    
}
#footer{
    width: 100%;
    height: 280px;
    display: flex;
  background-color: gray;
    padding-left: 40px;
    padding-right: 40px;
}
.footer1{
    width: 25%;
    font-family:sans-serif ;
    text-align: center;
}
.footer1 img{
    width: 100px;
    height: 100px;
}

.footer2{
    width: 25%;
    font-family:sans-serif ;
    text-align: center;
    color: black;
    font-size: x-small;
    margin-left: 45px;
    
}
.footer2 img{
    width: 25px;
    height: 25px;

}
.footer3{
    width: 25%;
    font-family:sans-serif ;
    text-align: center;
    color: black;
    
}
.footer3 ul{list-style: none;}
    
.footer4{
    width: 25%;
    color: black; 
    font-family:sans-serif ;
    align-items: center;
    padding-left: 30px;
    
 }
.footer4 img{
    width: 20px;
    height: 20px;
}
.ft1{
    display: flex;
    align-items: center;
    gap: 10px;
}
.ft2{
    display: flex;
    align-items: center;
    gap: 10px;
    
}
.ft3{
    display: flex;
    align-items: center;
    gap: 10px;
    row-gap: 10px;
}
.ft4{
    display: flex;
    align-items: center;
    gap: 15px;
    row-gap: 10px;
}




