/* Additional styles specific to the contact page */


.navbar {
    background-color: transparent;
    /* Initially transparent */
    color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Ensure navbar is on top */
    transition: background-color 0.3s;
    /* Smooth color transition */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Add shadow for depth */
}

.navbar.fixed {
    background-color: rgb(244, 126, 0);
    /* Change to orange on scroll */
}

.navbar img {
    height: 40px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo span {
    font-weight: bold;
    font-size: 20px;
    margin-left: 10px;
    white-space: nowrap;
    /* Prevent line break */
}

.menu {
    list-style-type: none;
    margin: 0 5%;
    padding: 0;
    display: flex;
}

.menu li {
    margin-right: 20px;
}

.menu li:last-child {
    margin-right: 0;
    /* Remove margin for the last menu item */
}

.menu a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.menu a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hamburger Menu Styles */
.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-icon div {
    width: 25px;
    height: 3px;
    background-color: #000000;
    margin: 5px;
    transition: all 0.3s ease;
}

.contact-container {
    text-align: center;
    padding: 50px 20px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

.contact-form textarea {
    height: 150px;
}

.contact-form input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

.contact-form input[type="submit"]:hover {
    background-color: #45a049;
}





.footer {
    background-color: orange;
    color: #000000;
    padding: 30px 0;
    text-align: center;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .footer-section {
    flex: 1;
    margin-bottom: 20px;
  }
  
  .footer-section h3 {
    margin-bottom: 10px;
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  ul li {
    margin-bottom: 5px;
  }
  
  ul.social-icons li {
    display: inline;
    margin-right: 10px;
    color: #000000;
  }
  
  ul.social-icons li:last-child {
    margin-right: 0;
  }

  
li a{
    color: #000000;
}
  
  .footer-bottom {
    margin-top: 20px;
  }
  
  /* Responsive styles */
  @media screen and (max-width: 768px) {
    .footer-content {
      flex-direction: column;
    }
  
    .footer-section {
      margin-bottom: 15px;
    }
  }
  
  @media screen and (max-width: 576px) {
    .footer {
      padding: 20px 0;
    }
  
    .footer-section {
      flex-basis: 100%;
    }
  }
  

@media screen and (max-width: 768px) {
    .contact-form {
        padding: 20px;
    }
}