.footer-main2 {
  flex: 1;
  padding: 20px 0px;
}

.content-wrapper2 {
  display: flex;
  justify-content: space-between;
  width: 100%;

}


.school-info2 {
  display: flex;
  width: 50%;
  flex-direction: column;
  align-items: left;
  text-align: left;
}

.logo-container {
  margin-bottom: 20px;
}

.logo {

  width: 45px;
  height: 45px;


}

.school-name {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.school-tagline {
  font-size: 0.9rem;
}

.school-title2 {
  font-family: Golos Text;
  font-weight: 500;
  font-size: 24px;
  line-height: 32.5px;
  letter-spacing: 5%;
  color: var(--blackish);

  margin-bottom: 10px;
}

.location2 {
  display: flex;
  align-items: left;
  gap: 8px;
  margin-bottom: 20px;
  width: 100%;
}

.location2 span {
  font-family: Golos Text;
  font-weight: 400;
  font-size: 24px;
  line-height: 32.5px;
  letter-spacing: 0%;
  color: var(--blackish);
  text-align: left;
  width: 100%;

}

.location-icon {
  color: #f8a13f;
}


.contact-items {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;


}

.contact-form-container {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;

}
.modal-contact-form-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.contact-item2 {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--blackish);
  padding: 8px 8px 8px 0px;


  font-family: Golos Text;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0%;
  vertical-align: middle;

}

.contact-icon {
  min-width: 24px;
}

.divider {
  width: 100%;
  max-width: 400px;
  height: .5px;
  background-color:var(--yellow);
  margin: 20px 0;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: white;
  color: #2a56a5;
  border-radius: 50%;
  text-decoration: none;
}

/* Contact form section */
.contact-form2 {
  background-color: var(--blue);
  color: #333;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group2 {
  margin-bottom: 15px;

}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


.form-group2 label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 5px;
  width: fit-content;
  font-family: Golos Text;
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  letter-spacing: 0%;
  color: #FFFFFF;


}

.required::after {
  content: " *";
  color: #FFFFFF;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  /* border: 1px solid #ddd; */
  border-radius: 5px;
  font-size: 1rem;
  border: none;
}

.phone-input {
  display: flex;
}

.country-code {
  display: flex;
  align-items: center;
  padding: 0 10px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 5px 0 0 5px;
}

.flag {
  width: 20px;
  margin-right: 5px;
}

.phone-input input {
  border-radius: 5px;
}

.submit-btn2 {
  background-color: #FFFFFF;
  color: var(--blue);
  border: none;
  border-radius: 5px;
  padding: 15px 35px;

  cursor: pointer;
  font-family: Golos Text;
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 1px;
  text-align: center;
  vertical-align: middle;

  margin: 20px auto 0;
}




/* Footer */
footer2 {
  background-color: #FFFFFF;
  /* padding: 15px 15px 0px 15px; */
  text-align: center;

}

.marquee {
  background-color: var(--darkblue);
  font-family: Golos Text;
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  letter-spacing: 0%;
  text-align: center;
  color: #FFFFFF;
  padding: 10px 4px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  


}

.upload {
  height: 211px;
  background-color: #FFFFFF;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 25px;
}

.upload-icon {
  width: 44px;
  height: 36px;
}

.upload span {
  font-family: Golos Text;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #B3B3B3;


}

input[type="file"] {
  display: none;
}

.custom-file-upload {
  display: inline-block;
  padding: 10px 50px;
  background-color: #B3B3B3;
  color: #FFFFFF;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  text-align: center;
  font-family: Golos Text;
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 1px;
  text-align: center;
  vertical-align: middle;

}

.btn-wrapper {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;

}
 
.form-group2-popup label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 5px;
  width: fit-content;
  font-family: Golos Text;
font-weight: 400;
font-size: 16px;
line-height: 25.6px;
letter-spacing: 0%;
color:var(--blackish);


}
.contact-form-popup {
  background-color: white;
  color: #333;
  border-radius: 30px;
  padding: 40px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  position: relative;
}
.form-group2-popup {
  margin-bottom: 15px;
  
}
.submit-btn-popup
{
  background-color: var(--blue);
  color: #FFFFFF;
  border: none;
  border-radius: 5px;
  padding: 15px 35px;
  
  cursor: pointer;
  font-family: Golos Text;
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 1px;
  text-align: center;
  vertical-align: middle;
  
  margin: 20px auto 0;
}



/* Custom responsive adjustments */

.contact-form-container-popup
  {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    /* background-color: var(--blue) !important; */
  }


.custom-file-upload:hover {
  /* background-color: #45a049; */
}

/* Responsive styles */
@media only screen and (max-width: 900px) {
  .content-wrapper2 {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 30px;
  }

  .school-info2
  {
    width: 100%;
  }

 



  .logo {
    margin-left: 0;
  }

  .contact-form {

    color: #333;
    border-radius: 30px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .contact-item2 {

    font-size: 16px;
  }



}


@media only screen and (max-width: 770px) {



  .contact-item2 {
    font-size: 16px;

  }

  .location2 span {
    font-size: 18px;
    /* text-align: center; */



  }

  .submit-btn2 {
    background-color: #FFFFFF;
    color: var(--blue);
    border: none;
    border-radius: 5px;
    padding: 15px 35px;

    cursor: pointer;
    font-family: Golos Text;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 1px;
    text-align: center;
    vertical-align: middle;

    margin: 20px 0;
  }





}