:root{
    --bgcolor: #FEF5E1;
    --color-blu: #82E6EC;
    --color-blemaren: #022F3F;
    --color-kaki: #FDC494;
    --color-orange: #FF8357;
    --color-orange2: #ff5500;
    --color-blu2: #0099FF;
    --color-blu3: rgb(0, 11, 118);
    --color-lightgrey: #F3F4F5;
    --color-dark: #273036;
    --color-light: white;
}
html{
    scroll-behavior: smooth;
}
*{
  box-sizing: border-box;
}

.logo{
  max-width: 100%;
  margin: auto 10px;
}
.container{
  width: 100%;
}
.banner{
  width: 100%;
}
.banner img{
    max-height: 70VH;
    min-width: 350PX;
    margin-top: 40px;
}
.col2-banner{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10%;
    margin-top: 100px;
}
.col1-banner{
   padding-top: 190px;
   margin-left: 12%;
}
.blob {
    position: absolute;
    top: -50px;
    left: -150px; 
    animation: rotate 10s infinite;
}


@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(3deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
.blob2{
    margin-top: -200px;
}
.blob3, .blob001{
  display: none;
}
/* END OF BANNER AND  BANNER */

/* START OF THE MINI ABOUT */
.mini-about{
    background-color: var(--color-kaki);
}
/* END OF MINI ABOUT */
.video-container{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;

}
iframe{
  width: 80%;
}


/* BEGINNING OF THE SPACE FOR TEACHERS */
.professors-container {
    width: 100%;
    padding-top: 20px;
    background-image: url(../img/bg1.jpeg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: var(--color-dark);
    background-blend-mode: multiply;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 50px auto;
  }
  .professor {
    width: 250px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0);
    margin-bottom: 20px;
    transition: all 1s;
    text-align: center;
  }
.professor:hover{
    margin-top: -10px;
    transition: all 0.5s;
}
  .professor img {
    width: 100%;
    border-radius: 50%;
  }
  
  .professor h2 {
    font-size: 18px;
    margin: 10px 0;
  }
  
  .professor p {
    font-size: 14px;
    color: #666;
  }
  .title-prof:hover{
    color: var(--color-orange2);
  }
/* THE END OF THE PROF */
  
  .content{
    display: flex;
    justify-content: center;
  }
  .content img{
    border-radius: 50px;
  }
  .container-img{
    border: dotted var(--color-orange2);
    border-radius: 60px;
    margin: auto 30px;
    display: flex;
    justify-content: center;
  }
  .content h1, .content p, .content li{
    margin-left: 10%;
  }
  .content2{
    background-color: var(--color-kaki);
    padding: 50px;
  }

  /* COMMENT OF THE STUDENTS HERE */
  .comments-container {
    max-width: 800px;
    margin: 20px auto;
  }
  
  .comment {
    display: flex;
    margin-bottom: 20px;
    box-shadow: 3px 3px  3px 0px;
  }
  
  .avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
  }

.comment-content {
    flex: 1;
}

.comment-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: bolder;
}
.comment-content p {
    font-size: 16px;
    color: #333;
}
/*  THE OF THE COMMENTS */

/* THE PART FOR THE FAQ */
.faq-container {
    max-width: 800px;
    margin: 20px auto;
  }
  
  .faq-item {
    margin-bottom: 20px;
    box-shadow: 3px 3px  3px 0px;
  }
  
  .question {
    cursor: pointer;
    font-weight: bold;
  }
  
  .answer {
    display: none;
    margin-top: 5px;
  }
  
  .show-answer {
    display: block;
  }
/* THE END OF THE FAQ */

/* CONTACT FORM */

.contact-form-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
  }
  
  h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
  }
  
  input[type="text"],
  textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    resize: none;
  }
  
  button[type="submit"] {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button[type="submit"]:hover {
    background-color: #0056b3;
  }
/* END OF CONTACT FORM */

/* THE FOOTER PART */
footer{
  background-color: var(--color-orange2);
  color: var(--bgcolor);
  text-align: center;
  padding: 20px;
}
footer a{
  color: var(--bgcolor) !important;
  font-style: italic;
}
footer a:hover{
  color: var(--color-dark) !important;
}
footer p{
  font-weight: bold;
}

/* THE ABOUT PAGE */
.banner-about{
  background-image: url(../img/about-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--color-orange);
  background-blend-mode: multiply;
  width: 100%;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-about h1{
  color: var(--bgcolor);
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0px 3px 5px var(--color-dark);
}

/* THE END OF THE ABOUT PAGE */

/* CONDITION CONTAINER and POLITIC STYLE */
.condition-container{
  padding-top: 150px;
  margin-bottom: 20px;
}
.condition-container ul{
  list-style:circle ;
  margin-left: 50px;
}
/* THE END OF THE CONDITION CONTAINER AND THE POLITIC STYLE */

/* WELCOME TO THE STYLE FOR OTHER SERVICESSSSS, LET'S GO :) */
.other-services{
  margin-top: 80px;
  padding: 5%;
  text-align: center;
}
.other-services h2{
  font-weight: bold;
}
.other-services .notification {
  margin: 5px;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 5px;
}
.other-services .icon-service {
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.other-services .icon-service img{
  width: 60%;
  transition: all 1s;
}
.kolonn2{
  margin-top: -80px !important;
}
.column ion-icon{
  font-size: 100px;
  color: var(--bgcolor);
  background-color: var(--color-orange);
  border-radius: 10px;
  border: solid 1px var(--color-dark);
  padding: 5px;
}
/* THE END OF THE STYLE PART FOR OTHER SERVICES :D */

/* ASSISTANT FIRST PAGE STYLE */
.assistant-container{
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50 px;
}
.assistant-container .button{
  margin: 5px 10px;
}
/* ASSISTANT SECOND PAGE STYLE */
.assistant2{
  background-color: var(--color-lightgrey);
  /* padding: 80px; */
  border-radius: 10px;
  margin: 40px;
  position: relative;
text-align: center;
}
.part1{
  padding: 50px;
  min-width: 300px;
}
.chatbot-iframe{
  min-width: 350px;
  height: 760px;
}
/* HOMEWORK ASSITANCE STYLE */
.container-homework {
  max-width: 600px;
  margin: 50px auto;
  margin-top: 120px;
  padding: 20px;
  background-color: var(--color-light);
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.form-group {
  margin-bottom: 15px;
}
label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
input[type="file"] {
  margin-top: 5px;
}
input[type="submit"] {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}
input[type="submit"]:hover {
  background-color: #0056b3;
}
.notice {
  font-style: italic;
  margin-top: 15px;
}

/* RV RV RV RV RV */
.container-rv{
  width: 100%;
  height: 100vh;
  background-color:var(--color-dark);
}
.rv .notification img{
  border-radius: 20px;
}
.container-rv iframe{
  width: 100%;
  height: 100%; 
}
.rv .notification:hover img{
    width: 100%;
}
.rv .notification:hover{
  background-color: var(--bgcolor);
}