@import url('https://fonts.googleapis.com/css2?family=Inria+Serif:wght@400;700&display=swap');





@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700&family=Poppins:wght@600&display=swap');

.academic-overview {
  background: #3496CA;
  min-height: 700px;
  padding: 35px 70px;
  position: relative;
  overflow: hidden;

}

.overview-title {
  color: white;
  font-size: 30px;
  font-weight: 700;

}

.overview-number {

  position: absolute;
  right: 70px;
  top: 20px;

  font-size: 90px;
  font-weight: 700;
  color: #ffffff40;

}

.overview-wrapper {

  display: flex;
  align-items: center;
  margin-top: 25px;

}

/* LEFT */

.overview-menu {

  width: 340px;
  position: relative;

}

.progress-line {

  position: absolute;
  left: 48px;
  top: 0;

  height: 504px;
  width: 6px;

  background: #98DBFF;
  border-radius: 10px;

}

.progress-fill {

  width: 100%;
  height: 25%;
  background: #9747FF;
  border-radius: 10px;

  transition: .4s;

}

.menu-item {

  display: flex;
  align-items: center;
  gap: 25px;

  margin-bottom: 35px;
  cursor: pointer;

}

.circle {

  width: 100px;
  height: 100px;
  background: #98DBFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;

  border: 15px solid #48a0cf;

}

.circle span {

  width: 24px;
  height: 24px;

  background: #9747FF;
  border-radius: 50%;
  z-index: 1;

}

.menu-item h3 {

  color: white;

  font-family: Poppins;

  font-size: 20px;
  line-height: 25px;
  margin-left: -11px;
    margin-right: 9px;

}

.menu-item.active h3 {

  color: #410095;

}

/* CARD */
.overview-card {

  width: 100%;
  min-height: 510px;

  background: #410095;

  border-radius: 25px;

  padding: 50px 35px;

  position: relative;

  z-index: 2;

}

.overview-card:before {
  content: "";
  position: absolute;
  left: -30px;
  top: 90px;

  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;

  border-right: 30px solid #410095;

}

.overview-card h2 {

  color: #FFE017;

  font-size: 26px;

}

.overview-card p {

  color: white;

  font-size: 20px;

  line-height: 28px;
width: 86%;
}

.points div {

  display: flex;

  align-items: center;

  gap: 15px;

  margin: 20px 0;

  color: white;

  font-size: 20px;

}



.points span {

  width: 32px;
  height: 32px;

  border-radius: 50%;

}


.yellow {
  background: #FFF9AA;
}


.green {
  background: #ACFFB6;
}


.pink {
  background: #FD98FF;
}

.atdiv {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  background-color: #92278f;
  width: 41%;
  padding: 7px;
  border-radius: 6px;
}

.overview-card button {
  margin-top: 25px;
  background: white;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  color: #2D95FF;
  font-weight: 500;
  text-transform: uppercase;
  font-family: 'Inria Serif';
}






/* IMAGE */


.overview-image {

  margin-left: -80px;

  z-index: 3;

}


.overview-image img {

  width: 513px;

  height: 411px;

  object-fit: cover;

  border-radius: 25px;

  border: 8px solid #3496CA;

}


@media(max-width:992px) {


  .academic-overview {
    padding: 30px 20px;
  }



  .overview-wrapper {

    flex-direction: column;

  }



  .overview-menu {

    width: 100%;

  }



  .overview-card {

    width: 100%;
    margin-top: 30px;

  }



  .overview-image {

    margin: 30px 0 0;

  }


  .overview-image img {

    width: 100%;
    height: auto;

  }


}
















#point1{
  color: rgb(255, 249, 170);
}

#point2{
  color: rgb(172, 255, 182);
}

#point3{
  color:rgb(253, 152, 255);
}


* {
  padding: 0;
  margin: 0;
}

.stikyheader {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
}

.logo-section {
  width: 220px;
  height: 125px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-right: 1px solid #eee;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: #0346a9 !important;
}

.logo-section img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.right-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.top-bar {
  height: 50px;
  background-color: #004877;
  color: white;
  font-size: 14px;
  padding: 2px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;

}

.top-icons {
  display: flex;
  gap: 15px;


}

.top-icons a {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  left: 70px;

  transition: transform 0.3s;
}

.top-icons a i {
  transition: transform 0.3s;
  color: #ffffff;
}

.top-icons a .icon-text {
  margin-left: 8px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: #f7f4f5;
  font-size: 14px;
}

.top-icons a:hover i {
  transform: translateX(-6px);
}

.top-icons a:hover .icon-text {
  opacity: 1;
  transform: translateX(0);
}

.nav-data {
  color: white;
  text-decoration: none;
  padding: 10px;

}

.top-icons a::after {
  content: attr(data-text);
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: #004877;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 12px;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.3s;
}

.separator {
  height: 5px;
  background-color: white;
  width: 100%;
}

.main-navbar {
  background-color: #fff;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.main-navbar .nav-link {
  font-weight: bold;
  color: #474646;
  margin: 0 15px;
  text-transform: uppercase;
  font-size: 15px;
}

@media (max-width: 1190.98px) {
  .main-navbar .nav-link {
    font-size: 12px;
    font-weight: bold;
    margin: 0 10px;
  }
}



.main-navbar .nav-link:hover {
  color: #004877;
}

.search-icon {
  background-color: #004877;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  top: 20px;
  right: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  z-index: 1;

}


.search-icon i {
  color: #ffffff;
  font-size: 20px;
}

.search-overlay {
  position: fixed;
  top: -150px;
  left: 0;
  width: 100%;
  background: #fff;
  height: 100px;
  overflow: hidden;
  transition: top 0.4s ease;
  z-index: 1050;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #004877;
}


.search-overlay.active {
  top: 0;
}

.search-box {
  width: 90%;
  max-width: 600px;
  position: relative;
  background-color: #004877;
}

.search-box input {
  width: 100%;
  padding: 15px 20px;
  font-size: 18px;
  border: 2px solid #004877;
  outline: none;
}

.search-box .close-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  cursor: pointer;
  color: #004877;
}

.mobile-menu-overlay {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 70%;
  background-color: #004877;
  transition: top 0.4s ease;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;

}

.mobile-menu-overlay.active {
  top: 0;
}

.mobile-menu-overlay a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  margin: 12px 0;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  font-weight: bold;
  align-items: center;
  gap: 5px;
  color: #313030;
  cursor: pointer;
}

.navbar-nav {
  position: absolute;
  top: 10px;
  left: 0px;
  gap: 15px;
  border-bottom: 1px solid #eee;
  width: 100%;
  padding: 10px;
}

.mlzss {
  font-size: 18px;
}

.empworing {
  font-size: 34px;
  color: #004877;
  font-weight: 600;
}

@media (max-width: 991px) {
  .main-navbar {
    justify-content: space-between;
  }



  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 12px 20px;
    font-size: 18px;
    color: #100f0f;
    border: none;
    border-radius: 5px;
    border-bottom: 1px solid #eee;
    width: 100%;
    height: 60px;
    box-sizing: border-box;
  }

  .top-bar {
    height: 55px;
    flex-direction: row;
    padding: 10px;
    align-items: flex-start;
    gap: 10px;
  }

  .nav-data {
    display: none;
  }



  .top-icons {
    justify-content: flex-start;
    box-sizing: border-box;

  }

  .top-icons .nav-data {
    display: none;
  }

  .top-icons i {
    border: 1px solid rgb(47, 46, 46);
    border-radius: 6px;
    padding: 10px;
  }

  .icon-text {
    display: none;
  }

  .search-icon {
    position: fixed;
    top: 0px;
    right: 20px;
  }

  .search-icon i {
    font-size: 24px;
  }

  .logo-section {
    border-bottom: 1px solid #f9f7f7;
    position: relative;
  }
}


@media (max-width: 760px) {
  .main-navbar {
    justify-content: space-between;
  }

  .testimonial-section {
    max-width: 1200px;
    margin: 0px auto;
    padding: 40px 20px;
    font-family: "Segoe UI", sans-serif;
    overflow: hidden;
    position: relative;
  }

  .progress-line {
    position: absolute;
    left: 40px;
    top: 0;
    height: 510px;
    width: 6px;
    background: #98DBFF;
    border-radius: 10px;
  }

  .circle {
    width: 85px;
    height: 85px;
    background: #98DBFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
   border: 15px solid #48a0cf;
  }

  .menu-item h3 {
    color: white;
    font-family: Poppins;
    font-size: 18px;
    line-height: 25px;
  }

  .points div {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    color: white;
    font-size: 18px;
  }

  .menu-item h3 br {
    display: none;
  }

  .menu-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 14px;
    cursor: pointer;
  }

  .empworing {
    font-size: 20px;
    color: #004877;
    font-weight: 600;
  }

  .mlzss {
    font-size: 15px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 12px 20px;
    font-size: 13px;
    color: #100f0f;
    border: none;
    border-radius: 5px;
    border-bottom: 1px solid #eee;
    width: 100%;
    height: 60px;
    box-sizing: border-box;
  }

  .top-bar {
    height: 55px;
    flex-direction: row;
    padding: 10px;
    align-items: flex-start;
    gap: 10px;
  }

  .nav-data {
    display: none;
  }

  .atdiv {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    background-color: #92278f;
    width: 100%;
    padding: 7px;
    border-radius: 6px;
  }


  .top-icons {
    display: none;
    justify-content: flex-start;
    padding-left: 0;
    box-sizing: border-box;

  }

  .top-icons .nav-data {
    display: none;

  }

  .icon-text {
    display: none;
  }

  .search-icon {
    position: fixed;
    top: 25px;
    right: -2px;
    width: 50px;
    height: 50px;
    padding: 10px;
  }

  .search-icon i {
    font-size: 20px;

  }

  .logo-section {
    position: fixed;
    border-bottom: 1px solid #f9f7f7;
    position: relative;
    width: 23%;
  }

}

.mobile-navbar {
  background: #fff;
  color: #fff;
}

.mobile-navbar .navbar-brand {
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}



.mobile-navbar .navbar-toggler-icon {
  filter: invert(1);
}



.offcanvas-title {
  font-weight: bold;
}



.bottom-caption {
  position: absolute;
  bottom: 5px;
  left: 5% !important;
  right: 5%;

  padding: 15px 25px;
  border-radius: 10px;
}

.banner-text {
  font-size: 35px;
  font-weight: bold;
  text-transform: capitalize;
  font-family: 'Inria Serif', serif;
}

p {
  font-family: 'Inria Serif', serif;
}

.banner-text2 {
  font-size: 20px;
  font-weight: bold;
  font-family: 'Inria Serif', serif;
}

.register-btn {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  text-transform: uppercase;
  padding: 7px 30px;
  font-size: 20px;
  font-family: 'Inria Serif', serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.register-btn:hover {
  background: #fff;
  color: #000;
  /* Or use your brand color here */
}

.carousel-indicators-custom {
  display: flex;
  gap: 10px;
}

.carousel-indicators-custom .dot {
  height: 12px;
  width: 12px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.carousel-indicators-custom .dot.active {
  opacity: 1;
}

.download-brochures-btn {
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
  padding: 7px 20px;
  font-size: 16px;
  text-transform: uppercase;
  font-family: 'Inria Serif', serif;
  transition: all 0.3s ease;
  cursor: pointer;
}

.download-brochures-btn:hover {
  background-color: #fff;
  color: #000;
  /* Or your brand color */
}

.carousel-indicators-custom {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.carousel-indicators-custom .dot {
  height: 12px;
  width: 12px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.carousel-indicators-custom .dot.active {
  opacity: 1;
  background-color: #fff;
}

.carousel-indicators-custom {
  position: absolute;
  bottom: 20px;
  left: 100px;
  /* Adjusted to position left */
  z-index: 10;
  display: flex;
  gap: 8px;
}

.carousel-indicators-custom .dot {
  height: 12px;
  width: 12px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.carousel-indicators-custom .dot.active {
  opacity: 1;
  background-color: #fff;
}

.container1{
  width: 92%;
    margin: auto;
}
.stage-card {

  border-radius: 10px;
  background-color: #928f8f0d !important;
  font-family: 'Inria Serif', serif;
  /* box-shadow: 0 4px 6px rgba(0,0,0,0.1); */
}

.stage-card:hover {
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(7, 0, 33, 0.428);
  border-radius: 0px;
  border: 1px solid #3496CA;
  border-radius: 8px;
  background-color: #EDDEFF !important;
}

.stage-card:hover .read-more {
  background-color: #003366;
  color: #fff;
  border-color: #003366;
}

.floating-img {
  animation: floatUpDown 2s ease-in-out infinite;
  will-change: transform;
}

@keyframes floatUpDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.stage-card:hover .read-more i,
.stage-card:hover .read-more span {
  color: #fff;
}

.stage-list {
  color: #003366;
  font-weight: bold;
}

.stage-focus {
  color: #3496CA;
  font-style: italic;
}

/* .read-more {
  color: #003366;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid #003366;
  display: inline-flex;
  align-items: center;
} */
.read-more {
  color: #003366;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid #003366;
  padding: 8px 18px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.read-more i {
  margin-left: 5px;
  transition: transform 0.2s;
}

.read-more:hover i {
  transform: translateX(3px);
}



.campus-icon {
  width: 60px;
  height: 60px;
  background-color: #e8f8f9;
  border-radius: 15px;
  margin: 0 auto 20px;
}

.campus-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.campus-desc {
  font-size: 0.95rem;
  color: #555;


}

.testimonial-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;

  font-family: "Segoe UI", sans-serif;
  overflow: hidden;
  position: relative;
}

.testimonial-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
  overflow: auto;
  overflow-x: hidden;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 13.33px);
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #000;
  text-align: center;
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card .quote {
  font-size: 50px;
  color: #ccc;
  margin-bottom: 0px;
  line-height: 0.7;
}

.testimonial-card p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 7px;
  font-style: italic;
}

.author h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  color: #000;
}

.author span {
  font-size: 0.9rem;
  color: #777;
}

.testimonial-dots {
  text-align: center;
  margin-top: 25px;
}

.testimonial-dots .dot {
  height: 10px;
  width: 10px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.testimonial-dots .dot.active {
  background-color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-slider {
    flex-wrap: nowrap;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }
}


.faq-section {
  padding: 20px 20px;
  background-color: #fff;
}

.faq-section h2 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: #2f2f5f;
}

.faq-section p {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

.accordion-button::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='%23000000' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M1.646 5.146a.5.5 0 0 1 .708 0L8 10.793l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-size: 1rem;
  transition: transform 0.2s;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.accordion-button {
  background-color: #fff;
  font-weight: 500;
  border-radius: 6px;
  padding: 1rem 1.25rem;
}

.accordion-body {
  color: #666;
  font-size: 15px;
  padding: 1rem 1.25rem;
}


.nav-pills .nav-link {
  color: #fff;
  line-height: 40px;
}

.nav-pills .nav-link.active {
  background-color: transparent;
  font-weight: bold;
  opacity: 1;

}

.timeline {
  position: relative;
  margin-left: 20px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #fff;
  border-radius: 2px;
}

.timeline .nav-link {
  position: relative;
  padding-left: 2.5rem;
}

.timeline .nav-link::before {
  content: '';
  position: absolute;
  left: 1px;
  top: 12px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  /* border: 5px solid #1ab2ff; */
  z-index: 1;
}

.timeline .nav-link.active::before {
  background: #1ab2ff;
}

.content-box {
  background-color: #5dbbe3;
  padding: 30px;
  color: white;
  border: 2px solid #fff;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  position: relative;
  margin-right: -30px;
}

@media (max-width: 768px) {
  .content-box {
    margin-right: 0;
  }

  .disply {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .content-box {
    margin-right: 0;
  }
}

.img-box {
  z-index: 1;
  position: relative;
}

.img-box img {
  max-width: 100%;
  height: auto;
  border-radius: 0;
}

.approach-section {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}

.approach-title {
  color: #5dbbe3;
  font-weight: bold;
  margin-bottom: 10px;
}

.approach-subtitle {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 40px;
}

.student-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: #EAF6FF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.student-icon i {
  font-size: 34px;
  color: #3496CA;
}

.review-stars {
  margin-top: 5px;
  text-align: center;
}

.review-stars i {
  color: #FFC107;
  font-size: 13px;
  margin: 0 2px;
}

.approach-box {
  padding: 20px;
  margin-bottom: -12px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  transition: background-color 0.3s ease;
  cursor: pointer;

}

.approach-box:hover {
  background-color: #003878;
  /* Hover background color */
}

.approach-box:hover .approach-title-box {
  color: #F9B80A;
  /* Title color on hover */
}

.approach-title-box {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #BEEEFF;
  /* Default title color */
  font-family: 'Inria Serif', serif;
  transition: color 0.3s ease;
}



.approach-description {
  font-size: 0.9rem;
  color: #84caff;
}

.approach-number {
  background-color: #2a7bbd;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-left: 15px;
  flex-shrink: 0;
}

.phone-image {
  max-width: 100%;
  border-radius: 30px;
}

@media (max-width: 768px) {
  .desktop-image {
    display: none;
  }

  .mobile-image {
    display: block;
    margin: 20px auto;
  }
}

@media (min-width: 769px) {
  .mobile-image {
    display: none;
  }
}

.why-card {
  border-radius: 10.464px;
  border: 0.872px solid #FFF;
  background: rgba(255, 255, 255, 0.40);
  backdrop-filter: blur(43.6px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  background: #fff !important;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}

.campus-card-1 {
  padding: 30px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f4fefd, #f9f7fd);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #9101ff;
}

.campus-card-2 {
  padding: 30px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #EDFDF3, #FAF7FC);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 5px solid #9101ff;
}

.campus-card-3 {
  padding: 30px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #EEEAFE, #FFFFFF);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #9101ff;
}

.campus-card-4 {
  padding: 30px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #E3FAE7, #EEEAFE);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #9101ff;
}

.campus-card-5 {
  padding: 30px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #FFE6E2, #EEEAFE);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 5px solid #9101ff;
}

.campus-card-6 {
  padding: 30px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #D8F7EE, #FFFFFF);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #9101ff;
}

.campus-card-7 {
  padding: 30px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #D8F7EE, #FFFFFF);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #9101ff;
}

.campus-card-8 {
  padding: 30px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #D8F7EE, #FFFFFF);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 5px solid #9101ff;
}

.campus-card-9 {
  padding: 30px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #D8F7EE, #FFFFFF);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #9101ff;
}

.campus-card-10 {
  padding: 30px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #D8F7EE, #FFFFFF);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #9101ff;
}

.campus-card-11 {
  padding: 30px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #D8F7EE, #FFFFFF);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 5px solid #9101ff;
}

.campus-card-12 {
  padding: 30px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #D8F7EE, #FFFFFF);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #9101ff;
}

/* Hover effect */
.campus-card-1:hover,
.campus-card-2:hover,
.campus-card-3:hover,
.campus-card-4:hover,
.campus-card-5:hover,
.campus-card-6:hover,
.campus-card-7:hover,
.campus-card-8:hover,
.campus-card-9:hover,
.campus-card-10:hover,
.campus-card-11:hover,
.campus-card-12:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.footer-section-banner {
  background-image: url('../banner/footer-section-banner.png');
  background-position: center;
  background-size: cover;
  background-repeat: none;
}

.subscribe-wrapper {
  max-width: 480px;
  margin: 0 auto;
}

.subscribe-label {
  font-size: 20px;
  font-weight: 600;
  color: #001848;
  font-family: 'Segoe UI', sans-serif;
}

.custom-subscribe {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.custom-subscribe input.form-control {
  border: none;
  padding: 15px 20px;
  font-size: 16px;
  border-radius: 0;
  font-family: 'Segoe UI', sans-serif;
}

.custom-subscribe input.form-control:focus {
  box-shadow: none;
}

.btn-subscribe {
  background-color: #000;
  color: #fff;
  padding: 0 25px;
  border: none;
  font-weight: 500;
  font-size: 16px;
  border-left: 1px solid #ddd;
  transition: background 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
}

.btn-subscribe:hover {
  background-color: #222;
}

.subscribe-label {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.icon-hover-container {
  display: inline-flex;
  padding: 0px 10px 4px 0px;
  align-items: center;
  /* background: #0C5482; */
}

.icon-box {
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  margin-right: 0;
  /* No gap by default */
  overflow: hidden;
}

.icon-box img {
  border-left: 2px solid rgba(190, 238, 255, 0.17);
  transition: transform 0.3s ease;
}

.icon-box span {
  color: white;
  font-size: 14px;
  margin-left: 15px;
  opacity: 0;
  width: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.icon-box:hover {
  margin-right: 20px;
  /* Add space to next icon on hover */
}

.icon-box:hover img {
  transform: translateX(6px);
  /* Move icon to right */
}

.icon-box:hover span {
  opacity: 1;
  width: auto;
}

.icon-link {
  text-decoration: none;
  display: inline-flex;
}

.section-wrapper {
  background: #f8f9fa;
  padding: 60px 20px;
}

.notice-box {
  background-color: #fff;
  border-left: 6px solid #00184C;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.notice-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #00184C;
  margin-bottom: 10px;
}

.enquiry-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control:focus {
  box-shadow: none;
  border-color: #0d6efd;
}

.btn-submit {
  color: #fff !important;
  background-color: #00184C !important;
}

.career-hero {
  background: linear-gradient(135deg, #00184C, #004B8D);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.about-banner {
  background: url('../banner/about-banner.png') no-repeat center center/cover;
  width: 100%;
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.about-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* Optional dark overlay */
  z-index: 1;
}

.about-banner h1 {
  position: relative;
  z-index: 2;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
}

/* Responsive height adjustments */
@media (max-width: 768px) {
  .about-banner {
    height: 150px;
  }

  .about-banner h1 {
    font-size: 30px;
    font-weight: bold;
  }
}

@media (max-width: 480px) {
  .about-banner {
    height: 120px;
  }

  .about-banner h1 {
    font-size: 20px;
    font-weight: bold;
  }
}


.heading-title {
  font-size: 30px;
  font-weight: bold;
}



@media (max-width: 480px) {

  .heading-title {
    font-size: 20px;
    font-weight: bold;
  }
}

.chain-network {
  background: #3495C9;
  font-size: 18px !important;
  font-weight: bold;
  padding: 20px;
  border-left: 6px solid #124F8D;
  color: #fff;
  line-height: 1.6;
}

.half-bg-section {
  position: relative;
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 35%, #D9EAFF 35%, #D9EAFF 100%);
  z-index: 1;
}

@media (max-width: 575.98px) {
  h3.responsive-heading {
    font-size: 25px !important;
  }
}

/* Custom color override for .table-dark */
.table-dark {
  background-color: #004884 !important;
  /* Deep blue */
  color: #ffffff !important;
}

/* Optional: also customize <th> and <td> inside .table-dark */
.table-dark th,
.table-dark td {
  background-color: #004080 !important;
  color: #ffffff !important;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

/* Full width background dropdown */
.dropdown-bg-full {
  max-width: 1455px;
  /* Almost full viewport width */
  left: -217px;
  right: 0;

  border-radius: 0;
  margin-top: 0;
  position: absolute;
  z-index: 999;
  padding: 20px 0;
  background: #fff;
  border-top: 2px solid #ddd;
  overflow: hidden;
}

/* Dropdown content area aligned to container */
.dropdown-bg-full .container {
  max-width: 1320px;
  /* Adjust to your container size */
  margin: 0 auto;
}

/* Dropdown items styling */
.dropdown-bg-full .dropdown-item {
  padding: 30px 20px;
  display: block;
  text-align: center;
  font-weight: 500;
}

/* Hover effect */
.dropdown-bg-full .dropdown-item:hover {
  background-color: #f8f9fa;
}

/* Responsive fixes for small devices */
@media (max-width: 992px) {
  .dropdown-bg-full {
    position: static;
    width: 100%;
    background: #fff;
    border-top: none;
    padding: 10px 0;
    left: 0 !important;
  }

  .dropdown-bg-full .dropdown-item {
    padding: 15px 20px;
  }
}

/* Hover to open dropdown with smoother experience */
.nav-item.dropdown {
  position: relative;
}

.nav-item.dropdown .dropdown-menu {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.12s ease, visibility 0.12s ease;

}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  margin-top: 0;
  top: 95% !important;
}

.custom-list {
  list-style-type: none;
  list-style-position: inside;
  padding-left: 0;
  margin: 0;

}

.custom-list li {
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
}

.custom-link {
  text-decoration: none;
  padding: 2px 4px;
  display: inline-block;
  color: #2677AF !important;
  font-weight: 400;

  font-size: 15px;
  transition: color 0.3s ease;
}

.custom-link:hover {

  background-color: #2677AF !important;
  color: #ffffff !important;
  border-bottom: 2px solid #001848 !important;

}

.navbar .dropdown-menu {
  background-color: #fff;
  border-radius: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .dropdown-menu a:hover {
  background-color: #f8f9fa;
  color: #000;
}

.line {
  width: 28px;
  height: 3px;
  background-color: #0980BF;
  border-radius: 2px;
  margin: 4px 0;
  animation: shrinkExpand 2s infinite ease-in-out;
}

@keyframes shrinkExpand {

  0%,
  100% {
    transform: scaleX(1);
  }

  50% {
    transform: scaleX(0.6);
  }
}

.custom-toggler {
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
}

.custom-toggler:focus,
.custom-toggler:active,
.custom-toggler:focus-visible {
  outline: none;
  box-shadow: none;
  border: none;
}

button:focus {
  outline: none !important;
  box-shadow: none !important;
}

.custom-mobile-navlink {
  display: block;
  padding: 14px 16px;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  background: #fff;
  border-bottom: 1px solid #eee;
  transition: background 0.3s;
  font-weight: 400;
  color: #004884;
  font-size: 17px;
}

.custom-mobile-navlink:hover {
  background-color: #F7F9FA;
  color: #0A66C2;
}

.member-frame {
  border-left: 10px double #004884;
  border-right: 10px double #004884;
  border-top: 10px double #004884;
  border-bottom: none;
}

.bg-chairman-banner {
  background-image: url('assets/banner/member-banner.png');
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 5px;
  box-sizing: border-box;
}

.quote {
  font-size: 58px;
  font-weight: bold;
  color: #D79C14;
}


@media (max-width: 767px) {
  .quote {
    font-size: 30px !important;
  }
}

.center-logo-container {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);

  z-index: 10;
}

.center-logo-bg {
  background: white;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  padding: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}


#scrollTopBtn {
  display: none;
  /* Hidden by default */
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #ffffff;
  color: #001848;
  cursor: pointer;
  padding: 9px 18px;
  border-radius: 50%;
  font-size: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s;
}

#scrollTopBtn:hover {
  background-color: #004884;
  color: #fff !important;
}







.image-box {
    position: relative;
    overflow: hidden;
    display: inline-block;
    border-radius: 12px; /* optional */
}

.image-box img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.image-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.7),
        transparent
    );
    transform: skewX(-25deg);
    transition: left 0.8s ease;
    z-index: 2;
}

.image-box:hover::before {
    left: 150%;
}

.image-box:hover img {
    transform: scale(1.05);
}
@media (max-width: 767.98px) {
    #carouselExampleCaptions .carousel-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }
}
