
.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: 0;             /* Pushed down by height of top menu */
  background-color: #898989;
  display: flex;
  z-index: 999;          /* Slightly below top menu */  
  
}
#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
}














body,html{
    width: 100%;
    margin: 0;
    
}
/* General styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
}

.container {
  width: 50%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 15px;
  float: left;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
  background-color: #f7f9fc;
  color: #333;
}

.contact-section {
  max-width: 1300px;
  margin: 50px auto;
  padding: 10px;
}

.heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #004aad;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 70px;
  margin-left: 20px;
}

.contact-form,
.contact-info {
  flex: 1 1 45%;
  background: white;
  padding: 15px;
  border-radius: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Form Styling */
form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

input, textarea {
  width: 100%;
  padding: 12px 15px;
  margin-top: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input:focus, textarea:focus {
  border-color: #004aad;
  outline: none;
  box-shadow: 0 0 4px rgba(0, 74, 173, 0.3);
}

.btn {
  display: inline-block;
  background-color: #004aad;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background-color: #003580;
  transform: scale(1.05);
}

/* Contact Info Styling */
.contact-info .info-box {
  margin-bottom: 20px;
  
}

.info-box h3 {
  color: #004aad;
  font-size: 1rem;
  margin-bottom: 5px;
}

.info-box p {
  font-size: 0.9rem;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-form, .contact-info {
    flex: 1 1 100%;
  }
}






.map-section {
  text-align: center;
  margin: 40px auto;
  width: 90%;
}

.map-section h3 {
  margin-bottom: 15px;
  color: blue;
  font-weight: 600;
}

.map-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }
}

  










