:root {
  /* Primary Brand Colors */
  --primary-blue: #0067b8;
  --primary-dark: #2c3a40;

  --secondary-blue: #1a4d7a;
  --light-gray: #e6e6e6;
  --overlay-gray: rgba(0, 0, 0, 0.25);

  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);

  --border-dark: #000000;
  --border-light: #cccccc;

  --white: #ffffff;
  --black: #000000;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}


.flow-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}


.flow-in.active {
    opacity: 1;
    transform: translateY(0);
}


.header-info {
  background-color: #0a284e;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 40px;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;

}


.header-info ul {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.header-info ul li {
  width: 30px;
  height: 30px;
  background-color: #1d4f91;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.2s ease;
}


.header-info ul li i {
  color: white;
  font-size: 14px;
}


.header-info ul li:hover {
  background-color: #207bff;
}


.logo h1 {
  position: relative;
  font-size: 32px;
  color: var(--primary-blue);
  margin: 0;
  display: inline-block;
  letter-spacing: 1px;
}


.logo .dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: red;
  border-radius: 50%;
  top: -5px;
  left: 4px;
}

.text a{
  text-decoration:none;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: var(--white);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


nav .logo h2 {
  margin: 0;
  font-size: 204px;
  color: var(--primary-blue);
  letter-spacing: 1px;

}

nav .logo .tagline {
  display: block;
  font-size: 12px;
    color: #a6a6a6;
  margin-top: 2px;
  font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}


nav ul.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0 70px 0 0;
  padding: 0;

}

nav ul.nav-links li a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: 0.2s ease;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
    padding-top: 1.7rem;
    padding-bottom: 1.7rem;
    padding-left: 25px;
    padding-right: 25px;
    color: rgba(0, 0, 0, 0.8);

}



nav ul.nav-links li a:hover {
  color: var(--primary-blue);
  border-bottom-color: var(--primary-blue);
}


@media (max-width: 992px) {
  nav ul.nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    width: 250px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    z-index: 999;
  }

  nav ul.nav-links.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .mega-menu {
    position: static !important;
    box-shadow: none !important;
    width: 100% !important;

  }
}


/* HAMBURGER ICON */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #000;
  display: block;
  transition: 0.3s;
}

/* MOBILE NAV */
@media (max-width: 992px) {
  .hamburger {
    display: flex;

  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    width: 250px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    z-index: 999;
  }

  .nav-links.show {
    display: flex;
  }

  .mega-menu {
    position: static !important;
    box-shadow: none !important;
    width: 100% !important;

  }



   nav ul.nav-links {
     display: none;
     position: absolute;
     top: 135px;
     right: 0;
     left: 0;
     background: white;
     padding: 20px;
     flex-direction: column;
     gap: 20px;
     width: 100%;
     box-shadow: 0 4px 20px rgba(0,0,0,0.1);
     border-radius: 0;
     z-index: 999;
   }

   nav ul.nav-links.show {
     display: flex;
   }


   .mega-menu {
     position: static !important;
     width: 100% !important;
     max-width: 100% !important;
     padding: 20px 15px;
     box-shadow: none !important;
     transform: none !important;
     opacity: 1 !important;
     visibility: visible !important;
   }

   .mega-container {
     flex-direction: column;
     gap: 25px;
   }

   .mega-column {
     width: 100%;
   }

   .mega-column a {
     white-space: normal !important;
   }

}




/* ===== MEGA MENU ===== */

.mega-dropdown:hover .mega-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(-79%) translateY(0);
  overflow: hidden;
}


.mega-dropdown {
  position: relative;
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(20px);
  width: min(95vw, 1400px);
  padding: 30px 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}



.mega-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.mega-column {
  width: 70%;
}

.mega-title {
  font-weight: 700;
  font-size: 1rem;
  color: #2c3a40;
  margin-bottom: 15px;
}

.mega-column ul {
  list-style: none;
  padding: 0;
}

.mega-column ul li {
  margin-bottom: 10px;
  padding-top:10px;
}

.mega-column a {
  color: #4f5d64;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.mega-column a:hover {
  color: #2c3a40;
  padding-left: 4px;
}
.mega-column ul li a {
 margin-bottom:-35px;
  color: #4f5d64;
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  padding: 4px 0;
}



.hero-img {
  height: 70vh;
  object-fit: cover;
}


.carousel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 60, 0.55);
  z-index: 1;
}


.carousel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  color: white;
  width: 80%;
  max-width: 800px;
}

.carousel-content h1 {
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 1px;
}

.carousel-content p {
  font-size: 18px;
  margin-bottom: 20px;
  opacity: 0.9;
}


.carousel-content .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 6px;
}

.btn-learn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #007BFF, #00C6FF);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-learn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
  background: linear-gradient(90deg, #0056b3, #00aaff);
}

.btn-learn .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-learn:hover .arrow {
  transform: translateX(5px);
}


.btn-learn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.4);
}

.info-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  max-width: 100%;
   margin: 0 auto;
  min-height: 400px;
  padding: 60px;

  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
div .text-muted{
margin-top:20%;
}

.text{
   color:#8c8c8c;
font-size:16px;
font-family: "Poppins", sans-serif;
font-style: normal;
}
.info-card:hover {
  background-color: #f8faff;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

.active-card {
  background: #4e7cf5;
  color: #fff;
  box-shadow: 0 10px 32px rgba(78, 124, 245, 0.35);
}
.active-card:hover{
  color:black !important;
}

.icon {
padding-top:30px;
  font-size: 48px;
  margin-bottom: 18px;
}

.info-card h2 {
padding-top:30px;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

.info-card p {
padding-top:15px;
  font-size: 16px;
  line-height: 1.55;
  font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.service-bg {
  color: white !important;
  position: relative;
  width: 100%;
  background-image: url("/assets/office.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}


.service-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}


.service-bg .container {
  position: relative;
  z-index: 1;
}

.services-section {
    background: #f3f7ff;
    color:white !important;
}

.service-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
    color: #9ca3af;
}

.service-title {
    font-size: 32px;
    font-weight: 700;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 5px 12px rgba(0,0,0,0.05);
    font-family: "Open Sans", sans-serif;
      font-optical-sizing: auto;
      font-style: normal;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.service-icon {
    width: 60px;
    fill: blue !important;

}


/* ===== Partner School Section ===== */

.partner-logo-strip {
  padding: 45px 0 30px;
  background: linear-gradient(
  to bottom,
  #ffffff 0%,
  #eef4ff 45%,
  #e3ecff 100%
);
}

.partner-logo-strip img {
  max-width: 300px;
  height: auto;
  border-radius: 150px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}


.partner-school {
  padding: 80px 0;
}

.partner-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.partner-logo img {
  max-width: 140px;
  height: auto;
  padding: 12px;
  background: #ffffff;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}


.partner-school {
  padding: 90px 0;
  background-color: #e3ecff;

}

.partner-school h2 {
  font-size: 2.2rem;
  color: #2c3a40;
}

.partner-school h1 span {
  color: #0d6efd;
}

.partner-school .school-text p {
  color: #6c757d;
  font-size: 1.05rem;
}

.school-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.school-list li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #2c3a40;
  display: flex;
  align-items: center;
  gap: 10px;
}

.school-list i {
  color: #0d6efd;
}

.school-btn {
  background: #0d6efd;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  transition: 0.3s ease;
}

.school-btn:hover {
  background: #084dbf;
  color: #fff;
}

.school-img-wrapper img {
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.06);
}

.mega-logo {
  border-top: 1px solid #eee;
  padding-top: 20px;
  text-align: center;
}
.logo .logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.mega-logo .logo .dot {
  color: #2f80ed;
}

.mega-logo .tagline {
  display: block;
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}


.mission-vision-section {
    background: #f9fbff;
}

.mv-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    color: #6b7280;
    text-transform: uppercase;
}

.mv-title {
    font-size: 32px;
    font-weight: 700;
    margin-top: 10px;
}

.mv-lead {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.mv-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

.mv-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #2563eb15;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #2563eb;
}

.mv-icon.vision {
    background: #10b98115;
    color: #059669;
}

.mission-vision-section {
    background: #f9fbff;
}

.mv-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    color: #6b7280;
    text-transform: uppercase;
}

.mv-title {
    font-size: 36px;
    font-weight: 700;
}

.mv-lead {
    max-width: 650px;
    margin: 0 auto;
    color: #6b7280;
}

/* Text Blocks */
.mv-text-block {
    background: #ffffff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    transition: .3s;
    font-family: "Open Sans", sans-serif;
      font-optical-sizing: auto;
      font-style: normal;
}

.mv-text-block:hover {
    transform: translateY(-5px);
}

/* Images */
.mv-image-container {
    position: relative;
}

.mv-image {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    object-fit: cover;
}

/* Decorative Shape Behind Image */
.mv-image-container::after {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: rgba(37, 99, 235, 0.15);
    border-radius: 50%;
    z-index: -1;
    filter: blur(1px);
}

.affiliations-section {
    background: #ffffff;
}

.aff-title {
    font-size: 28px;
    font-weight: 700;
}

.aff-desc {
    color: #6b7280;
}

.aff-logo {
    width: 100px;
    opacity: 0.75;
    transition: .3s;
}

.aff-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* CTA Button */
.aff-btn {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: .25s;
}

.aff-btn:hover {
    background: #1e48c7;
}

.affiliations-slider {
  overflow: hidden;
}

.affiliationSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.affiliationSwiper .swiper-slide img {
  width: 130px;
  opacity: 0.4;
  transition: 0.4s;
}

/* Center logo highlight */
.affiliationSwiper .swiper-slide-active img {
  transform: scale(1.4);
  opacity: 1;
}

/* Side slides */
.affiliationSwiper .swiper-slide-next img,
.affiliationSwiper .swiper-slide-prev img {
  opacity: 0.7;
}

.profile-pic {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Center-focus effect */
.owl-carousel .owl-item {
    transition: all 0.3s ease;
}
.owl-carousel .owl-item.center .card {
    transform: scale(1);
    opacity: 1;
}
.owl-carousel .owl-item:not(.center) .card {
    transform: scale(0.85);
    opacity: 0.6;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    background: none;
    color: #1E88E5;
    font-size: 40px;
    border: none;
    margin: 0 10px;
}
.owl-carousel .owl-nav button.owl-next:hover, .owl-carousel .owl-nav button.owl-prev:hover {
    color: #0D47A1;
}
.owl-dots { display: none; }

/* General helpers */
.ls-2 { letter-spacing: .08em; }

/* --- Case Studies section --- */
.case-studies .display-6 {
  line-height: 1.25;
}

.case-strip .cs-tile {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.case-strip .cs-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.case-strip .cs-tile:hover img {
  transform: scale(1.05);
}


@media (min-width: 768px) {
  .case-strip .col-md { flex: 0 0 20%; max-width: 20%; }
}

/* --- Stats hero (blue strip with overlay) --- */
.stats-hero {
  position: relative;
  color: #fff;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=1600&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}

/* Blue overlay */
.stats-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 108, 223, 0.9);
}


.stats-hero .content {
  z-index: 1;
}


.stats-hero small {
  opacity: .9;
}

.stat-item .stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: .02em;
}

.stat-item .stat-label {
  opacity: .95;
  margin-top: .25rem;
}


@media (min-width: 992px) {
  .stats-hero { padding-top: 4.5rem !important; padding-bottom: 4.5rem !important; }
}

.case-strip {
  margin: 0;
  padding: 0;
}

.case-strip .cs-tile img {
  display: block;
}

.stats-hero {
  position: relative;
  color: #fff;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=1600&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  margin-top: -5px;
}

.stats-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 108, 223, 0.95);
}

.stats-hero .content {
  z-index: 1;
  padding-top: 3rem;
  padding-bottom: 3rem;
}


.footer-logo {
    filter: brightness(1) contrast(1.1);
  }

  .footer-link {
    color: #f8f9fa;
    opacity: 0.75;
    text-decoration: none;
    transition: opacity .2s ease;
  }
  .footer-link:hover {
    opacity: 1;
  }

  .footer-social {
    color: #f8f9fa;
    opacity: 0.75;
    text-decoration: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .footer-social:hover {
    opacity: 1;
    transform: translateX(4px);
  }.footer-logo {
    filter: brightness(1) contrast(1.1);
  }

  .footer-link {
    color: #f8f9fa;
    opacity: 0.75;
    text-decoration: none;
    transition: opacity .2s ease;
  }
  .footer-link:hover {
    opacity: 1;
  }

  .footer-social {
    color: #f8f9fa;
    opacity: 0.75;
    text-decoration: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .footer-social:hover {
    opacity: 1;
    transform: translateX(4px);
  }

/* About section */

.hero-about {
position: relative;
height: 60vh;
min-height: 400px;
background-image: url('/assets/job.jpg');
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-family: 'Arial', sans-serif;
}
.hero-service {
position: relative;
height: 60vh;
min-height: 400px;
background-image: url('/assets/service.jpg');
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-family: 'Arial', sans-serif;
}


.hero-service .overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 1;
}

.hero-service .hero-content {
position: relative;
z-index: 2;
text-align: center;
}

.hero-service .breadcrumb {
font-size: 0.9rem;
margin-bottom: 10px;
color: #ddd;
}

.hero-service .breadcrumb a {
color: #ddd;
text-decoration: none;
transition: color 0.3s;
}

.hero-service .breadcrumb a:hover {
color: #fff;
}

.hero-service .breadcrumb .arrow {
margin: 0 5px;
}

.hero-service h1 {
font-size: 3rem;
font-weight: bold;
margin: 0;
}



.hero-about .overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 1;
}

.hero-about .hero-content {
position: relative;
z-index: 2;
text-align: center;
}

.hero-about .breadcrumb {
font-size: 0.9rem;
margin-bottom: 10px;
color: #ddd;
}

.hero-about .breadcrumb a {
color: #ddd;
text-decoration: none;
transition: color 0.3s;
}

.hero-about .breadcrumb a:hover {
color: #fff;
}

.hero-about .breadcrumb .arrow {
margin: 0 5px;
}

.hero-about h1 {
font-size: 3rem;
font-weight: bold;
margin: 0;
}


.about-intro {
  padding: 80px 20px;
  background-color: #f9f9f9;
  font-family: 'Arial', sans-serif;
}

.about-intro .container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap; /* makes it responsive */
}

.about-intro .about-image {
  flex: 1 1 45%;
}

.about-intro .about-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-intro .about-image img:hover {
  transform: scale(1.05);
}

.about-intro .about-text {
  flex: 1 1 50%;
}

.about-intro .about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #333;
}

.about-intro .about-text h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #555;
  font-weight: 400;
}

.about-intro .about-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #666;
}

.about-intro .about-text .btn {
  display: inline-block;
  background-color: #007BFF;
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.about-intro .about-text .btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .about-intro .container {
    flex-direction: column;
    gap: 30px;
  }

  .about-intro .about-text h2 {
    font-size: 2rem;
  }

  .about-intro .about-text h3 {
    font-size: 1.3rem;
  }
}

.mission-vision-full {
  padding: 80px 20px;
  background-color: #fefefe;
  font-family: 'Arial', sans-serif;
}

.mission-vision-full .container {
  max-width: 1200px;
  margin: 0 auto;
}
.toggle-buttons {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 50px;
  border-bottom: 2px solid #e5e5e5;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.toggle-buttons button {
  background: none;
  border: none;
  padding: 14px 34px;
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: 0.3s ease;
}

.toggle-buttons button.active {
  color: #007BFF;
  border-bottom: 3px solid #007BFF;
}

.toggle-buttons button:hover {
  color: #0d6efd;
}

.content {
  position: relative;
  min-height: 400px;
}

.content-item {
  display: flex;
  align-items: center;
  gap: 50px;
  opacity: 0;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease;
}

.content-item.active {
  opacity: 1;
  position: relative;
}

.image-container {
  flex: 1 1 45%;
}

.image-container img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.image-container img:hover {
  transform: scale(1.05);
}

.text-container {
  flex: 1 1 50%;
  text-align: left;
}

.text-container h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #333;
}

.text-container .subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
}

.text-container p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

/* Responsive */
@media (max-width: 900px) {
  .content-item {
    flex-direction: column;
    text-align: center;
  }

  .text-container {
    text-align: center;
  }
}

/* -----------------------------
   WHAT SETS US APART
------------------------------*/
.sets-us-apart {
  background: #fafafa;
  font-family: 'Arial', sans-serif;
  padding: 80px 20px;
  border-top: 1px solid #e5e5e5;
}

.apart-title {
  font-size: 2.4rem;
  color: #222;
  margin-bottom: 10px;
}

.apart-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Card Styling */
.apart-card {
  background: #fff;
  padding: 35px 30px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
}

.apart-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: #e2e2e2;
}

/* Circles with icons */
.icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  background: #f1f5ff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #0056d6;
  transition: 0.3s ease;
}


.apart-card h4 {
  font-size: 1.25rem;
  color: #222;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 12px;
}

.apart-card p {
  font-size: 0.97rem;
  color: #666;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .apart-title {
    font-size: 2rem;
  }

  .apart-card {
    padding: 28px 22px;
  }
}
.approach-timeline-premium {
  padding: 100px 20px;
  background-color: #f7f8fa;
  font-family: 'Arial', sans-serif;
}

.approach-timeline-premium .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #1B2A49;

}

.approach-timeline-premium .section-header p {
  color: #555;
  font-size: 1.1rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  position: relative;
}

.timeline-step::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 0;
  width: 3px;
  height: 100%;
  background-color: #ddd;
  z-index: -1;
}

.timeline-step:last-child::before {
  height: 50%;
}

.timeline-icon {
  background-color: #1B2A49;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.timeline-content {
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  flex: 1;
}

.timeline-content .step-number {
  font-weight: bold;
  font-size: 1.3rem;
  color: #1B2A49;
  margin-bottom: 10px;
  display: block;
}

.timeline-content h3 {
  margin-bottom: 12px;
  font-size: 1.6rem;
  color: #1B2A49;
  font-family: 'Merriweather', serif;
}

.timeline-content p {
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline-step {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-step::before {
    left: 25px;
  }
}


.team-section {
  padding: 100px 20px;
  background-color: #f7f8fa;
  font-family: 'Arial', sans-serif;
}

.team-section .section-title h2,
.team-section .section-title h3 {
  color: #1B2A49;

  margin-bottom: 10px;
}

.team-section .section-title p {
  color: #555;
  font-size: 1.1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.team-card {
  background-color: #fff;
  border-radius: 12px;
  text-align: center;
  padding: 25px 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.team-card .team-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #1B2A49;
}

.team-card .team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 {
  color: #1B2A49;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.team-card span {
  color: #666;
  font-size: 0.95rem;
}

/* Popup modal styles (example) */
.team-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center; justify-content: center;
  z-index: 999;
}

.team-modal.active {
  display: flex;
}

.team-modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  text-align: center;
}

.team-modal-content img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}



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

.certifications-section .section-title h2 {
  color: #1B2A49;
  margin-bottom: 10px;
}

.certifications-section .section-title p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 40px;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  justify-items: center;
}

.certificate-card {
  background: #f7f8fa;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.certificate-card img {
  width: 100%;
  height: auto;
  display: block;
}

.certificate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Modal Styles */
.certificate-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.certificate-modal.active {
  display: flex;
}

.certificate-modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 700px;
  width: 90%;
  position: relative;
  text-align: center;
}

.certificate-modal-content img {
  width: 100%;
  height: auto;
}

.certificate-modal .close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}


.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.icon-circle {
  width: 40px;
  height: 40px;
  font-size: 18px;
}

.contact-form input,
.contact-form textarea {
  border-radius: 10px;
  padding: 0.75rem 1rem;
}

.contact-form button {
  border-radius: 50px;
  background-color: #2c3a40;
  border: none;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #1a242d;
}

.form-flash {
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-flash.success {
  background: #ecfdf3;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-flash.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}


.hero-mainabt {
  position: relative;
  height: 280px;
  background: url('/assets/office.jpg') center/cover no-repeat !important;
  display: flex;
  align-items: center;
}

.hero-about {
  position: relative;
  height: 280px;
  background: url('/assets/account.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-coop {
  position: relative;
  height: 280px;
  background: url('/assets/corp.jpg') center/cover no-repeat !important;
  display: flex;
  align-items: center;
}


.hero-tax {
  position: relative;
  height: 280px;
  background: url('/assets/tax.jpg') center/cover no-repeat !important;
  display: flex;
  align-items: center;
}

.hero-insolve {
  position: relative;
  height: 280px;
  background: url('/assets/debt.jpg') center/cover no-repeat !important;
  display: flex;
  align-items: center;
}

.hero-train {
  position: relative;
  height: 280px;
  background: url('/assets/train.jpg') center/cover no-repeat !important;
  display: flex;
  align-items: center;
}

.hero-investigate {
  position: relative;
  height: 280px;
  background: url('/assets/investigate.jpg') center/cover no-repeat !important;
  display: flex;
  align-items: center;
}

.hero-consult {
  position: relative;
  height: 280px;
  background: url('/assets/consult.jpg') center/cover no-repeat !important;
  display: flex;
  align-items: center;
}

.hero-audit {
  position: relative;
  height: 280px;
  background: url('/assets/audit.jpg') center/cover no-repeat !important;
  display: flex;
  align-items: center;
}
.hero-about .overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 58, 64, 0.6); /* semi-transparent overlay */
}

.hero-content {
  position: relative;
  color: #fff;
  padding-left: 30px;
}

.hero-content .breadcrumb {
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.hero-content .breadcrumb a {
  color: #fff;
  text-decoration: none;
  margin-right: 4px;
}

.hero-content .breadcrumb .arrow {
  margin-right: 4px;
}

.hero-content h1 {
  font-size: 2.2rem;
  margin: 0;
}


.breadcrumb {
  font-size: 0.95rem;
  color: #e6e6e6;
  margin-bottom: 10px;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
  transition: 0.3s ease;
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb .arrow {
  margin: 0 3px;
  color: #ffffff;
}

.breadcrumb .current {
  color: #ffffff;
  font-weight: 600;
}

.service-hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
}

/* Sidebar */
.service-sidebar {
  padding: 25px 0;
  border-right: 1px solid #e5e8eb;
}

.sidebar-title {
  font-size: 1rem;
  font-weight: 700;
  color: #2c3a40;
  margin-bottom: 20px;
}

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

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

.sidebar-links a {
  display: block;
  padding: 10px 0;
  font-size: 0.95rem;
  color: white;
  text-decoration: none;
  border-left: 3px solid transparent;
  padding-left: 15px;
  transition: 0.25s ease;
}

.sidebar-links a:hover {
  color: #2c3a40;
  border-left: 3px solid #2c3a40;
}

.sidebar-links a.active {
  color: #2c3a40;
  font-weight: 700;
  border-left: 3px solid #2c3a40;
}

.sidebar-links a.active::after {

  float: right;
  font-size: 1rem;
  animation: bounce 0.8s infinite ease-in-out;
}

@keyframes bounce {
  0% { transform: translateX(0); }
  50% { transform: translateX(4px); }
  100% { transform: translateX(0); }
}

/* Main content */
.service-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
}

.service-description {
  font-size: 1.05rem;
  color:white;
  line-height: 1.7;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* CTA button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2c3a40;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn:hover {
  background: #1e2a30;
}

.cta-btn .arrow {
  display: inline-block;
  font-size: 1.2rem;
  animation: arrowBounce 1.1s infinite ease-in-out;
}

@keyframes arrowBounce {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(6px); }
  100% { transform: translateX(0); }
}


/* ============================
   SCHOOL HERO SECTION
============================ */

.school-hero {
  position: relative;
  height: 380px;
  background: url('/assets/school-banner.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.school-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 20, 50, 0.65);
}

.school-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 700px;
}

.school-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.school-hero-content p {
  font-size: 1.15rem;
  opacity: 0.9;
}

.breadcrumb {
  margin-bottom: 10px;
}

.breadcrumb a {
  color: #a8d8ff;
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 5px;
}




.about-school {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #092c5c;
}

.about-text p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.about-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}


.about-school {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #092c5c;
}

.about-text p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

.about-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Section Wrapper */
.programs-section {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e2a38;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #6d7a88;
  margin-bottom: 40px;
  font-size: 1rem;
}

/* Grid Layout */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Program Card */
.program-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e7eaee;
  transition: 0.3s ease;
}

.program-card:hover {
  border-color: #1f3c88;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.program-card h3 {
  font-size: 1.2rem;
  color: #1e2a38;
  margin-top: 12px;
}

.program-card p {
  color: #6c7a89;
  margin-top: 8px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Tags — Mature, Minimal Colors */
.tag {
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  letter-spacing: 0.3px;
}

/* Desaturated palette (not cartoonish) */
.tag-cert {
  background: rgba(30, 60, 150, 0.08);
  color: #1f3c88;
}

.tag-dip {
  background: rgba(180, 40, 40, 0.09);
  color: #8a1f1f;
}

.tag-pro {
  background: rgba(200, 160, 20, 0.12);
  color: #8a6d1f;
}



/* ===========================
   CONTACT HERO
   =========================== */
.contact-hero {
  position: relative;
  background: url('/assets/contact.jpg') center/cover no-repeat;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.contact-hero .hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.contact-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-hero p {
  font-size: 1rem;
  opacity: 0.85;
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.breadcrumb a {
  color: #ffffffb8;
  text-decoration: none;
}

.breadcrumb .arrow {
  margin: 0 5px;
}


/* ===========================
   CONTACT SECTION
   =========================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  padding: 80px 0;
}

.contact-info h2,
.contact-form h2 {
  font-size: 1.7rem;
  margin-bottom: 25px;
}

.info-text {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 25px;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.info-box i {
  font-size: 1.5rem;
  color: var(--primary-blue);
}

.info-box h4 {
  margin: 0;
  font-size: 1rem;
}

.info-box p {
  margin: 0;
  font-size: 0.9rem;
  color: #444;
}


/* ===========================
   CONTACT FORM
   =========================== */
.contact-form form {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  transition: 0.2s;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-blue);
}

.send-btn {
  background: var(--primary-blue);
  color: #fff;
  padding: 14px 22px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: 0.25s;
  font-size: 1rem;
}

.send-btn:hover {
  background: #0e3b84;
}



.map-section iframe {
  width: 100%;
  height: 350px;
  border: none;
  margin-top: 20px;
}

/* Mobile */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    height: 32vh;
  }
}


.milestone-advantage h2 {
  font-weight: 600;
}

.advantage-item {
  padding-top: 10px;
}

.advantage-item i {
  font-size: 22px;
  color: #495057;
  margin-bottom: 8px;
}

.advantage-item h6 {
  font-weight: 600;
  margin-bottom: 6px;
}

.advantage-item p {
  font-size: 0.95rem;
  color: #555;
}
