/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f6f8fa;
    background: white;
    color: #0f0d0d;
  }
  


  /* Contact Section */
  .contact-section {
    margin: 5px;
    text-align: center;
    border-radius: 10px;
    border:black 5px solid;
    padding: 10px;
    z-index: 10;
  }
  
  .contact-section h1 {
    font-size: 2.5rem;
    color: #FFD369; /* Yellow color */
    margin-bottom: 20px;
  }
  
  .contact-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #111010;
  }
  
  /* Contact Form */
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #75a4bc; /* Slightly lighter shade of #003366 */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 90%;
    padding: 10px 15px;
    margin: 15px 0;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  .contact-form input {
    height: 45px;
  }
  
  .contact-form textarea {
    resize: none;
    height: 100px;
  }
  
  .contact-form button {
    display: inline-block;
    width: 90%;
    padding: 15px 15px;
    background-color: #FFD369; /* Yellow color */
    color: #031527; /* Dark blue text */
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #FFD369; /* Lighter yellow */
    transform: scale(1.05);
  }
  
  /* Animation */
  .contact-form button:active {
    transform: scale(0.95);
  }
  
  /* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 5px;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {

  

.hamburger {
    display: flex;
}
  .container {
    padding: 20px;
  }

  h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

}

  


/* Contact Info */
.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.contact-info li i {
  font-size: 1.1rem;
}

/* Responsive Design */

 
@media (max-width: 768px) {
  
  
  .contact-info li {
      justify-content: center;
  }
}

  