@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Poppins", sans-serif;
}
.overlay-wrapper {
  position: fixed;
  z-index: 999;
  height: 100vh;
  display: none;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: radial-gradient(rgba(20, 20, 20, 0.35), rgba(0, 0, 0, 0.01));
}

.spinner {
  width: 75px;
  height: 75px;
  display: inline-block;
  border-width: 5px;
  border-color: rgba(0, 0, 0, 0.35);
  border-top-color: #1e1e1e;
  animation: spin 1s infinite linear;
  border-radius: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border-style: solid;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .application_section .input_box .validate-has-error {
    bottom: -17px;
  }
}/*# sourceMappingURL=style.css.map */



.review_section .swiper-pagination .swiper-pagination-bullet{
  background-color: #FFFFFF3D!important;
  opacity: 1!important;
}
.review_section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background-color: #fff!important;
}



.programs_section .swiper-pagination .swiper-pagination-bullet{
  background-color: #C47D863D!important;
  opacity: 1!important;
}
.programs_section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background-color: #C47D86!important;
}


.circle {  
  padding-top: 100%;                   
}

.teachers_section .swiper-pagination-bullet , .facilities_section .swiper-pagination-bullet{
  background-color: #fff!important;
}

.facilities_section .facilitieSwiper::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width:70%;
  border-radius: 20px;
  background-color: #FFFFFF1F;
  margin: auto;
}

.swiper-button-next:after, .swiper-button-prev:after , .swiper-button-next:before, .swiper-button-prev:before{
  display: none;
}

.faq_section .accordion_box.open{
  background-color: #66A5CE29;
}

.faq_section .accordion_box.open .fa-minus{
  display: block;
}
.faq_section .accordion_box .fa-minus{
  display: none;
}
.faq_section .accordion_box.open .fa-plus{
  display: none;
} 
.banner_section {
    position: relative;
    background: url('https://astarintacademy.jp/images/bg_main.jpeg') no-repeat center top;
    background-size: cover;
    background-position: 50% 30%; /* adjust vertical position slightly to show face */
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* optional overlay for readability */
.banner_section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35); /* slight dark overlay */
    z-index: 0;
}

/* make text stay above overlay */
.banner_section .main_title_txt {
    position: relative;
    z-index: 1;
}

/* ✅ Responsive mobile fix */
@media (max-width: 768px) {
    .banner_section {
        background-position: 50% 20%; /* move image slightly up on mobile */
        height: 80vh; /* reduce height for smaller screens */
        padding: 30px 0;
    }

    .banner_section .main_title_txt h1 {
        width: 90%; /* prevent text from being cut */
        font-size: 22px;
    }

    .banner_section .main_title_txt p {
        font-size: 14px;
    }
}














