@import url("https://fonts.cdnfonts.com/css/source-sans-pro");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&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");
body {
  margin: 0;
  padding: 0;
  background-color: #111;
  /* font-family: sans-serif; */
  font-family: "Poppins", serif !important;
}
h1,
h2 {
  font-family: oswald;
  /* font-weight: 400; */
}
.container h2 {
  font-size: 40px;
  /* line-height: 70px; */
  text-transform: capitalize;
  color: #000000;
  font-weight: 500;
  margin-bottom: 40px;
}
.top-header {
  font-size: 14px;
  background-color: #000000; /* Deep blue similar to your image */
}

.top-header .form-control:focus {
  box-shadow: none;
}
.social-icons i {
  color: #011c72;
}
.account-btn {
  background-color: rgb(180, 210, 66, 1) !important;
  margin-bottom: 0;
  padding-top: 5px;
  padding-bottom: 4px;
  font-size: 16px !important;
  border-radius: 20px !important;
}
.account-btn span {
  font-size: 16px;
  font-weight: 400;
}

.navbar {
  background-color: white;
  padding: 0.8rem 2rem;
  /* font-family: "Source Sans Pro", sans-serif !important; */
}
.navbar-nav .nav-link {
  font-size: 16px;
  color: #000000; /* Deep navy blue */
  font-weight: 400;
}

.navbar-nav .nav-link:hover {
  background-color: #e3e0f5 !important;
  border-radius: 10px;
  color: #011c72 !important;
}
.navbar .nav-link.is-active,
.navbar .nav-link.active {
  background-color: #f8f8f8 !important;
  border-radius: 10px;
  color: #000000 !important;
}

.active-link {
  background-color: #e3e0f5 !important;
  border-radius: 10px;
  padding: 5px 12px;
  font-weight: 600;
  color: #011c72 !important;
}

.navbar-brand {
  border-right: 4px solid rgb(0, 0, 0, 0) !important; /* Yellowish green */
  color: rgb(180, 210, 66, 1);
}
.navbar-brand .play-icon {
  color: #011c72;
  margin: 0 5px;
}

.social-icons a {
  background-color: white;
  color: #011c72;
  border-radius: 50%;
  padding: 10px;
  margin-left: 5px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 25px;
  height: 25px;
}

.social-icons {
  display: flex;
  align-items: center;
}

/* @keyframes slideIn {
  to {
    left: 0;
  }
} */

.hero {
  position: relative;
  height: 100vh;
  color: white;
  overflow: hidden;
}
.swiper {
  height: 100%;
}
.swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}
.slide-overlay {
  position: absolute;
  inset: 0; /* fill the slide */
  background: #0000004f;
  opacity: 0.8;
  animation: revealUp 2.5s forwards;

  transform: translateY(100%);
  /* animation: revealUp 1.2s ease-out forwards; */
  pointer-events: none;
  z-index: 0;
}

@keyframes revealUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0%);
  }
}

/* .hero-content {
  position: relative;
  z-index: 1;
  padding: 150px 20px;
  max-width: 1000px;
  animation: fadeUp 1.8s ease-out;
}
@keyframes fadeUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
} */
.hero h1 {
  font-size: 3rem;
  font-weight: 800;
}

.hero h1 span {
  color: rgb(180, 210, 66, 1);
  font-size: 2.5rem;
}

.hero p {
  margin-top: 1rem;
  font-size: 1.3rem;
}

.learn-more-btn {
  background-color: #000000 !important;
  color: white !important;
  border: 1px solid #69c3e8 !important;
} /* Hero arrows */
.hero {
  position: relative;
}
.hero .hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: #142a7a;
  border: 0;
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 5;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.hero .hero-prev {
  left: 18px;
}
.hero .hero-next {
  right: 18px;
}
.hero .hero-nav:hover {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}
.hero .hero-nav:focus-visible {
  outline: 3px solid #94c6ff;
  outline-offset: 2px;
}
.hero .container {
  /* position: relative; */
  z-index: 1; /* above overlay */
  height: 100%;
  display: flex;
  align-items: flex-end; /* bottom align */
  padding-bottom: clamp(150px, 12vh, 320px);
}

/* Copy styling */
.hero .hero-content {
  position: relative;
  max-width: 920px;
  color: #fff;
  animation: fadeUp 1.8s ease-out;
  z-index: 555;
}
@keyframes fadeUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== Stats Band ===== */
.kpi-band {
  max-width: 900px;
  background-color: #6c757d;
  padding: 10px 0 30px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 120px;
  border-bottom-right-radius: 120px;
  color: #fff;
  overflow: hidden;
  transform: translateY(-50%);
  position: relative;
  z-index: 1111;
}

/* each KPI */
.kpi {
  text-align: center;
}

.kpi .ring {
  width: 140px;
  height: 140px;
  margin-inline: auto;
  position: relative;
}

.ring-svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: rotate(-23deg); /* start angle like the mock */
}

/* base ring */
.ring-svg .track {
  fill: none;
  stroke: rgb(180, 210, 66, 1);
  stroke-width: 2;
}

/* green progress arc */
.ring-svg .progress {
  fill: none;
  stroke: #e3e0f5;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 0 999; /* will be set by JS */
  transition: stroke-dasharray 1.2s ease;
}

/* center value */
.value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.value .num {
  font-size: 30px;
  line-height: 1;
}
.value .suffix {
  font-size: 1em;
  margin-left: 2px;
  position: relative;
  top: 4px;
}
.value .sub {
  font-size: 16px;
  font-weight: 600;
  margin-top: 1px;
  opacity: 0.95;
}

.value .plus {
  font-size: 22px;
  line-height: 1;
  color: rgb(180, 210, 66, 1);
  margin-top: 2px;
  font-weight: 700;
}

.caption {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.95;
}

/* responsive tweaks */
@media (max-width: 575.98px) {
  .kpi-band {
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
  }
  .kpi .ring {
    width: 120px;
    height: 120px;
  }
  .value .num {
    font-size: 26px;
  }
}
/* ====================================== */

/* ===== Programs slider arrows + card look ===== */
.programs-section {
  background-color: #f4f4f4;
}
.programs-title {
  margin: 0px 0 20px 80px;
  font-weight: 600;

  color: #16295b;
}

/* Wrapper leaves room for arrows */
.programs-wrap {
  position: relative;
  padding: 6px 76px; /* space for left/right buttons */
}

/* Swiper */
.programs-swiper {
  overflow: visible;
}
.programs-swiper .swiper-slide {
  height: auto;
}

/* Card */
.program-card {
  display: flex;
  flex-direction: column;
  height: 100%; /* make every card the same height */
  background: #fff;
  border-radius: 0 0 18px 18px;
  overflow: hidden;
  text-decoration: none;
  /* box-shadow: 0 10px 24px rgba(16, 39, 88, 0.12); */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.program-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(16, 39, 88, 0.18);
}

/* Image with fixed ratio to lock card height */
.program-card .thumb {
  position: relative;
  aspect-ratio: 16 / 11; /* keep a consistent height for all cards */
  overflow: hidden;
}
.program-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* "Register Now" badge */
.program-card .badge-register {
  position: absolute;
  left: 12px;
  top: 12px;
  font-size: 12px;
  font-weight: 700;
  background: #fff;
  color: #0d2a66;
  border: 2px solid #b6d23f;
  border-radius: 999px;
  padding: 6px 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}
.program-card .badge-register i {
  color: #b6d23f;
  margin-right: 6px;
}

/* Caption area */
.program-card .card-caption {
  padding: 14px 16px 16px;
  font-size: 14px;
  line-height: 1.35;
  color: #6c757d;
  text-align: center;
  min-height: 96px; /* keeps the text block equal height */
}
.program-card .card-caption strong {
  color: #0f2d72;
}

/* Nav buttons */
.prog-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #0f2d72;

  display: grid;
  place-items: center;
  box-shadow: 0 10px 20px rgba(13, 42, 102, 0.25);
  z-index: 5;
  cursor: pointer;
}
.prog-prev {
  left: 0;
}
.prog-next {
  right: 0;
}
.prog-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Spacing / responsive */
@media (max-width: 575.98px) {
  .programs-wrap {
    padding: 6px 60px;
  }
  .prog-nav {
    width: 48px;
    height: 48px;
  }
}

.brand-carousel .swiper-wrapper {
  transition-timing-function: linear !important;
  direction: ltr;
}

.brand-carousel .swiper-slide {
  direction: rtl; /* Keep content readable */
  width: auto !important;
  padding: 0 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-carousel .swiper-slide img {
  height: 80px;
  width: 150px;
  /* opacity: 0.7; */
  /* filter: grayscale(100%); */
  transition: 0.3s;
}

.brand-carousel .swiper-slide img:hover {
  opacity: 1;
  /* filter: grayscale(0%); */
}
.accreditation-section {
  padding: 40px 0;
  background-color: #f4f4f4;
  text-align: center;
}

.accreditation-section h3 {
  font-size: 2rem;
  color: #002875;
  margin-bottom: 5px;
  text-align: left;
  margin-left: 8%;
}

.accreditation-section p {
  text-align: left;
}
.accreditation-section .swiper-container {
  position: relative;
  padding: 20px 60px;
}
.accreditation-section .swiper {
  width: 100%;
  padding-bottom: 20px;
}
.accreditation-section .swiper-slide {
  background: #fff;
  border-radius: 12px;
  /* box-shadow: 0 0 0 1px #dedede; */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
}
.accreditation-section .swiper-slide img {
  max-width: 100%;
  /* max-height: 80px; */
  object-fit: contain;
}

.swiper-button-next,
.swiper-button-prev {
  color: #333 !important;
  background: white !important;
  border-radius: 50%;
  width: 35px !important;
  height: 35px !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px !important;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

.social-icons-wrapper .elementor-grid-item {
  display: flex;
  justify-content: center;
  flex-direction: row;
  width: 50px;
  height: 50px;
  background-color: #011c72;
  color: white;
  border-radius: 50%;
  padding: 10px;
  margin-left: 10px;
}
.elementor-widget-container {
  width: 50%;
  text-align: center;
}
.about-section {
  position: relative;
  background: linear-gradient(90deg, #000000 0%, #6c757d 100%);
  color: #fff;
  overflow: hidden;
}

/* The large watermark/logo on the LEFT – anchored and non-intrusive */
.about-left {
  position: relative;
  min-height: 300px; /* keeps room for the overlay text */
}
.about-left::before {
  content: "";
  position: absolute;
  left: -90px; /* push a bit outside for that cropped look */
  top: -100px;
  bottom: -60px;
  width: 100%; /* adjust size to taste */
  background: url("../asset/images/AGORA\ LOGO-10-555.png") no-repeat left
    center;
  background-size: contain; /* never distorts; scales as a single shape */
  opacity: 0.22; /* faint like the mock */
  pointer-events: none; /* never blocks clicks */
  filter: grayscale(100%); /* subtle, like a watermark */
}

/* Centers the heading stack over the left graphic (same classes you used) */
.left-about {
  position: relative;
  /* left: 42%;  */
  transform: translate(20%, 20%);
  /* /* width: 90%; */
  max-width: 520px;
}

.text-lime {
  color: rgb(180, 210, 66, 1);
}
.about-heading {
  font-size: 3.5rem !important;
  color: rgb(180, 210, 66, 1) !important;
  font-weight: 600;
}
.about-right p {
  font-size: 14px;
  margin-bottom: 5px;
}

.bg-lime {
  background-color: rgb(180, 210, 66, 1);
  font-size: 20px;
  color: #011c72;
}

.experience-badge span {
  font-size: 30px;
  display: block;
}

.about-heading span {
  color: rgb(180, 210, 66, 1);
}

.about-desc {
  color: #000;
  margin: 1rem 0;
  line-height: 1.7;
}
.section-content ul {
  padding-left: 0;
}
.section-content ul li {
  list-style: none;
}
/* ==========================why chose agora ============ */
.choose-head {
  display: flex;
  align-items: center;
  padding: 15px 35px;
  border-radius: 35px;
  color: #fff;
  background: linear-gradient(90deg, #6c757d 0%, #6c757d 60%, #6c757d 100%);
  margin-bottom: 28px;
}
.choose-head h3 {
  margin: 0 0 6px 0;
  font-weight: 700;
  color: rgb(180, 210, 66, 1);
}
.choose-head p {
  margin: 10px 0;
  /* font-size: 14px; */
  opacity: 0.95;
}
.choose-head-btn {
  border: 2px solid white !important;
  border-radius: 999px !important;
  padding: 5px 10px !important;
  font-weight: 600;
  color: white !important;
  font-size: 14px !important;
}
.choose-card {
  background: #f3f3f3;

  border-radius: 25px;
  padding: 22px 22px 18px;
}
.choose-card .icon {
  color: #011c72;
  font-size: 26px;
  margin-bottom: -5px;
}
.choose-card h5 {
  color: #000000;
  font-weight: 800;
  margin: 0 0 6px 0;
  font-size: 18px;
}
.choose-card p {
  margin: 10px 0 12px 0;
  color: #6a7594;
  font-size: 14px;
  line-height: 1.45;
}
.choose-card .btn-lite {
  display: inline-block;
  border-radius: 999px;
  padding: 6px 14px;
  border: 1px solid #011c72;
  /* background: #fff; */
  color: #0f1c4d;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  margin-top: 15px;
}
.choose-card .btn-lite:hover {
  background: #f9fbff;
}

/* ====================================================== */
industries-section {
  background: #fff;
}

.industry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  height: 340px; /* desktop height */
  padding: 28px 24px;
  color: #fff;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  text-align: center;
}

/* dark bottom gradient */

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.72) 30%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0) 78%
  );
  pointer-events: none;
}
.industry-card h3,
.industry-card .industry-btn {
  position: relative;
  z-index: 2;
}
/* slight zoom on hover */
.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: inherit;
  background-position: inherit;
  transform: scale(1);
  transition: transform 0.5s ease;
  z-index: -1; /* keep under gradient */
}
.industry-card:hover::before {
  transform: scale(1.05);
}

.industry-btn {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  padding: 5px 18px;
  border-radius: 999px;
  border: 2px solid rgb(180, 210, 66, 1);
  /* background: rgba(0, 0, 0, 0.45); */
  color: rgb(180, 210, 66, 1);
  /* box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(2px);
  width: max-content; */
}

.industry-btn:hover {
  background: var(--ag-lime);
  color: #0a1d63; /* readable on lime */
}

.industry-card h3 {
  margin-top: 20px;
  font-size: 25px;
  font-weight: 600;

  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
/* ===== All News ===== */
.news-heading {
  font-weight: 800;
  color: #0b3b8e;
}

.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  border-radius: 22px;
  overflow: hidden;
  background: #011c72;
  box-shadow: 0 10px 24px rgba(2, 18, 64, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(2, 18, 64, 0.14);
}

/* image area */
.news-thumb {
  height: 210px; /* tweak to match your exact height */
  background: #eef2f6;
  display: flex; /* centers small logos perfectly */
  align-items: center;
  justify-content: center;
}
.news-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover; /* great for photos */
  border: 0;
  border-radius: 0;
}

/* for small/logo-like images – add class="is-logo" */
.news-thumb img.is-logo {
  width: auto;
  height: auto;
  max-width: 88%;
  max-height: 86%;
  object-fit: contain; /* never stretches, no crop */
  filter: none;
}

/* navy info panel with thin lime bar on top */
.news-body {
  position: relative;
  background: #011c72; /* navy */
  color: #ffffff;
  padding: 14px 18px 16px;
  min-height: 110px;
}
.news-body::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 4px;
  background: rgb(180, 210, 66, 1); /* lime accent */
}

.news-title {
  font-weight: 800;
  font-size: 0.76rem;
  line-height: 1.2;
  letter-spacing: 0.2px;
  margin-bottom: 6px;
}

.news-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.25;
  opacity: 0.95;
}

/* responsive tweaks */
@media (max-width: 575.98px) {
  .news-thumb {
    height: 190px;
  }
  .news-title {
    font-size: 14px;
  }
  .news-body p {
    font-size: 0.74rem;
  }
}

/* Responsive heights */
@media (max-width: 991.98px) {
  .industry-card {
    height: 300px;
  }
}
@media (max-width: 575.98px) {
  .industry-card {
    height: 260px;
    padding: 22px 18px;
  }
  .industry-card h3 {
    font-size: 24px;
  }
  .industry-btn {
    font-size: 13px;
    padding: 8px 14px;
  }
}
.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
}

.highlight {
  color: #011c72;
}

.right-text p {
  margin: 1rem 0;
  color: #555;
}

.learn-btn {
  background: #011c72;
  border: none;
  padding: 10px 20px;
  color: white;
  border-radius: 999px;
  font-weight: 600;
}
.subscribe-section {
  background: url("../asset/WhatsApp\ Image\ 2025-08-05\ at\ 05.28.19_696de4ef.jpg")
    center center / cover no-repeat fixed;
  position: relative;
  padding: 60px 0;
  z-index: 1;
}

.subscribe-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7); /* opacity layer */
  z-index: -1;
}

.subscribe-box {
  background: transparent;
  border-radius: 10px;
  padding: 40px;
  /* display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100%;
  gap: 30px; */
}
/* .subscribe-box .heading {
  width: 50%;
}
.newsletter-form {
  width: 50%;
} */
.subscribe-box h2 {
  color: white;
  font-size: 3.3rem;
  font-weight: 800;
  margin: 0;
}

.newsletter-form label {
  color: white;
  font-weight: 600;
  margin-bottom: 10px;
}

.newsletter-form input[type="email"] {
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  outline: none;
  /* min-width: 100%; */
}

.subscribe-btn {
  background-color: #011c72;
  color: white;
  font-weight: 600;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  margin-left: 10px;
  white-space: nowrap;
}
/* ===== Equal-height testimonial cards ===== */
.testimonials-section .testimonials-swiper .swiper-wrapper {
  /* Swiper wrapper is flex – stretch slides to same height */
  align-items: stretch;
}

.testimonials-section .testimonials-swiper .swiper-slide {
  /* Let each slide grow to the wrapper height */
  display: flex;
  height: auto; /* important so the bubble can take 100% */
}

.testimonials-section .testimonial-bubble {
  /* Fill slide and layout content vertically */
  display: flex;
  flex-direction: column;
  height: 100%;
  /* optional: enforce a floor so single-column mobile still looks good */
  min-height: 260px;
}

/* Make the paragraph take remaining space so author/stars sit at bottom */
.testimonials-section .testimonial-text {
  flex: 1 1 auto;
}

/* Small polish: a bit of spacing between author and stars */
.testimonials-section .testimonial-bubble .author {
  margin-top: 0.5rem;
}

.testimonial-heading h6 {
  color: rgb(00, 00, 66, 1);
}
.testimonial-heading h2 {
  font-size: 2.4rem;
  font-weight: 800;
}

.testimonial-heading p {
  color: #ccc;
  margin: 20px 0;
}

.btn-testimonial {
  background-color: #011c72;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
}
.testimonials-section {
  background-color: #fff;
}
.quote-color {
  color: rgb(180, 210, 66, 1);
}
.animated-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.animated-card.delay-0 {
  animation-delay: 0.2s;
}
.animated-card.delay-1 {
  animation-delay: 0.4s;
}
.animated-card.delay-2 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .testimonial-heading h2 {
    font-size: 1.8rem;
  }

  .swiper {
    padding: 0;
  }
}
/* Section */
.section-title {
  color: #06256e; /* deep navy like the mock */
}

/* Swiper layout */
.testimonials-swiper .swiper-wrapper {
  padding-bottom: 40px;
}
.testimonials-swiper .swiper-slide {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

/* Bubble card */
.testimonial-bubble {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #6c757d; /* navy */
  color: #fff;
  border-radius: 26px;
  padding: 28px 28px 38px;
  text-align: center;
  margin: 0 auto;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Bubble tail */
.testimonial-bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 26px;
  height: 26px;
  background: #000000;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 0 0 6px 0; /* just soft corner */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Quote icon + text */
.quote-icon {
  display: block;
  text-align: center;
  color: rgb(00, , 66, 1); /* lime */
  font-size: 26px;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 13px;
  line-height: 1.55;
  color: #e7ecff; /* softer white like screenshot */
  text-align: center;
  margin: 0 auto 14px;
  max-width: 88%;
}

/* Author + stars */
.author {
  text-align: center;
  font-weight: 700;
  color: rgb(00, , 66, 1);
  font-size: 15px;
  margin-bottom: 8px;
}

.stars {
  text-align: center;
  color: rgb(180, 210, 66, 1);
  letter-spacing: 2px;
  font-size: 12px;
}

/* Dots */
.testimonials-swiper .swiper-pagination-bullet {
  background: #bfc9ff;
  opacity: 1;
}
.testimonials-swiper .swiper-pagination-bullet-active {
  background: #06256e;
}

/* Make it breathe on small screens */
@media (max-width: 575.98px) {
  .testimonial-bubble {
    padding: 22px 18px 34px;
  }
  .testimonial-text {
    max-width: 100%;
  }
}

/* ===============================testimonial-==================== */
/* ==============================footer================== */

.footer {
  background-color: #f3f3f3;
  padding: 50px 0;
  color: #000000;
  font-size: 14px;
}
.footer .container {
  width: 95%;
  max-width: 1250px;
  margin: 0 auto;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo-social {
  flex: 1 1 250px;
  text-align: center;
}

.footer-logo-social .logo-footer {
  max-width: 200px;
  margin-bottom: 20px;
  border-right: 3px solid rgb(0, 0, 0, 0);
  margin-right: 10px;
}
.social-icons-footer {
  display: flex;
  gap: 5px;
  margin-left: 10px;
}

.social-icons-footer i {
  background-color: #0d1e6a; /* deep blue background */
  color: rgb(180, 210, 66, 1);
  font-size: 16px;
  padding: 8px;
  border-radius: 50%;
  border: 2px solid #a4c600; /* lime green border */
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.social-icons-footer i:hover {
  background-color: #a4c600; /* lime green on hover */
  color: #0d1e6a;
  transform: scale(1.1);
}

.tagline {
  color: #777;
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
}
.footer-links {
  flex: 1 1 100px;
}

.footer-location {
  flex: 1 1 250px;
}
.footer-contact {
  flex: 1 1 180px;
}

.footer-links h4,
.footer-location h4,
.footer-contact h4 {
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-contact ul li {
  /* margin-bottom: 8px; */
}

.footer-links ul li a {
  color: #000000;
  text-decoration: none;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.location-box {
  display: flex;
  align-items: flex-start;
  /* gap: 10px; */
  margin-bottom: 5px;
}

.location-box i {
  font-size: 20px;
  margin-top: 5px;
}

.lime {
  color: rgb(180, 210, 66, 1);
}

/* small rounded flag like the design */
.flag-icon {
  width: 22px;
  height: 14px;
  object-fit: cover;

  /* border: 1px solid rgba(0, 0, 0, 0.08); */
}
iframe {
  width: 100%;
  height: 60px;
  border-radius: 20px;
  border: 2px solid #011c72 !important;
}
.contactright-icon i {
  color: rgb(180, 210, 66, 1);
}

.footer-bottom {
  background: linear-gradient(to right, #000000, #6c757d);
  padding: 15px 0;
  color: #ccc;
  font-size: 14px;
}

/* .footer-bottom hr {
  border-top: 1px solid #ccc;
  margin: 0 0 10px 0;
} */

.footer-bottom .designer {
  color: rgb(180, 210, 66, 1);
  font-weight: 600;
}

.footer-bottom p {
  margin: 0;
}

.map-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

#map {
  width: 100%;
  height: 500px;
  /* border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4); */
  /* margin-top: 30px; */
}

@media (max-width: 768px) {
  #map {
    height: 350px;
  }
}
@media (max-width: 768px) {
  .subscribe-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form {
    width: 100%;
  }

  .newsletter-form .d-flex {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .subscribe-btn {
    margin-left: 0;
    width: 100%;
  }
}

/* =========================chat bot======== */
/* ===== Floating Chat (bottom-right) ===== */
.ag-chat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1060;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
}

/* pill label */
.ag-chat-pill {
  background: #ffffff;
  color: #0b1e5a;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ag-chat-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

/* circular icon */
.ag-chat-fab {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  background: radial-gradient(
    120% 120% at 80% 20%,
    #cde86a 0%,
    #91b83a 18%,
    #1b2a75 60%,
    #0b1e5a 100%
  );
  transition: transform 0.2s ease, filter 0.2s ease;
}
.ag-chat-fab:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* simple panel */
.ag-chat-panel {
  position: absolute;
  right: 70px;
  bottom: 70px;
  width: 320px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.ag-chat.open .ag-chat-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ag-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: linear-gradient(90deg, #0a1a4d, #132a7a);
  color: #fff;
}
.ag-chat-close {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.ag-chat-body {
  padding: 12px;
  min-height: 120px;
  max-height: 260px;
  overflow: auto;
}
.ag-chat-input {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid #eee;
}
.ag-chat-input input {
  flex: 1;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 10px 12px;
  outline: 0;
}
.ag-send {
  border: 0;
  background: #0b1e5a;
  color: #fff;
  width: 44px;
  border-radius: 10px;
  cursor: pointer;
}

@media (max-width: 575.98px) {
  .ag-chat-pill {
    display: none;
  } /* show only the round button on mobile */
  .ag-chat-panel {
    width: calc(100vw - 32px);
    right: 0;
    bottom: 70px;
  }
}

@media (max-width: 768px) {
  .section-heading {
    text-align: center;
  }

  .right-text {
    text-align: center;
    margin-top: 30px;
  }
  .elementor-widget-container {
    width: 100%;
    text-align: center;
  }
  .subscribe-box h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  .about-heading {
    font-size: 2.5rem;
  }
  .about-left .translate-middle {
    position: static !important;
    transform: none !important;
    padding-top: 1rem;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 20px;
    max-width: 100%;
    animation: fadeUp 1.8s ease-out;
  }
  .hero .hero-nav {
    display: none;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 992px) {
  .date__div {
    display: none;
  }
}

/* -====================about us styling================ */
/* Re-usable heading */

/* ---------- Profile ---------- */
.profile-card {
  background: #fff;
  padding-right: 30px;
}
.profile-card p {
  /* color: #2b2f38; */
  /* font-size: 13px; */
  margin-bottom: 0.5rem;
}
/* .profile-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 45, 114, 0.15);
}
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
} */
.profile-photo .photo-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgb(180, 210, 66, 1);
  color: #0d1e4f;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
}

/* ---------- Mission & Vision ---------- */
.mv-section {
  background: #f5f7fb;
}
.mv-card {
  background: #fff;
  border: 1px solid #e7ecf5;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 10px 24px rgba(15, 45, 114, 0.06);
}
.mv-card h4 {
  color: #000000;
  font-weight: 600;
}
.mv-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #6c757d;
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
}

/* ---------- Highlights ---------- */
.highlights-section {
  background: #fff;
}
.hi-card {
  background: #fff;
  border: 1px solid #e9eef5;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(15, 45, 114, 0.06);
}
.hi-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f2d72;
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}
.hi-card h5 {
  font-weight: 800;
  color: #0f2d72;
}

/* ---------- Values ---------- */
.values-section {
  background: #f5f7fb;
}
.val-card {
  background: #fff;
  border: 1px solid #e7ecf5;
  border-radius: 16px;
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.val-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 45, 114, 0.1);
}
.val-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(180, 210, 66, 1);
  color: #0d1e4f;
  margin-bottom: 8px;
}
.val-card h6 {
  font-weight: 800;
  color: #0f2d72;
}

/* ---------- CTA ---------- */
.about-cta {
  background: linear-gradient(90deg, #0f2d72 0%, #0a1e50 100%);
  color: #fff;
  padding: 38px 0;
}
.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.about-cta .btn {
  border-width: 2px;
}

@media (max-width: 767.98px) {
  .cta-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================accreditations================= */
.logo-grid {
  padding: 40px 0 60px;
}
.logo-card {
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: 18px;
  height: 130px; /* consistent tile height */
  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(15, 45, 114, 0.08);
  border-color: #011c72;
}
.logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* handles varied logo aspect ratios */
  image-rendering: -webkit-optimize-contrast;
}

/* Optional small section label */
.section-kicker {
  display: inline-block;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #dee2e6;
  color: #011c72;
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 10px;
}

/* ===================contact us page=================== */

.contact-head p {
  margin: 10px 0 0;
  /* font-size: 14px; */
  max-width: 820px;
}

.quick-actions .qcard {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: 16px;
  padding: 20px 0 20px 5px;
}
.quick-actions .qcard i {
  color: rgb(180, 210, 66, 1);
}
.quick-actions .qtitle {
  margin: 0;
  font-weight: 800;
  color: #011c72;
  font-size: 14px;
  line-height: 1.1;
}
.quick-actions .qmeta {
  margin: 0;
  /* color: #55637c; */
  font-size: 14px;
}

.loc-wrap {
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: 22px;
  overflow: hidden;
}
.loc-aside {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  border-right: 1px solid #e6e9ef;
}
.nav-pills .nav-link {
  text-align: left;
  border-radius: 12px;
  color: #011c72;
  font-weight: 700;
  padding: 12px 14px;
  border: 1px solid transparent;
}
.nav-pills .nav-link i {
  color: rgb(180, 210, 66, 1);
  margin-right: 10px;
}
.nav-pills .nav-link.active {
  background: #fff;
  border-color: #e6e9ef;
  box-shadow: 0 10px 18px rgba(15, 45, 114, 0.08);
}

.loc-panel {
  padding: 24px;
}
.loc-title {
  margin: 0 0 2px;
  color: #0f2d72;
  font-size: 22px;
  font-weight: 800;
}
.loc-sub {
  color: #55637c;
  margin-bottom: 14px;
}
.meta-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #011c72;
  margin-bottom: 10px;
}
.meta-item i {
  color: rgb(180, 210, 66, 1);
  margin-top: 3px;
}
.mapbox {
  /* border: 1px solid #e6e9ef; */
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  /* box-shadow: 0 8px 20px rgba(15, 45, 114, 0.06); */
}
.mapbox iframe {
  width: 100%;
  height: auto;
  border: 0;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: #011c72 !important;
}
@media (min-width: 992px) {
  .mapbox iframe {
    height: auto;
  }
}

/* .form-card {
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 18px 36px rgba(15, 45, 114, 0.08);
} */
.form-card h3 {
  color: #000000;
  font-weight: 800;
}
.form-floating > .form-control,
.form-floating > .form-select {
  border-radius: 12px;
  border: 1px solid #dfe5ee;
}
.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
  border-color: rgb(180, 210, 66, 1);
  box-shadow: 0 0 0 0.2rem rgba(180, 210, 66, 0.25);
}
.btn-brand {
  background: #dee2e6;
  color: #000000;
  font-weight: 600;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
}
.btn-brand:hover {
  filter: brightness(0.95);
}

/* =============================E-learning page ================ */

.page-head p {
  margin: 10px 0 0;
  /* color: #55637c; */
  /* max-width: 900px; */
}

.feat-card {
  height: 100%;
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: 0 12px 28px rgba(15, 45, 114, 0.08);
}
.feat-ico {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #0f2d72;
  color: #fff;
}
.feat-card h5 {
  margin: 12px 0 6px;
  color: #0f2d72;
  font-weight: 800;
}
.feat-card p {
  color: #55637c;
  margin: 0;
}

.how {
  background: #0f2d72;
  border-radius: 20px;
  color: #fff;
  overflow: hidden;
}
.how .step {
  padding: 20px 18px;
}
.how .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgb(180, 210, 66, 1);
  color: #0f2d72;
  font-weight: 800;
  margin-right: 10px;
}
.how h6 {
  margin: 0;
  font-weight: 800;
}
.how p {
  margin: 6px 0 0;
  opacity: 0.9;
}

.res-card {
  height: 100%;
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 45, 114, 0.08);
}
.res-thumb {
  height: 170px;
  background: #0f2d72 url("asset/images/banner2.jpg") center/cover no-repeat;
  opacity: 0.9;
}
.res-body {
  padding: 16px;
}
.res-body h6 {
  color: #0f2d72;
  font-weight: 800;
}
.res-body p {
  color: #55637c;
  margin: 0 0 8px;
}
.btn-lite {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e6e9ef;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  color: #011c72;
  text-decoration: none;
}
.btn-lite i {
  color: rgb(180, 210, 66, 1);
}

.faq .accordion-button {
  font-weight: 700;
  color: #011c72;
}
.faq .accordion-button:focus {
  box-shadow: none;
}
.faq .accordion-button:not(.collapsed) {
  color: #0f2d72;
  background: #eef4ff;
}
.faq .accordion-item {
  border: 1px solid #e6e9ef;
  border-radius: 14px;
  overflow: hidden;
}
.faq .accordion-body {
  color: #55637c;
}

.cta {
  background: linear-gradient(135deg, #0f2d72 0%, #152f87 100%);
  border-radius: 22px;
  color: #fff;
}
.cta .btn-brand {
  background: rgb(180, 210, 66, 1);
  color: #0f2d72;
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  padding: 10px 18px;
  text-decoration: none;
}
.cta .btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  text-decoration: none;
}
.cta .btn-ghost:hover {
  background: rgba(255, 255, 255);
}
/* =======================policies page================= */

.page-head p {
  margin: 0;
  /* color: #55637c; */
  /* max-width: 950px; */
}

.pol-wrap {
  padding: 28px 0;
}
.pol-intro {
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(15, 45, 114, 0.08);
  color: #011c72;
}

.accordion.policies .accordion-item {
  border: 1px solid #e6e9ef;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 45, 114, 0.06);
}
.accordion-header {
  margin-bottom: 0px !important;
}
.accordion.policies .accordion-button {
  font-weight: 800;
  color: #000000;
  font-size: 20px !important;
}
.accordion.policies .accordion-button:focus {
  box-shadow: none;
}
.accordion.policies .accordion-button:not(.collapsed) {
  background: #eef4ff;
  color: #0f2d72;
}
.accordion.policies .accordion-body {
  color: #55637c;
}
.acc-bottom .pull-right {
  background-color: #000000;
  color: white;
  border-radius: 20px;
}
.table-policy {
  border: 1px solid #e6e9ef;
  border-radius: 12px;
  overflow: hidden;
}
.table-policy thead th {
  background: #f6f8fb;
  color: #0f2d72;
  font-weight: 800;
}
.table-policy td,
.table-policy th {
  vertical-align: top;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #e6e9ef;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 700;
  color: #011c72;
  text-decoration: none;
}
.tag i {
  color: #b4d242;
}

.forms-box {
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: 16px;
  padding: 16px;
}
.forms-box h6 {
  color: #0f2d72;
  font-weight: 800;
}
.forms-box ul {
  margin: 0;
  padding-left: 18px;
}
.forms-box li {
  margin: 0.25rem 0;
}

/* ====================================== */
/* ========== Accreditations: Highfield ========== */

.acc-lead {
  font-size: 15.5px;
  line-height: 1.6;
}
.acc-brand .acc-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 8px;
}
.acc-link {
  font-size: 13px;
  text-decoration: none;
  color: rgb(180, 210, 66, 1);
  font-weight: 800;
}
.acc-link:hover {
  text-decoration: underline;
}

.acc-side .form-control {
  border-radius: 10px;
}
.acc-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.acc-nav a {
  font-size: 14px;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 8px;
  color: #0f2d72;
}
.acc-nav a:hover {
  background: #eef5fb;
}

.acc-cat {
  border: 1px solid #e7ebf0;
  border-radius: 14px;
  margin-bottom: 16px;
  background: #fff;
  overflow: hidden;
}
.acc-cat[open] {
  box-shadow: 0 6px 24px rgba(15, 45, 114, 0.06);
}
.acc-cat summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 12px 16px;
  background: linear-gradient(180deg, #f7fbff, #f0f6fb);
}
.acc-cat summary::-webkit-details-marker {
  display: none;
}
.acc-cat summary span:first-child {
  font-weight: 700;
  color: #0f2d72;
}
.acc-cat .acc-count {
  font-size: 12px;
  color: #6b7a90;
  background: #e9f3fb;
  border: 1px solid #cfe6f7;
  border-radius: 999px;
  padding: 2px 8px;
}

.acc-list {
  margin: 0;
  padding: 10px 12px 14px 12px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.acc-list li {
  position: relative;
  padding: 10px 12px 10px 54px;
  border: 1px solid #edf1f5;
  border-radius: 12px;
  background: #fff;
}
.acc-list li::before {
  content: attr(data-lvl);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 800;
  font-size: 12px;
  line-height: 1;
  color: white;
  background: rgb(180, 210, 66, 1);
  border: 2px solid #011c72;
  border-radius: 10px;
  padding: 6px 8px;
}
.acc-list li:hover {
  border-color: #d7e6f5;
  background: #fbfdff;
}

@media (max-width: 991.98px) {
  .acc-side {
    position: static;
  }
}
/* ===== Certificate Verification styles (no :root used) ===== */

.verify-label {
  color: #000000;
  font-weight: 600;
}
.verify-input {
  height: 48px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  box-shadow: none;
}
.verify-input:focus {
  border-color: #0f2d72;
  box-shadow: 0 0 0 0.15rem rgba(15, 45, 114, 0.12);
}

.btn-verify {
  background: #000000 !important;
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 10px !important;
  /* height: 44px; */
}
.btn-verify:hover {
  background: #102b52;
  color: #fff;
}

.verify-message .alert {
  max-width: 860px;
  margin: 0 auto;
}

.verify-result .kv span {
  display: block;
  font-size: 12px;
  color: #6c757d;
}
.verify-result .kv strong {
  font-size: 16px;
  color: #1b1f29;
}

#resBadge {
  background: #e9eef9;
  color: #0f2d72;
  border-radius: 999px;
}
.badge-valid {
  background: #e6f7ef !important;
  color: #1f7a4c !important;
}
.badge-expired {
  background: #fff2f0 !important;
  color: #b02a37 !important;
}
.badge-invalid {
  background: #fff2f0 !important;
  color: #b02a37 !important;
} /* ---- Section-scoped styles ---- */
.course-simple.card {
  border: 1px solid #eef0f4;
  border-radius: 0.75rem;
  overflow: hidden;
}
.course-simple.card:hover {
  box-shadow: 0 10px 24px rgba(15, 45, 114, 0.12);
  transform: translateY(-2px);
  transition: 0.25s;
}

.media-wrap img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.price-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}
.price-paid {
  background: #0f2d72;
}
.price-free {
  background: #28a745;
}

.course-title {
  line-height: 1.3;
  font-weight: 700;
  color: #011c72;
}
.branch-label {
  color: rgb(180, 210, 66, 1);
}
.btn-ago {
  background: #000000 !important;
  color: #fff !important;
  border: none;
  border-radius: 25px;
}
.btn-ago:hover {
  opacity: 0.92;
  color: #fff;
}
.acad h2 {
  font-weight: 800;
  color: #000000;
  letter-spacing: 0.15px;
}
.acad .toolbar .input-group-text {
  background: #fff;
  border-right: 0;
}
.acad .toolbar .form-control {
  border-left: 0;
}
.acad .chip {
  display: inline-block;
  background: #f2f5f9;
  border: 1px solid #e7ecf3;
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  color: #455565;
}
#activeChips .chip-act {
  background: #eaf0ff;
  color: #0f2d72;
  border: 1px solid #cfe0ff;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.8rem;
}
#activeChips .chip-act button {
  background: transparent;
  border: 0;
  margin-left: 0.25rem;
  color: #6b7785;
}

/* Card – pro style */
.acad .course {
  border: 1px solid #eef1f6;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.2s ease;
  box-shadow: 0 6px 18px rgba(21, 34, 50, 0.06);
}
.acad .course:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(21, 34, 50, 0.08);
}
.acad .media-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: #e9eef5;
}
.acad .media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.acad .ribbon {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: #ffffffd9;
  color: #1b2a4a;
  border: 1px solid #e5e9f0;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 600;
}
.acad .price-badge {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
}
.acad .price-paid {
  background: #ffeab6;
  border: 1px solid #f6d47c;
  color: #6b4d00;
}
.acad .price-free {
  background: #d9f7e7;
  border: 1px solid #aeeccf;
  color: #0b6b46;
}
.acad .card-body h6 {
  color: #000000;
  font-weight: 700;
}
.acad .meta .chip {
  margin: 0.2rem 0.3rem 0.2rem 0;
}
.acad .course .card-footer {
  background: #fff;
  border-top: 1px dashed #e6ebf2;
}
.acad .btn-ago {
  background: #0f2d72;
  color: #fff;
  border-radius: 25px;
  padding: 0.3rem 0.5rem;
}
.acad .btn-ago:hover {
  background: #0c2359;
  color: white;
}
.acad .form-check-input:checked {
  background-color: #011c72;
}
.acad .sidebar .card {
  border: 1px solid #eef1f6;
  border-radius: 14px;
}
.acad .sidebar .form-check {
  margin-bottom: 0.35rem;
}
.acad .quick-branches a {
  display: block;
  padding: 0.4rem 0.25rem;
  border-radius: 0.5rem;
  color: #243041;
  text-decoration: none;
}
.acad .quick-branches a:hover {
  background: #f6f8fb;
}
course-simple .img-wrap {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.course-simple img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.course-simple:hover img {
  transform: scale(1.03);
}
.price-badge {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}
.price-paid {
  background: #0f2d72;
} /* Agora primary */
.price-free {
  background: #28a745;
} /* Green for free */
.btn-ago {
  background: #0f2d72;
  color: #fff;
}
.btn-ago:hover {
  background: #0c245a;
  color: #fff;
}
/* equal height polish */
#acadGrid .swiper-wrapper {
  align-items: stretch;
}
#acadGrid .col-12 {
  display: flex;
}
#acadGrid .card {
  display: flex;
  flex-direction: column;
}
#acadGrid .card-body {
  flex: 1 1 auto;
}
.btn-ago {
  background: #011c72;
  color: #fff;
  border: none;
}
.btn-ago:hover {
  background: #0c2560;
  color: #fff;
}
.section-h {
  font-size: 1.25rem;
  font-weight: 700;
}

.cd-hero {
  min-height: 280px;
}
.cd-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cd-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
}
.cd-title {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.cd-breadcrumb a {
  opacity: 0.85;
}
.cd-kicker {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #6c757d;
}

.price-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}
.price-paid {
  background: #ffe9d7;
  color: #a24b00;
}
.price-free {
  background: #dff6dd;
  color: #0b5d1e;
}

.cd-list {
  padding-left: 1.1rem;
  margin-bottom: 0;
}
.cd-list li {
  margin: 0.25rem 0;
}
.cd-table thead th {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #6c7580;
}
.cd-table tbody td {
  vertical-align: middle;
}

.cd-side .cd-facts li {
  margin: 0.35rem 0;
}
.cd-side .cd-facts i {
  color: var(--ago-sky);
}

/* Accordions tidy */
.cd-acc .accordion-button {
  font-weight: 600;
}
.cd-acc .accordion-button:focus {
  box-shadow: none;
}

.btn-ago {
  background: #011c72;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.55rem 1.1rem;
  font-weight: 700;
}
.btn-ago:hover {
  background: #0c255f;
  color: #fff;
}

.ag-cd-card {
  border-radius: 14px;
  overflow: hidden;
}
.ag-cd-card .card-body {
  padding: 1.25rem 1.25rem 1.5rem;
  /* border: 1px solid #ccc; */
}
@media (min-width: 992px) {
  .ag-cd-card .card-body {
    padding: 1.75rem 2rem;
  }
}

.ag-cd-subtitle {
  font-weight: 600;
  color: #011c72;
  margin: 1rem 0 0.75rem;
  font-size: 22px;
}
.ag-cd-muted {
  min-height: 0.25rem;
}

/* Table polish */
.ag-cd-table thead th {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: #434447;
  background: #f5f7fb;
  border-bottom: 1px solid #e8edf4 !important;
}
.ag-cd-table tbody td {
  border-top: 1px solid #eef2f6 !important;
}
.ag-cd-table tbody tr:hover td {
  background: #fafcff;
}
@media (max-width: 767.98px) {
  .acad h2 {
    font-size: 1.3rem;
  }
}
/* /======================responsive ================== */
@media (min-width: 992px) {
  .logo-card {
    height: 150px;
    padding: 10px;
  }
}
