body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  .navbar {
     position: sticky;
     background-color: #1c2251;
     top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
        /* color: #e62f2f; */
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .nav-links {
    padding-right: 20px;
    list-style: none;
    display: flex;
    gap: 20px;
  }
  .logo img{
    margin: 0;
    padding: 0;
    display: block; /* Ensures no extra space is added */
  }
  
  .nav-links li {
    display: inline;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #fefefe;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  
  
  /* Toggle Button Styling */
  .toggle-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .toggle-btn {
      display: block;
    }
   .logo{
    height: 90px;
    width: 180px;
   }
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 50px;
      right: 0px;
      background-color: #1c2251;
      width:100%;
      border-radius: 8px;
      overflow: hidden;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links a {
      padding: 10px 15px;
      text-align: center;
    }
  }
  .contact-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 40px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.contact-info h2,
.contact-form h2 {
    color: #007bff;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-top: 10px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    margin-top: 15px;
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.contact-form button:hover {
    background-color: #0056b3;
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }
}
.footer {
    background: #1c2251;
    color: white;
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer p{
    color: #ffffff;
    font-size: 1rem;
  }
  .footer div {
    flex: 1;
    min-width: 250px;
    margin: 10px;
  }
  .footer h3 {
    margin-bottom: 15px;
  }
  .footer a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
  }
  .footer iframe {
    width: 100%;
    height: 200px;
    border: none;
  }
  @media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }
  }