*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.contact-nav{
  display: flex;
  padding: 10px 15px;
  justify-content: space-between;
  align-items: center;
  background: #303394;
  color: #ffffffd8;
}
.contact{
  display: flex;
  gap: 20px;
  cursor: pointer;
  font-size: 12px;
}
.social-links{
  display: flex;
  gap: 15px;
}
.social-links i{
  display: flex;
  padding: 5px;
  border: 1px solid #5f5f7e;
  font-size: 14px;
  border-radius: 50px;
  width: 100%;
  transition: 0.4s ease-in-out;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.social-links i:hover{
  background: white;
  color: #1d1d4e;
}
.header{
  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar{
  display: flex;
  justify-content: space-between;
  background: #1a65b4;
  align-items: center;
  height: 65px;
}
.logo img{
  height: 50px;
  padding-left: 40px;
}
.nav-links ul{
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
  padding-right: 100px;
}
.nav-links a{
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-family: "Gupter";
}
.nav-links a:hover{
  color: #020327;
  transition: 0.3s ease-in;
}
.hamburger{
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
  padding-right: 20px;
}
.whatsapp-float{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1;
}
.whatsapp-float img{
  width: 70px;
  height: 70px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.whatsapp-float img:hover{
  transform: scale(1.1);
}
.auto-slide{
  width: 100%;
  height: 80vh;
  position: relative;
  overflow: hidden;
}  
.slidecontent{
  width: 100%;
  height: 80vh;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  animation: fade 16s infinite;
  transition: 1s ease-in-out;
}
.slidecontent img{
  width: 100%;
  height: 80vh;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.overlay{
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  inset: 0;
  z-index: 2;
  height: 80vh;
}
.img-text{
  position: absolute;
  bottom: 150px;
  left: 40px;
  padding-top: 40px;
  color: white;
  z-index: 10;
}
.img-text h1{
  font-size: 20px;
  font-weight: 900;
}
.img-text h6{
  font-size: 14px;
}
.cta{
  background: #303394;
  display: inline-block;
  position: relative;
  border-radius: 30px;
  font-size: 17px;
  padding: 11px 20px;
  text-decoration: none;
  color: #ffffff;
  margin-top: 15px;
  transition: all 0.4s ease;
  font-weight: 600;
}
.cta:hover{
  background: #1a65b4;
  box-shadow: 0 0 12px rgba(26, 101, 180, 0.4), 0 0 25px rgba(26, 101, 180, 0.6);
  transform: translateY(-5px);
}
.slidecontent:nth-child(1) { animation-delay: 0s; }
.slidecontent:nth-child(2) { animation-delay: 4s; }
.slidecontent:nth-child(3) { animation-delay: 8s; }
.slidecontent:nth-child(4) { animation-delay: 12s; }

@keyframes fade {
  0%   { opacity: 0; visibility: hidden; }
  10%  { opacity: 1; visibility: visible; }
  25%  { opacity: 1; visibility: visible; }
  35%  { opacity: 0; visibility: hidden; }
  100% { opacity: 0; visibility: hidden;}
}
.stats{
  display: flex;
  justify-content: center;
  gap: 12.5rem;
  padding: 20px;
  text-align: center;
  background-color: #303394;
}
.stat h2{
  font-size: 3rem;
  color:#ffffff;
  font-weight: bolder;
}
.stat p{
  font-size: 16px;
  color: #f5f5f5;
  font-weight: bold;
}
.course-grid{
  text-align: center;
}
.course-text{
  text-align: center;
  color: #303394;
  padding: 15px;
  font-size: 20px;
  font-weight:bolder;
  text-decoration: overline #303394;
}
.course-container{
  width: 100%;
  display: flex;
  gap: 20px;
  padding: 20px 80px;
}
.course-card{
  width: 80%;
  border-radius: 20px;
  box-shadow:  0 0px 20px rgba(2, 2, 2, 0.15);
  padding: 10px;
  transition: all 0.5s ease-in-out;
}
.course-card:hover{
  transform: translateY(-10px);
  box-shadow: 0px 0px 10px rgba(33, 33, 53, 0.5);
}
.course-content img{
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
}
.course-overview h6{
  font-size: 13px;
  font-weight: bold;
  color: #303394;
  padding:  8px 0px 0px 10px;
  text-align: right;
}
.course-overview p{
  color: #1a65b4;
  font-weight: 900;
  font-size: 14px;
  text-align: center;
  padding: 8px;
}
.course-overview h5{
  font-size: 12px;
  color: rgba(0, 0, 0, 0.664);
  font-weight: 700;
  padding: 5px;
}
.duration{
  display: flex;
  gap: 20px;
  margin-top: 15px;
}
.duration button{
  border: none;
  font-size: 12px;
  font-weight: bolder;
  padding: 5px;
  color: #303394;
  background-color:rgba(146, 139, 139, 0.5);
  border-radius: 10px;
}
.duration .time i{
  color:black;
}
.class_btn{
  color:#ffffff;
  background:#1a65b4;
  padding: 10px;
  font-size: 12px;
  margin-left: 10px;
  border-radius: 5px;
  display: inline-block;
  transition: all 0.4s ease;
}
.class_btn:hover{
  background: #303394;
  box-shadow: 0 0 25px rgba(17, 44, 73, 0.6);
  transform: translateX(-8px);
}
.view-btn{
  text-decoration: none;
  color: #ffffff;
  background-color: #303394;
  padding: 5px;
  border-radius: 15px;
  font-weight: 600;
  transition: all 0.5s ease-in-out;
  margin-top: 15px;
  font-size: 13px;
}
.view-btn:hover{
  background: #1a65b4;
  box-shadow: 2px 3px 5px 2px rgba(26, 101, 180, 0.6);
  transform: translateY(-5px);
  color: rgb(206, 196, 196);
}
.value{
  height: auto;
  width: 100%;
  min-height: 50vh;
  background:linear-gradient(to top, #fff,  #1a65b4);
}
.value p{
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  font-family: "BBH Hegarty", sans-serif;
  font-style: italic;
  margin-top: 25px;
  padding-top: 20px;
  color: #fff;
}
.value-grid{
  display: flex;
  padding: 5px;
  gap: 25px;
  align-items: center;
  width: 100%;
  padding: 45px;
}
.value-card{
  border: none;
  box-shadow: 0px 2px 15px 10px hsla(211, 40%, 68%, 0.418);
  width: 100%;
  height: 200px;
  padding: 10px;
  transition: all 0.4s ease-in-out;
}
.value-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 0 3px 2px rgba(8, 33, 59, 0.4)
}
.value-socials{
  display: flex;
  gap: 10px;
  padding: 10px;
  font-size: 30px;
  justify-content: center;
  color: rgb(51, 48, 48);
}
.value-overview{
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  color: rgb(22, 21, 21);
}
.value-text{
  font-size: 14px;
  padding: 8px;
  color: rgb(22, 21, 21);
  font-weight: 500;
}
.tutors-team h2{
  text-align: center;
  font-size: 15px;
  font-weight: 900;
  padding-top: 30px;
  color: #303394;
}
.tutors-grid{
  display: flex;
  gap: 20px;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 30px;
  scrollbar-width: none;
}
.tutors-card{
  border: none;
  flex: 0 0 250px;
  border-radius: 7px 7px 25px 25px;
  padding: 2px;
  background: #eeeaea;
  box-shadow: 2px 6px 12px rgba(67, 67, 68, 0.315);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s ease-in-out;
}
.tutors-card:hover{
  background-color: #c7d1e499;
  box-shadow: 2px 6px 10px rgba(14, 14, 19, 0.315);
  transform: translateX(-6px) ;
}
.tutors-content img{
  height: 350px;
  width: 100%;
  padding: 5px;
  border-radius: 10px;
  object-fit: cover;
}
.tutors-bio{
  padding: 5px;
}
.tutors-bio h4{
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  color: #1a65b4;
}
.tutors-bio h6{
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  color: #303394;
}
.tutors-bio h5{
  font-size: 12px;
  color: #1d1c1c;
  justify-content: center;
}
.tutors-bio p{
  font-size: 12px;
  font-weight: 900;
}
.tutors-bio p i{
  color: #303394;
}
.tutors-socials{
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.tutors-socials a{
  font-size: 18px;
  color: rgb(100, 94, 94);
  transition: all 0.4s ease-out;
}
.tutors-socials a:hover{
  background-color: #1a65b4;
  color: white;
  border-radius: 60px;
  transform: translateX(-5px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.664);
}
.support-form{
  background: url(../images/support_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px;
  display: flex;
  gap: 15px;
}
.contact-form{
  border: none;
  display: flex;
  flex-direction: column;
  width: 45%;
  padding: 30px;
  align-items: center;
  border-radius: 18px;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 6px rgb(12, 12, 78);
}
.contact-form h4{
  color: white;
  font-size: 17px;
  font-weight: 900;
}
.input-form{
  display: flex;
  flex-direction: column;
  width: 80%;
  gap: 10px;
  padding: 10px;
}
.input-form label{
  color: white;
  font-family: cursive;
}
.input-form input{
  border: solid rgb(247, 236, 236);
  background: transparent;
  border-radius: 10px;
  padding: 4px;
  color: white;
  outline: none;
}
.countrycode{
  border: solid rgb(247, 236, 236);
  border-radius: 10px;
  padding: 4px;
  color: white;
  outline: none;
}
.countrycode option{
  background-color: #1a65b4;
}
.career-path{
  border: solid whitesmoke;
  border-radius: 10px;
  padding: 4px;
  color: white;
  outline: none;
}
.career-path option{
  background-color: #1a65b4;
}
.submit-btn{
  color: white;
  border: solid white;
  border-radius: 12px;
  margin-top: 5px;
  background-color: #1a65b4;
  padding: 5px;
  transition: all 0.4s ease-in-out;
  font-size: 16px;
  font-weight: 900;
}
.submit-btn:hover{
  background-color: #fff;
  color: #1a65b4;
}
.faq-section{
  border-radius: 25px;
  width: 55%;
  padding: 8px;
  backdrop-filter: blur(100px);
  box-shadow:  10px 20px rgba(0, 0, 0, 0.15), -10px -10px 20px rgba(30, 26, 48, 0.6);
}
.faq-section h2{
  text-align: center;
  color: white;
  font-size: 16px;
  font-weight: 900;
}
.faq-item{
  border-bottom: 1px solid #ddd;
  padding: 8px 2px;
}
summary{
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  color: white;
}
summary::after{
  content: "+";
  float: right;
  font-weight: bolder;
  font-weight: 20px;
}
details[open] summary::after{
  content: "-";
  font-weight: bolder;
  font-size: 20px;
}
.faq-item p{
  margin-top: 8px;
  color: #fcf4f4;
}
.cta-btn{
  background-image:linear-gradient(rgba(0,0,0,0.3)), url(../images/cta_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
}
.cta-text{
  align-items: center;
  padding: 60px;
  text-align: center;
  color: white;
}
.cta-text h2{
  font-size: 17px;
  font-weight: 900;
  padding-top: 30px;
}
.cta-text p{
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 30px;
}
.cta-text a{
  background-color: #303394;
  color: white;
  padding: 10px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 20px;
  transition: all 0.4s ease;
}
.cta-text a:hover{
  background: #1a65b4;
  box-shadow: 0 0 12px rgba(26, 101, 180, 0.4), 0 0 25px
   rgba(26, 101, 180, 0.6);
  transform: translateX(-5px);
}
footer{
  background-color: #1a65b4;
  padding: 50px 60px 20px 60px;
}
.footer-content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 30px;
}
.footer-logo img{
  height: 40px;
}
.quick-socials{
  color: white;
  font-size: 16px;
  display: flex;
  gap: 30px;
}
hr{
  color: #eeeaea;
  margin-top: 20px;
}
.all-links{
  display: flex;
  justify-content: space-between;
  padding: 20px 40px 10px 40px;
  color: white;
}
.location{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.location h4{
  font-weight: 800;
  font-size: 15px;
}
.location p{
  font-size: 12px;
  font-weight: 600;
}
.contactus{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contactus h4{
  font-weight: 800;
  font-size: 14px;
}
.contactus p{
  font-size: 13px;
  font-weight: 600
}
.quick-links{
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.quick-links h4{
  font-weight: 400;
  font-size: 16px;
}
.quick-links ul{
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.quick-links li {
  font-size: 13px;
  font-weight: 700;
}
.quick-links li:hover{
  color: #303394;
  transition: 0.3s ease-in-out;
  transform: translateX(-10px)
}
.email-sub{
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.email-sub h3{
 font-size: 16px;
 font-weight: 700;
}
.email-sub h6{
  font-size: 11px;
}
.email-form{
  border: 2px solid white;
  padding: 1px;
  border-radius: 16px;
}
.email-form input{
  padding: 5px;
  font-size: 16px;
  outline: none;
}
.email-form button{
  padding: 10px;
  background: #1a65b4;
  border-radius: 15px;
  cursor: pointer;
}
.email-form button:hover{
  background-color: #303394;
  transition: 0.3s ease-out;
}
.final-footer{
 display: flex;
 justify-content: space-between;
 color: white;
}
.terms{
  display: flex;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.reviews-slider{
  padding: 40px;
  width: 100%;
  overflow: hidden;
}
.reviews-slider h1{
  text-align: center;
  font-size: 20px;
  color: #303394;
  margin-bottom: 20px;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 800;
}
.reviews-grid{
  display: flex;
  gap: 20px;
  animation: scroll 30s linear infinite;
}
.reviews-card{
  min-width: 300px;
  max-height: 400px;
  background: #edeef1;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
.reviews-card p{
  font-size: 14px;
  color: #444;
}
.reviews-card h4{
  margin-top: 15px;
  font-size: 16px;
  font-weight: 900;
  color: #303394;
}
@keyframes scroll{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-200%);
  }
}

@media (max-width: 1358px){
  .support-form{
    flex-direction: column;
    padding: 30px;
  }
  .contact-form,
  .faq-section{
    width: 100%;
  }
   .countrycode{
    width: 20%;
  }
  .phone{
    width: 79%;
  }
}
@media (max-width: 1217px){
  .course-container{
    flex-direction: column;
    padding: 20px 40px;
  }
  .course-card{
    width: 100%;
  }
}
@media (max-width: 1090px){
  .value-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 25px;
  }
  .value-card{
    height: auto;
  }
   .countrycode{
    width: 50%;
  }
  .country-code{
    display: flex;
    gap: 5px;
  }
}
@media (max-width:830px){
  .stats{
    gap: 20px;
    justify-content: space-between;
    padding: 40px;
  }
}
@media (max-width: 820px){
  .all-links{
    padding: 10px;
  }
}
@media (max-width: 768px) {
  .hamburger{
    display: block;
  }
  .nav-links{
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #303394e0;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
  }
  .nav-links ul{
    flex-direction: column;
    gap: 20px;
    padding: 0;
  }
  .nav-links li:hover{
    transform: translateX(-6px);
    transition: 0.3s ease-in;
  }
  .nav-links.active{
    display: flex;
  }
  .navbar{
    padding: 10px;
  }
  .nav-links ul{
    flex-direction: column;
    padding-right: 0;
    gap: 15px;
  }
  .img-text{
    left: 20px;
    right: 20px;
    bottom: 100px;
  }
  .img-text h1{
    font-size: 17px;
  }
  .img-text h6{
    font-size: 12px;
  }
  .stats{
    gap: 20px;
  }
  .course-container{
    flex-direction: column;
    padding: 20px;
  }
  .course-card{
    width: 100%;
  }
  .support-form{
    flex-direction: column;
  }
  .contact-form,
  .faq-section{
    width: 100%;
  }
  .countrycode{
    width: 100%;
  }
  .country-code{
    display: flex;
    gap: 5px;
  }
  .final-footer{
    font-size: 10px;
    gap: 10px;
  }
}
@media (max-width:740px){
 .email-sub{
  padding-left: 50px;
 }
 .email-form{
  display: flex;
 }
 .quick-links h4{
  font-size: 14px;
 }
}
@media(max-width:712px){
  .tutors-grid{
    scrollbar-width: thin;
  }
  .all-links{
    flex-wrap: wrap;
    gap: 10px;
  } 
  .email-sub{
    width: 100%;
    padding-top: 20px;
    text-align: center;
  }
  .email-form{
    justify-content: space-between;
  }
}
@media(max-width:680px){
  .quick-socials{
    font-size: 15px;
    gap: 10px;
  }
}
@media (max-width:611px){
  .contact-nav{
    display: none;
  }
}
@media (max-width:600px){
  .value-grid{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding: 25px;
    gap: 20px;
  }
}
@media (max-width:564px){
  .footer-content{
    padding: 1px;
  }
  .quick-socials{
    font: 14px;
    gap: 10px;
  }
  .terms{
    font-size: 9px;
  }
}
@media(max-width:510px){
  .stat p{
    font-size: 12px;
  }
}
@media (max-width:480px) {
  .support-form{
    flex-direction: column;
    width: 100%;
  }
  .contact-form{
    padding: 1px;
  }
  .input-form::placeholder{
    font-size: 1px;
  }
  .countrycode{
  font-size: 14px;
  }
  .phone{
  font-size: 14px;
  }
  summary{
  font-size: 14px;
  }
  .faq-item p{
  font-size: 12px;
  }
  .cta-text{
  padding: 40px;
  }
  .cta-text h2{
  font-size: 14px;
  }
  .cta-text p{
  font-size: 11px;
  }
  .all-links{
  text-align: center;
  justify-content: center;
  }
  .email-sub{
  text-align: center;
  padding: 2px;
  }
  .email-sub h3{
  font: 14px;
  }
  .email-form input{
  width: 100%;
  }
  .email-form::placeholder{
  font-size: 5px;
  }
  .year p{
  font-size: 7px;
  }
  .terms{
  font-size: 8px;
  }
}
/* ===== Scroll Animation Base ===== */
.reveal {
  opacity: 0;
  transition: all 0.8s ease-out;
  will-change: transform, opacity;
}
.reveal.show {
  opacity: 1;
  transform: translate(0, 0);
}
.fade-left {
  transform: translateX(-60px);
}
.fade-right {
  transform: translateY(-80px);
}
.fade-up {
  transform: translateY(60px);
}
/* support form message */
.success-text{
  margin-top: 12px;
  color: #ffffff; 
  font-size: 14px;
  font-weight: 500;
}
    /* events from admin */
.events-section{
  background-color: #1a65b4;
  padding: 30px;
}
.events-section h2{
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  font-style: italic;
  color: #ffffff;
  padding: 10px;
}
.events-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.events-grid p{
  color: #d0d2d8;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}
.event-card{
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
}
.event-card h2{
  color: #d0d2d8;
}
.event-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background-position: center;
  border-radius: 6px;
}
.event-card h2, p{
  color: #d0d2d8;
}


