.heading{
  width: 100%;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
  
  .contact-section {
    background-color: white;
    width: 100%;
    height: 100%;
    padding: 3rem 20px 7rem 20px;
    text-align: center;
    color: white;
  }
  
  .container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .contact-details p {
    margin: 10px 0;
    font-size: 1rem;
  }
  
  .contact-details a {
    color: #ff4343;
    text-decoration: none;
  }
  
  .contact-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    margin-top: -20px;
  }
  
  .contact-form input, .contact-form textarea {
    width: 48%;
    border: 2px solid #cca462;
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
  }
  
  .contact-form textarea {
    width: 100%;
  }
  
  .contact-form button {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    background-color: #cca462;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #8f7232;
  }
  
  @media (max-width: 768px) {
    .contact-form input {
      width: 100%;
    }
  }

  .contact-form select {
    width: 48%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    color: #717374;
    position: relative;
  }
  
  .contact-form select:focus {
    outline: none;
    border-color: #cca462;
  }
  
  .contact-form select option {
    padding: 10px;
    font-size: 1rem;
    background-color: #fff;
    color: #717374;
  }
  
  .contact-form select option:first-child {
    color: #aaa; /* Placeholder color */
  }
  
  .contact-form select::before {
    content: 'Select Option';
    color: #aaa;
    font-style: italic;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
  }
  
  .contact-form select:focus::before {
    display: none; /* Hide placeholder text when focused */
  }
  

  
.grade-section{
  width: 100%;
  height: fit-content;
  background-image: url(./../about/grade-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: fit-content;
  padding: 2rem 0;
}

.grade-section .image-container{
  width: 100%;
  height: 100%;
  max-width: 100%;

  display: flex;
  background-color: transparent;
  justify-content:space-evenly;
  align-items: center;
}

.grade-section .image-container img{
  min-width: 150px;
  width: 30%;
}


.contact-icon{
  width: 300px;
  text-align: center;
  font-size: 1.4rem;
  gap: 20px;
  color: white;
}

.contact-icon i{
  font-size: 2rem;
}

@media (max-width: 550px) {
  .grade-section .image-container{
    display: flex;
    flex-direction: column;
  }

  .grade-section{
    padding: 1rem 0;
  }

  .contact-form select{
    width: 100%;
  }
}

.locate{
  width: 100%;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.locate iframe{
width: 100%;
height: 100%;
}