*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    width: 100%;
    height: 100%;
}
.section-container{
    width: 100%;
    height: 100%;
}
.banner-section{
    width: 100%;
    height: 100%;
    position : relative;
}
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Ensures the video is behind other content */
  }
  
  #background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    filter: brightness(45%);
  }
  .banner-content{
    width: 100%;
    height: 100%;
    position : relative;
    top : 10%;
    padding: 100px 100px;
    z-index: 1;
  }
  .banner-content h4{
    position: relative;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    text-transform: uppercase;
    line-height: 1.5;
  }

  .content{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap:20px;
    text-align: justify;
  }

  .content-container{
    width: 90%;
    height: auto;
    padding : 50px 0px;
    margin : 50px auto;
    display: flex;
    justify-content: space-around;
    gap : 100px;
  }
  .google-map{
    width: 100%;
    height: auto;
  }
  .google-map iframe{
    min-height: 600px;
  }
  .contact-form{
    width: 100%;
    height: 100%;
    background-color: rgb(247, 247, 243);
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 20px 50px;

  }
  .address{
    display: flex;
    flex-direction: column;
    gap:15px;
  }
  .form{
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  input{
    padding : 10px 15px;
    border-radius: 5px;
    border: none;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 100;
    box-shadow: 0px 0 2px rgba(0, 0, 0, 0.3);
  }
  textarea{
    padding: 15px;
    border-radius: 5px;
    min-height: 100px;
    font-size: 15px;
    font-weight: 100;
    box-shadow: 0px 0 2px rgba(0, 0, 0, 0.3);
    border: none;
    margin-bottom: 15px;
  }
  .btn{
    background-color: black;
    color: #fff;
    width: 100px;
    align-self: center;
  }
  .btn:hover{
    background-color: rgb(198, 132, 10);
    transition: all 0.3s ease;
  }
.school-title{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap : 0;
}
.school-title h3{
    font-size: 25px;
}

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

    .content-container{
        display: flex;
        flex-direction: column;
        gap:50px;
    }
    
}