* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  
  #mainNav {
    margin-top: 1rem;
    background-color: #EABE6C;
  }
  
  .dropdown-menu :hover{
    background-color:#0A3981;
    color: white;
  
  }
  
  #mainNav .navbar-toggler {
    
    font-size: 0.75rem;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    text-transform: uppercase;
    font-weight: 700;
  }
  
  #mainNav .navbar-toggler .img {
    width: 3rem;
  }
  
  #mainNav .navbar-nav .nav-item .nav-link {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    color: #000000;
    letter-spacing: 0.0625em;
  }
  
  #mainNav .navbar-nav .nav-item .nav-link.active,
  #mainNav .navbar-nav .nav-item .nav-link:hover {
    color: #0A3981;
  }
  .internship {
    color: #0A3981;
  }
  
  
  @media (min-width: 992px) {
    #mainNav {
      margin-top: 1rem;
      padding-top: 0.5rem;
      border: none;
      transition: padding-top 0.3s ease-in-out;
    }
  
    #mainNav .navbar-brand {
      font-size: 1.5em;
      transition: font-size 0.3s ease-in-out;
    }
  
    #mainNav .navbar-brand img {
      height: 2rem;
      transition: height 0.3s ease-in-out;
    }
  
    #mainNav.navbar-shrink {
      padding-top: 1rem;
      background-color: #212529;
    }
  
    #mainNav.navbar-shrink .navbar-brand {
      font-size: 1.25em;
    }
  
    #mainNav.navbar-shrink .navbar-brand svg,
    #mainNav.navbar-shrink .navbar-brand img {
      height: 1.5rem;
    }
  
    #mainNav .navbar-nav .nav-item {
      margin-right: 1rem;
    }
  
    #mainNav .navbar-nav .nav-item:last-child {
      margin-right: 0;
    }
  }
  
  .form-container {

    max-width: 800px;
    margin: 6rem auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Form Heading */
.form-container h2 {
    text-align: center;
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
}

/* Form Group */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 16px;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.form-group input[type="file"] {
    padding: 5px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #0B2F9F;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #161D6F;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .form-container {
        padding: 15px;
        margin: 6rem 20px 20px 20px ;
    }
    
    .form-container h2 {
        font-size: 24px;
    }

    .form-group input {
        font-size: 14px;
        padding: 8px;
    }

    .submit-btn {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .form-container h2 {
        font-size: 20px;
    }
    
    .form-group input {
        font-size: 12px;
        padding: 6px;
    }

    .submit-btn {
        font-size: 14px;
    }
}
  
 /* Footer Styles */
footer {
  background-color: #EABE6C;
  color: #000000;
  margin-top: 2rem;
  padding: 2rem 1rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin-bottom: 1.5rem;
}

.footer-section h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section ul {
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #000000;
  font-size: larger;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #575757; /* Change this to your brand color */
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  border-top: 1px solid #444;
  padding-top: 1rem;
}




.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 11px;
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.call-button {
  width: 10rem;
  background-color: #D4EBF8; /* WhatsApp blue */
}

.call-button:hover {
  background-color: #2d68ff; /* blue */
}

.whatsapp-button {
  width: 10rem;
  background-color: #D4EBF8; /* WhatsApp green color */
  
}

.whatsapp-button:hover {
  background-color: #128c7e; /* Darker green */

}

.button i {
  margin-right: 10px;
}

.footer-map a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #f39c12;
  color: #222;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.footer-map a:hover {
  background-color: #d87d0e; /* Darker shade on hover */
  color: #fff;
}


  /* Responsive Design */
  @media (max-width: 768px) {
    .navbar .menu {
      display: none;
      flex-direction: column;
      background-color: #333;
      position: absolute;
      top: 60px;
      right: 10px;
      width: 200px;
      padding: 10px;
      border-radius: 8px;
    }
  
    .navbar .menu.show {
      display: flex;
    }
  
    .navbar .burger {
      display: flex;
    }
  
  
  
  }
  
  @media (max-width: 480px) {
    .navbar .menu a {
      font-size: 14px;
    }
  
  
  }
  