/* =========================
   SCROLL REVEAL ANIMATION
========================= */
.scroll-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}


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

body {
  background: #fff;
  font-family: Arial, sans-serif;
}

/* OVERLAY BACKGROUND */
.top-banner {
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 700px;
  z-index: 99999;
  display: flex;
  justify-content: center;
  animation: slideDown 0.6s ease forwards;
}

/* BANNER BOX */
.banner-content {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* IMAGE */
.banner-content img {
  width: 100%;
  display: block;
}

/* CLOSE BUTTON */
.close-banner {
  position: absolute;
  top: 8px;
  right: 10px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.close-banner:hover {
  background: red;
}

/* ANIMATION */
@keyframes slideDown {
  to {
    top: 20px;
  }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .top-banner {
    width: 95%;
  }
}

/* scroll badge */
#scrollBadge {
  position: fixed;
  top: 70px;
  left: -100px;           /* start off-screen */
  width: 100px;
  z-index: 9999;
  transition: left 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

#scrollBadge img {
  width: 148%;
  display: block;
}

#scrollBadge.show {
  left: 0px;   /* slide into screen */
  opacity: 1;
}

#scrollBadge.hide {
  left: -150px; /* slide out of screen */
  opacity: 0;
}
/* enroll */
/* FIXED ENROLL BUTTON */
.enroll-fixed {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
}

.enroll-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  /* background: linear-gradient(90deg, #1aa14a 0%, #0b3c91 100%); */
  background-color: #143a59;
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.enroll-btn span {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.enroll-btn:hover {
  transform: translateY(-2px);
}

.enroll-btn:hover span {
  transform: translateX(5px);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .enroll-fixed {
    left: 10px;
    bottom: 10px;
  }

  .enroll-btn {
    padding: 10px 14px;
    font-size: 14px;
  }
}


/* HEADER */
.header-area{
  position:fixed;
  top:0;
  width:100%;
  z-index:999;
  background:transparent;
  transition:.3s ease;
}
.header-area.scrolled{
  background:#143a59;
  box-shadow:0 6px 20px rgba(0,0,0,.2);
}

.main-nav{
  min-height:80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  color:#fff;
  font-size:22px;
  font-weight:700;
  text-decoration:none;
  white-space:nowrap;
}

/* NAV */
/* HEADER */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  transition: background 0.3s ease;
}

.header.scrolled {
  background: #0b2c3d;
}

/* NAV CONTAINER */
.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}

/* NAV */
.nav-list {
  list-style-type: none;
  display: flex;
  gap: 25px;
}
.nav-list li,
.submenu li {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
.nav-list li {
  position: relative;
}

.nav-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 0;
}

/* SUBMENU */
.dropdown {
  position: relative; /* ensure parent li is relative */
}
.submenu {
   
  position: absolute;
  top: 130%;
  left: 0;
  background: #fff;
  min-width: 180px;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
 transform: translateX(-50%) translateY(10px);
  transition: 0.3s;
  z-index: 9999;
}

.submenu li a {
  color: #333;
  display: block;
  padding: 10px 15px;
}

.submenu li a:hover {
  background: #f2f2f2;
}

/* DESKTOP HOVER FIX */
.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* MOBILE */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0b2c3d;
    display: none;
  }

  .nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    padding: 10px 0;
      align-items: center; 
  text-align: center;
  }

  .nav-list li {
    width: 100%;
    /* margin: 5px 0; */
  }
  .nav-list li a{
    display: inline-block;
  }

  .submenu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .dropdown.active .submenu {
    display: block;
  }
}

/* HERO */
.main-banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 58, 89, 0.6);
  display: flex;
  align-items: center;
}

.caption {
  color: #fff;
  max-width: 650px;
}

.caption h6 {
  text-transform: uppercase;
  font-size: 14px;
}

.caption h2 {
  font-size: 48px;
  font-weight: 800;
  margin: 15px 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .caption h2 {
    font-size: 32px;
  }
}


/* 
 */

 /* WHITE BACKGROUND AREA */
.exam-success-wrapper {
  background: #ffffff;
  padding: 30px 0;   /* 👈 upar & niche gap */
}

/* YELLOW STRIP */
.exam-success-strip {
  background: #ffd45a;
  padding: 35px 0;
}

/* CONTENT ALIGN */
.strip-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.exam-success-strip h2 {
  font-size: 28px;
  font-weight: 500;
  color: #000;
  margin: 0;
}

.exam-success-strip h2 span {
  font-weight: 800;
}

/* BUTTON */
.know-more-btn {
  background: #0b2c6f;
  color: #fff;
  padding: 12px 26px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.know-more-btn:hover {
  background: #081f4d;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .strip-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
/* carsoul */


.carousel-item {
  height: 90vh;
  position: relative;
  transition: transform 0.8s ease-in-out;
}

.carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.75); /* lightweight overlay effect instead of separate div */
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4); /* thoda halka overlay, smooth feel */
}

.carousel-caption {
  bottom: 25%;
  z-index: 2;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #f5c542;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.carousel-caption p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .carousel-item {
    height: 60vh;
  }

  .carousel-caption h1 {
    font-size: 1.8rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }
}

/* gallery */
.info-grid{
  background:#fff;
  padding:60px 0;
}

.info-card{
  position:relative;
  overflow:hidden;
  height:260px;
}

/* IMAGE */
.info-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}

/* 🔵 BOTTOM STRIP – DEFAULT VISIBLE */
.info-strip{
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  padding:12px 14px;
  background:#143a59;
  color:#fff;
  font-size:16px;
  font-weight:600;
  z-index:2;
  transition:.3s ease;
}

/* 🔵 FULL OVERLAY – DEFAULT HIDDEN */
.info-overlay{
  position:absolute;
  inset:0;
  background:rgba(20,58,89,0.9);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  opacity:0;
  transition:.4s ease;
  z-index:3;
}

.info-overlay h5{
  color:#fff;
  font-size:18px;
  margin-bottom:12px;
}

.info-overlay a{
  background:#fff;
  color:#143a59;
  padding:8px 18px;
  border-radius:4px;
  font-size:14px;
  text-decoration:none;
}

/* ✅ HOVER BEHAVIOUR */
.info-card:hover img{
  transform:scale(1.1);
}

.info-card:hover .info-overlay{
  opacity:1;
}

/* 🔥 STRIPE HIDE ON HOVER */
.info-card:hover .info-strip{
  opacity:0;
}

/* MOBILE */
@media(max-width:768px){
  .info-card{
    height:220px;
  }
}


/* gallery */
.stats-section {
  background: #fff;     /* WHITE SAME */
  padding: 70px 0;
}

.stat-box {
  padding: 20px;
}

.stat-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
  background: #143a59;      /* YOUR COLOR */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon img {
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
}

.stat-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #000;
}

.stat-box p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .stat-icon {
    width: 90px;
    height: 90px;
  }

  .stat-icon img {
    width: 42px;
    height: 42px;
  }
}
/* testmonial */
/* msges */
.whgs-message-section {
  padding: 70px 0;
  background: #ffffff;
}

.whgs-message-wrapper {
  position: relative;
  min-height: 260px;
}

.whgs-message-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(70px);
  transition: all 0.9s ease;
  background: #f7f9fc;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.whgs-message-card.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.whgs-message-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #143a59;
}

.whgs-message-title {
  font-size: 26px;
  font-weight: 700;
  color: #143a59;
  margin-bottom: 15px;
}

.whgs-message-text {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

.whgs-message-name {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  color: #143a59;
}

/* testimonial */
.testimonial-section{
  padding:90px 0;
}

.section-title{
  font-size:34px;
  margin-bottom:50px;
}

.testimonial-slider{
  position:relative;
  overflow:hidden;
}

.testimonial-track{
  display:flex;
  transition:transform .6s ease;
}

.testimonial-item{
  min-width:100%;
  display:flex;
  gap:35px;
  padding:40px;
  border:1px solid #e5e5e5;
  border-radius:8px;
  align-items:center;
}

/* IMAGE */
.testimonial-image img{
  width: 400px;
  height:400px;
  object-fit:cover;
  border-radius:5%;
  border:3px solid #ddd;
}

/* CONTENT */
.testimonial-content p{
  font-size:15px;
  line-height:1.8;
  color:#333;
  margin-bottom:18px;
}

.testimonial-content h4{
  font-size:16px;
  margin:0;
}

.testimonial-content span{
  font-size:13px;
  color:#777;
}

/* DOTS */
.dots{
  margin-top:25px;
  display:flex;
  gap:10px;
}

.dots span{
  width:28px;
  height:4px;
  background:#ddd;
  cursor:pointer;
}

.dots span.active{
  background:#000;
}

/* MOBILE */
@media(max-width:768px){
  .testimonial-item{
    flex-direction:column;
    text-align:left;
  }
}



/* NEWS SECTION */
.news-section{
  background:#fff;
}
.heading{
      color: #143a59;
}
/* SLIDER */
.news-slider{
  
  overflow:hidden;
  width:100%;
  position:relative;
}

/* TRACK */
.news-track{
  display:flex;
  gap:20px;
  animation: scrollNews 25s linear infinite;
}

/* PAUSE ON HOVER (CLICK FRIENDLY) */
.news-slider:hover .news-track{
  animation-play-state: paused;
}

/* ITEM */
.news-item{
  flex:0 0 auto;
}

.news-item img{
  width:180px;
  height:240px;
  object-fit:cover;
  cursor:pointer;
  border:1px solid #ccc;
  transition:.3s;
}

.news-item img:hover{
  transform:scale(1.05);
}

/* ANIMATION */
@keyframes scrollNews{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

/* MOBILE */
@media(max-width:768px){
  .news-item img{
    width:140px;
    height:200px;
  }
}


/* enquiry */
.abj-wa-float {
  position: fixed;
  right: 20px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.abj-wa-float img {
  width: 34px;
  height: 34px;
}

.abj-wa-float:hover {
  transform: scale(1.1);
}

/* Mobile fix */
@media (max-width: 768px) {
  .abj-wa-float {
    right: 15px;
    bottom: 20px;
    width: 55px;
    height: 55px;
  }

  .abj-wa-float img {
    width: 30px;
    height: 30px;
  }
}


/* ===== Footer Styling ===== */
.main-footer {
  background: #0d1b2a;
  color: #ffffff;
  padding: 60px 0 20px;
}

.main-footer h5 {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
}

.main-footer h5::after {
  content: '';
  width: 40px;
  height: 2px;
  background: #f4a261;
  display: block;
  margin-top: 6px;
}

.main-footer p {
  font-size: 14px;
  line-height: 1.7;
  color: #d1d1d1;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links li a {
  color: #d1d1d1;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: #f4a261;
  padding-left: 5px;
}

.main-footer hr {
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 13px;
  color: #bcbcbc;
  margin: 0;
}
