*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
font-family: 'Playfair Display', serif;
  overflow-x:hidden;
  background:#fff;
  color:#222;
}

/* HERO */

/* HERO */

.hero{
  width:100%;
  min-height:100vh;

  position:relative;
  overflow:hidden;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#000;
}

/* HERO IMAGE */



/* OVERLAY */

.hero-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.35)
  );

  z-index:1;
}

/* CONTENT */

.hero-content{
  position:relative;
  z-index:2;

  text-align:center;
  color:#fff;

  width:90%;
  max-width:1000px;

  padding:20px;
}

.hero-content h1{
  font-size:clamp(34px,6vw,72px);
  font-weight:700;
  margin-bottom:20px;
  line-height:1.1;
}

.hero-content p{
  font-size:clamp(16px,2vw,24px);
  font-weight:300;
}

/* MOBILE */


@media(max-width:768px){

  .hero{

    min-height:1vh;

    background:#fff;

  }

  .hero picture img{

    object-fit:contain;

    object-position:center top;

  }

}

@media(max-width:768px){

  .vision-box,
  .vision-box.reverse{

    display:flex;
    flex-direction:column;

  }

  .vision-img{
    order:1;
    width:100%;
  }

  .vision-content{
    order:2;
    width:100%;
  }

}

@keyframes heroZoom{

  from{
    transform:scale(1);
  }

  to{
    transform:scale(1.08);
  }

}






/* COMMON */

section{
  padding:90px 8%;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:45px;
  font-weight:700;
}

.section-title p{
  margin-top:15px;
}

.line{
  width:70px;
  height:4px;
  background:#f4b400;
  margin:18px 0;
}

.line.center{
  margin:18px auto;
}


/* WELCOME */

.welcome-section{
  background:#eef8eb;
}

.welcome-container{
  display:flex;
  align-items:center;
  gap:50px;
}

.welcome-image,
.welcome-content{
  flex:1;
}

.welcome-image img{
  width:100%;
  border-radius:20px;
}

.welcome-content h2{
  font-size:52px;
  line-height:1.2;
}

.welcome-content span{
  font-weight:700;
}

.welcome-content p{
  margin-top:18px;
  line-height:1.9;
}


/* VISION */

.vision-section{
  background:#e9dcff;
}

.vision-container{
  display:flex;
  flex-direction:column;
  gap:50px;
}

.vision-box{
  display:flex;
  align-items:center;
  gap:40px;
}

.vision-box.reverse{
  flex-direction:row-reverse;
}

.vision-img,
.vision-content{
  flex:1;
}

.vision-img img{
  width:100%;
  border-radius:20px;
}

.vision-content{
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.vision-content h3{
  font-size:35px;
  margin-bottom:20px;
}

.vision-content p{
  margin-bottom:15px;
  line-height:1.8;
}


/* SLIDER */


.slider{
  width:100%;
  overflow:hidden;
  position:relative;
}


.slide-track{

  display:flex;
  align-items:center;
  gap:25px;

  width:calc(305px * 10);

  animation:
  scrollSlider 35s linear infinite;

}

@keyframes scroll{

  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(calc(-300px * 5));
  }

}



@keyframes scrollSlider{

  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(calc(-305px * 5));
  }

}

/* HOVER STOP */

.slide-track:hover{
  animation-play-state:paused;
}

@keyframes infiniteScroll{

  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-50%);
  }

}

/* CARD */

.choose-card,
.path-card,
.academic-card{

  width:280px;
  min-width:280px;

  background:#fff;

  border-radius:18px;

  overflow:hidden;

  box-shadow:
  0 10px 25px rgba(0,0,0,0.08);

}

.choose-card img,
.path-card img,
.academic-card img{

  width:100%;
  height:220px;

  object-fit:cover;

  display:block;

}

/* .choose-card h4,
.path-card h4,
.academic-card h4{
  font-size:20px;
  padding:20px 20px 10px;
}

.choose-card p{
  padding:0 20px 25px;
  line-height:1.7;
} */


/* SECTION COLORS */

.choose-section{
  background:#f4e8a4;
}

.path-section{
  background:#bde9ff;
}

.academics-section{
  background:#d9fff0;
}


/* ANIMATION */

.reveal,
.reveal-left,
.reveal-right{
  opacity:0;
  transition:all 1s ease;
}

.reveal{
  transform:translateY(80px);
}

.reveal-left{
  transform:translateX(-100px);
}

.reveal-right{
  transform:translateX(100px);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active{
  opacity:1;
  transform:translate(0);
}


/* RESPONSIVE */

@media(max-width:991px){

  .hero-content h1{
    font-size:50px;
  }

  .welcome-container,
  .vision-box,
  .vision-box.reverse{
    flex-direction:column;
  }

  .welcome-content h2{
    font-size:40px;
  }

}

@media(max-width:768px){

  section{
    padding:70px 5%;
  }

  .hero{
    height:75vh;
  }

  .hero-content h1{
    font-size:34px;
  }

  .hero-content p{
    font-size:16px;
  }

  .section-title h2{
    font-size:32px;
  }

  .welcome-content h2{
    font-size:30px;
  }

  .vision-content{
    padding:25px;
  }

  .vision-content h3{
    font-size:28px;
  }

  .slide-track{
    gap:20px;
  }

  .choose-card,
  .path-card,
  .academic-card{
    min-width:240px;
  }

}

@media(max-width:480px){

  .hero{
    height:65vh;
  }

  .hero-content h1{
    font-size:28px;
  }

  .hero-content p{
    font-size:14px;
  }

  .welcome-content h2{
    font-size:26px;
  }

  .section-title h2{
    font-size:28px;
  }

}


/* second half */



/* COMMON */

.activities-section,
.numbers-section,
.explore-section,
.student-section{
  padding:90px 20px;
}

.title-area{
  text-align:center;
  margin-bottom:60px;
}

.title-area h2{
  font-size:42px;
  font-weight:500;
  color:#222;
}

.title-area h2 span{
  font-weight:700;
}

.line{
  width:70px;
  height:4px;
  background:#ffbf00;
  margin:18px auto;
  border-radius:50px;
}

.title-area p{
  color:#555;
  font-size:15px;
}

/* EDUCATIONAL ACTIVITIES */

.activities-section{
  background:#f4ebc9;
}

.activities-wrapper{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.activity-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transform:scale(0.7) rotate(-10deg);
  opacity:0;
  transition:1s;
}

.activity-card.show{
  transform:scale(1) rotate(0deg);
  opacity:1;
}

.activity-card:hover{
  transform:translateY(-10px);
}

.card-img{
  overflow:hidden;
}

.card-img img{
  width:100%;
  height:220px;
  object-fit:cover;
  transition:.6s;
}

.activity-card:hover img{
  transform:scale(1.1);
}

.card-content{
  padding:25px;
}

.card-content h3{
  color:#1d2cff;
  margin-bottom:15px;
  font-size:22px;
}

.card-content p{
  color:#555;
  line-height:1.7;
  font-size:14px;
}

/* NUMBERS SECTION */

.numbers-section{
  background:#f6d7e7;
}

.numbers-wrapper{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.number-box{
  text-align:center;
}

.number-box h3{
  font-size:52px;
  color:#111;
  margin-bottom:10px;
  font-weight:700;
}

.number-box p{
  color:#444;
  font-size:15px;
}

/* EXPLORE SECTION */

.explore-section{
  background:#f7d9dc;
}

.explore-wrapper{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.explore-card{
  background:#fff;
  padding:35px;
  border-radius:16px;
  box-shadow:0 10px 20px rgba(0,0,0,0.08);

  transform:translateY(80px);
  opacity:0;
  transition:1s;
}

.explore-card.show{
  transform:translateY(0);
  opacity:1;
}

.explore-card h3{
  margin-bottom:15px;
  color:#222;
}

.explore-card p{
  color:#666;
  line-height:1.8;
}

/* STUDENT SECTION */

.student-section{
  background:#efe2cd;
  padding-bottom:0;
}

.student-wrapper{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:50px;
}

.student-image{
  flex:1;
  transform:translateX(-200px);
  opacity:0;
  transition:1.2s;
}

.student-image.show{
  transform:translateX(0);
  opacity:1;
}

.student-image img{
  width:100%;
  max-width:400px;
}

.student-content{
  flex:1;
}

.small-line{
  width:60px;
  height:4px;
  background:#ffbf00;
  margin-bottom:25px;
}

.student-content h2{
  font-size:48px;
  line-height:1.2;
  color:#1d1363;

  transform:translateX(200px);
  opacity:0;
  transition:1.2s;
}

.student-content h2.show{
  transform:translateX(0);
  opacity:1;
}

/* RESPONSIVE */

@media(max-width:992px){

  .activities-wrapper,
  .numbers-wrapper{
    grid-template-columns:repeat(2,1fr);
  }

  .student-wrapper{
    flex-direction:column;
    text-align:center;
    align-items:center;
  }

  .small-line{
    margin:auto auto 25px;
  }

}

@media(max-width:768px){

  section{
    padding:35px 15px;
  }

  .title-area h2{
    font-size:32px;
  }

  .activities-wrapper,
  .numbers-wrapper,
  .explore-wrapper{
    grid-template-columns:1fr;
  }

  .student-content h2{
    font-size:34px;
  }

  .number-box h3{
    font-size:42px;
  }

}


/* =========================
   ADMISSION POPUP
========================= */

.admission-popup{
  position:fixed;
  inset:0;

  width:100%;
  height:100vh;

  display:flex;
  align-items:center;
  justify-content:center;

  z-index:999999;

  animation:popupFade .5s ease;
}

/* OVERLAY */

.popup-overlay{
  position:absolute;
  inset:0;

  background:
  rgba(0,0,0,0.65);

  backdrop-filter:blur(5px);
}

/* BOX */

.popup-box{

  position:relative;
  z-index:2;

  width:92%;
  max-width:520px;

  background:#fff;

  border-radius:30px;

  overflow-y:auto;

  max-height:90vh;
 overflow-y:auto;

  scrollbar-width:none;

  -ms-overflow-style:none;
  padding:45px 35px;

  text-align:center;

  box-shadow:
  0 25px 80px rgba(0,0,0,0.25);

  animation:popupZoom .6s ease;

}

/* CLOSE */

.popup-close{
  position:absolute;

  top:18px;
  right:18px;

  width:42px;
  height:42px;

  border:none;
  outline:none;

  border-radius:50%;

  background:#f2f2f2;

  cursor:pointer;

  font-size:18px;

  transition:.4s;
}

.popup-close:hover{
  background:#081a78;
  color:#fff;
  transform:rotate(90deg);
}

/* LOGO */

.popup-logo{
  width:120px;
  height:120px;

  margin:auto auto 25px;

  border-radius:50%;

  background:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.08);

  animation:floatLogo 4s ease-in-out infinite;
}

.popup-logo img{
  width:85px;
}

/* BADGE */

.popup-badge{
  display:inline-block;

  padding:10px 22px;

  border-radius:100px;

  background:#eef3ff;

  color:#081a78;

  font-size:14px;
  font-weight:600;

  margin-bottom:22px;
}

/* TEXT */

.popup-content h2{
  font-size:52px;
  color:#081a78;
  line-height:1.1;
  margin-bottom:12px;
}

.popup-content h3{
  font-size:28px;
  color:#d79a00;
  margin-bottom:22px;
}

.popup-content p{
  font-size:17px;
  line-height:1.8;
  color:#555;

  margin-bottom:30px;
}

/* BUTTONS */

.popup-buttons{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;

  flex-wrap:wrap;
}

.popup-btn{
  padding:16px 28px;

  border-radius:100px;

  background:#081a78;

  color:#fff;

  text-decoration:none;

  font-weight:600;

  transition:.4s;
}

.popup-btn:hover{
  transform:translateY(-5px);
}

.popup-btn-outline{
  background:#25d366;
}

/* ANIMATION */

@keyframes popupFade{

  from{
    opacity:0;
  }

  to{
    opacity:1;
  }

}

@keyframes popupZoom{

  from{
    opacity:0;
    transform:scale(.7);
  }

  to{
    opacity:1;
    transform:scale(1);
  }

}

@keyframes floatLogo{

  0%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-10px);
  }

  100%{
    transform:translateY(0);
  }

}

/* MOBILE */

@media(max-width:768px){

  .popup-box{
    padding:40px 22px;
    border-radius:24px;
  }

  .popup-content h2{
    font-size:36px;
  }

  .popup-content h3{
    font-size:22px;
  }

  .popup-content p{
    font-size:15px;
  }

  .popup-logo{
    width:95px;
    height:95px;
  }

  .popup-logo img{
    width:65px;
  }

  .popup-btn{
    width:100%;
  }

}


/* FORM */

.popup-form{

  margin-top:30px;

  display:flex;
  flex-direction:column;

  gap:18px;

}

/* GROUP */

.form-group{

  width:100%;

}

/* INPUT */

.popup-form input,
.popup-form select,
.popup-form textarea{

  width:100%;

  padding:16px 18px;

  border:none;

  outline:none;

  border-radius:16px;

  background:#f5f7ff;

  font-size:15px;

  font-family:'Poppins',sans-serif;

  border:2px solid transparent;

  transition:.4s;

}

/* FOCUS */

.popup-form input:focus,
.popup-form select:focus,
.popup-form textarea:focus{

  border-color:#071c72;

  background:#fff;

  box-shadow:
  0 10px 25px rgba(7,28,114,0.08);

}

/* TEXTAREA */

.popup-form textarea{

  resize:none;

}

/* BUTTON */

.popup-btn{

  width:100%;

  padding:16px;

  border:none;

  border-radius:50px;

  background:
  linear-gradient(
    135deg,
    #071c72,
    #0b2fa5
  );

  color:#fff;

  font-size:16px;

  font-weight:600;

  cursor:pointer;

  transition:.4s;

  box-shadow:
  0 12px 30px rgba(7,28,114,0.25);

}

/* HOVER */

.popup-btn:hover{

  transform:
  translateY(-4px);

  background:
  linear-gradient(
    135deg,
    #f4b400,
    #ff9800
  );

}

/* =========================
   POPUP RESPONSIVE FIX
========================= */

@media(max-width:768px){

  .admission-popup{

    padding:15px;

    align-items:center;
    justify-content:center;

  }

  .popup-box{

    width:100%;

    max-width:100%;

    max-height:90vh;

    overflow-y:auto;

    padding:35px 20px;

    border-radius:24px;

  }

  /* SCROLLBAR */

 
/* SCROLLBAR */

.popup-box::-webkit-scrollbar{
  width:6px;
  display: none;
}

.popup-box::-webkit-scrollbar-thumb{

  background:#cfcfcf;

  border-radius:50px;

}

.popup-box::-webkit-scrollbar-track{
  background:transparent;
}
  /* LOGO */

  .popup-logo{

    width:85px;
    height:85px;

    margin-bottom:18px;

  }

  .popup-logo img{
    width:58px;
  }

  /* TEXT */

  .popup-content h2{
    font-size:30px;
  }

  .popup-content h3{
    font-size:22px;
    margin-bottom:15px;
  }

  .popup-content p{
    font-size:14px;
    line-height:1.7;
    margin-bottom:22px;
  }

  /* FORM */

  .popup-form{
    gap:14px;
  }

  .popup-form input,
  .popup-form select,
  .popup-form textarea{

    padding:14px 16px;

    font-size:14px;

    border-radius:14px;

  }

  /* BUTTON */

  .popup-btn{

    padding:15px;

    font-size:15px;

  }

}

/* EXTRA SMALL MOBILE */

@media(max-width:480px){

  .popup-box{

    padding:28px 16px;

    border-radius:20px;

  }

  .popup-content h2{
    font-size:26px;
  }

  .popup-content h3{
    font-size:20px;
  }

  .popup-badge{

    font-size:12px;

    padding:8px 16px;

  }

  .popup-close{

    width:36px;
    height:36px;

    font-size:15px;

    top:12px;
    right:12px;

  }

}

/* HERO IMAGE */

.hero picture{

  position:absolute;

  inset:0;

  width:100%;
  height:100%;

}

.hero picture img{

  width:100%;
  height:100%;

  object-fit:cover;

  object-position:center;

  display:block;

}