@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');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 115px;
}

body {
  font-family: "poppins", sans-serif;
  color: #000000;
  background-color: #FFFFFF;
  line-height: 1.5;
  box-sizing: border-box;
}

/* Container */
.section {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

/* Header */
.header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e6e6e6;
  transition: box-shadow .25s ease;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
  max-width: 1440px;
  width: 100%;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.header-logo img {
  width: 175px;
}

/* Desktop Nav */
.header-nav {
  display: flex;
  gap: 32px;
}

.header-nav .nav-link {
  color: #007aff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color .25s ease;
}

.header-nav .nav-link:hover {
  color: #03265f;
}

/* ------------------------------------------------------
   HAMBURGER (light mode)
---------------------------------------------------------*/
.menu-btn {
  display: none;
  color: #007aff;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s;
}

.menu-btn:hover {
  color: #03265f;
}

/* ------------------------------------------------------
   MOBILE SIDE NAV (light)
---------------------------------------------------------*/
.side-nav {
  position: fixed;
  height: 100%;
  width: 0;
  top: 0;
  right: 0;
  background: #ffffff;
  overflow-x: hidden;
  transition: 0.35s;
  z-index: 99999;
  padding-top: 60px;
  box-shadow: -4px 0 18px rgba(0, 0, 0, 0.05);
  border-left: 1px solid #eaeaea;
}

.side-nav.open {
  width: 260px;
}

.side-nav-inner {
  padding: 20px;
}

.side-nav a {
  display: block;
  color: #007aff;
  text-decoration: none;
  padding: 16px 0;
  font-size: 17px;
  border-bottom: 1px solid #f1f1f1;
}

.side-nav a:hover {
  color: #0072ff;
}

#close-btn {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 40px;
  color: #0072ff;
  text-decoration: none;
}

#close-btn:hover {
  color: #03265f;
}

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

  .header-nav {
    display: none;
  }

  /* Show hamburger button */
  .menu-btn {
    display: block;
  }

  .header-nav {
    width: 100%;
    justify-content: space-between;
    gap: 5px;
  }

}

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

  .nav-link {
    font-size: 16px;
  }

  .header-logo img {
    max-width: 150px;
  }

}

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

  .nav-link {
    font-size: 14px;
  }

}

.hero {
  position: relative;
  width: 100%;
  height: fit-content;
  max-height: 800px;
  overflow: hidden;
}

/* Image fills the entire hero */
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FORM OVERLAY POSITION */
.contact_form {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 350px;
  background: #ffffff;
  padding: 10px 5px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

/* Form heading */
#applyBox {
  color: #03265f;
  font-size: 20px;
  text-align: center;
  font-weight: 700;
}

/* ============================
   MOBILE (below 768px)
============================ */

@media screen and (max-width:1024px) {
  .hero {
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
  }

  .contact_form {
    position: relative;
    right: 0;
    top: 0%;
    transform: translateY(-20%);
  }

}

@media (max-width: 468px) {

  .contact_form {
    max-width: 300px;
    transform: translateY(-10%);
  }
}


#about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}

.about-container1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin: 50px auto;
}

.about-container1 h1 {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  color: #1f5399;
}

.about-container1 p {
  max-width: 700px;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.apply-now {
  font-weight: 600;
  font-size: 24px;
  background-color: #03265f;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
  padding: 6px 12px;
  transition: opacity 0.3s;
  border-radius: 2px;
}

.about-container2 {
  background-color: #03265f;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  padding: 100px;
  width: 100%;
}

.about-container2 img {
  width: 100%;
  max-width: 500px;
}

.about-subcontainer1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px
}

.about-subcontainer1 h2 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #FFFFFF;
}

.about-subcontainer1 p {
  max-width: 500px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #FFFFFF;
  text-align: justify;
}

@media screen and (max-width:1024px) {
  #about {
    margin-top: 0px;
  }

}

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

  .about-container1 {
    gap: 25px;
    margin: 50px 25px;
    text-align: justify;
  }

  .about-container1 h1 {
    font-size: 38px;
  }

  .about-container1 p {
    font-size: 16px;
    line-height: 1.6;
  }

  .apply-now {
    font-size: 20px;
    padding: 6px 12px;
  }

  .about-container2 {
    gap: 50px;
    padding: 50px;
  }

  .about-subcontainer1 h2 {
    font-size: 20px;
  }

  .about-subcontainer1 p {
    font-size: 14px;
    line-height: 1.6;
  }

}

/* Section Wrapper */
#benefit {
  padding: 100px 20px;
  background: #f7f9fc;
  display: flex;
  justify-content: center;
}

/* Container */
.benefit-container1 {
  max-width: 1200px;
  width: 100%;
}

/* Title */
.benefit-container1 h2 {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  color: #1f5399;
  margin-bottom: 28px;
}

/* Remove default UL style */
.benefit-container1 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Each card */
.benefit-container1 ul li {
  background: linear-gradient(135deg, #ffffff, #eef3ff);
  border-radius: 16px;
  padding: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.09);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Subtle hover effect */
.benefit-container1 ul li:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}

/* Decorative icon bullet on left */
.benefit-container1 ul li::before {
  content: "➤";
  font-size: 1.3rem;
  color: #4b6bff;
  margin-right: 5px;
}


@media screen and (max-width:768px) {
  #benefit {
    padding: 50px 20px;
  }

  .benefit-container1 h2 {
    font-size: 32px;
  }

  .benefit-container1 ul {
    grid-template-columns: repeat(1, 1fr);
  }

}

/* Section Wrapper */
#process {
  padding: 60px 20px;
  background: #ffffff;
  display: flex;
  justify-content: center;
}

/* Container */
.process-container {
  width: 100%;
  text-align: center;
  margin: 0px auto;
}

/* Title */
.process-container h2 {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  color: #1f5399;
  margin-bottom: 20px;
}

/* Fee Label */
.process-container .fee {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #444;
}

.process-container .fee span {
  font-weight: 400;
  color: #666;
}

/* Mode Paragraph */
.process-container .mode {
  font-size: 18px;
  margin-bottom: 35px;
  color: #444;
}

/* Steps List */
.process-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
}

/* Each Step Card */
.process-steps li {
  width: 100%;
  max-width: 400px;
  height: 110px;
  background: linear-gradient(135deg, #eef3ff, #ffffff);
  border-radius: 16px;
  padding: 18px 22px;
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover animation */
.process-steps li:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}

/* Step Number Circle */
.step-number {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: #4b6bff;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==== RESPONSIVE ==== */
@media screen and (max-width: 768px) {

  #process {
    padding: 30px 20px;
  }

  /* Title */
  .process-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }

  /* Fee Label */
  .process-container .fee {
    font-size: 18px;
  }

  /* Mode Paragraph */
  .process-container .mode {
    font-size: 16px;
    margin-bottom: 20px;
  }

  /* Each Step Card */
  .process-steps li {
    width: 100%;
    max-width: 400px;
    height: fit-content;
    font-size: 14px;
  }

}

#glimpses {
  margin: 100px 0px;
}

.glimpse-container1 h2 {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  color: #1f5399;
  margin-bottom: 50px;
}

/* ---- Swiper containers ---- */
.mySwiperTop,
.mySwiperBottom {
  width: 100%;
  position: relative;
  /* required for the fade pseudo elements */
  box-sizing: border-box;
  margin-bottom: 28px;
}

/* set explicit height */
.mySwiperTop .swiper-wrapper,
.mySwiperBottom .swiper-wrapper {
  align-items: center;
}

/* slide size for slidesPerView: 'auto' */
.swiper-slide {
  width: 100%;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 26px rgba(11, 23, 38, 0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  display: block;
}

.swiper-slide img:hover {
  transform: scale(1.04);
  box-shadow: 0 14px 40px rgba(11, 23, 38, 0.18);
}

/* subtle left/right fade edges (optional) */
.mySwiperTop::before,
.mySwiperTop::after,
.mySwiperBottom::before,
.mySwiperBottom::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 90px;
  z-index: 10;
  pointer-events: none;
}

.mySwiperTop::before,
.mySwiperBottom::before {
  left: 0;
  background: linear-gradient(90deg, #f7fbff 0%, rgba(247, 251, 255, 0) 100%);
}

.mySwiperTop::after,
.mySwiperBottom::after {
  right: 0;
  background: linear-gradient(270deg, #f7fbff 0%, rgba(247, 251, 255, 0) 100%);
}

/* hide native swiper navigation if present */
.swiper-button-next,
.swiper-button-prev,
.swiper-pagination {
  display: none;
}

/* responsive tweak */

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

  #glimpses {
    margin: 50px 0px;
  }

  .glimpse-container1 h2 {
    font-size: 32px;
  }

  .swiper-slide {
    max-width: 250px;
  }
}

footer {
  background: #0B1221;
  color: #e8edf3;
  padding: 50px 25px 10px 25px;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

footer p {
  font-size: 14px;
  color: #A3B0C0;
}

.footer-subcontainer1 {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-subcontainer2 {
  padding: 10px;
}

.footer-subcontainer3 {
  width: 100%;
  max-width: 350px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: justify;
}

.footer-logo {
  width: 100%;
  max-width: 280px;
}

.footer-subcontainer4 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
}

.address h3 {
  font-size: 18px;
  margin-bottom: 18px;
  color: #ffffff;
  font-weight: 600;
}

/* ==== Footer Links ==== */
.address ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.address ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.address a {
  color: #e8edf3;
  text-decoration: none;
  transition: color .2s;
}

.address a:hover {
  color: #4da6ff;
}

.address ul li img {
  width: 16px !important;
  height: 16px !important;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-top: 2px;
}

/* ==== RESPONSIVE ==== */
@media screen and (max-width: 768px) {

  .footer-subcontainer1 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
  }

  .address h3 {
    text-align: center;
  }

}

@media screen and (max-width: 468px) {
  footer {
    padding: 50px 15px 10px 15px;
  }

  footer p {
    font-size: 12px;
  }

  .footer-subcontainer1 {
    gap: 50px;
  }

  .footer-subcontainer3 {
    width: 100%;
    max-width: 300px;
    min-width: 250px;
    font-size: 14px;
  }

  .footer-logo {
    width: 100%;
    max-width: 200px;
  }

  .footer-subcontainer4 {
    gap: 25px;
  }

}