.stats-section {
  --st-bg: #f5f5f0;
  --st-card: #f7f7f7;
  --st-border: #eb3d44;
  --st-ink: #1a1a2e;
  --st-soft: #555e6e;
  --st-green: #1a9e4a;
  --st-yellow: #d4a000;
  --st-radius: 14px;
  width: 100%;
  padding: 60px 0;
}

.stats-section .st-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── CARD ── */
.stats-section .st-card {
  background: var(--st-card);
  border-radius: var(--st-radius);
  border-left: 4px solid var(--st-border);
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition:
    transform 0.3s cubic-bezier(0.22, 0.68, 0, 1.2),
    box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: st-up 0.55s cubic-bezier(0.22, 0.68, 0, 1.2) forwards;
}

.stats-section .st-card:nth-child(1) {
  animation-delay: 0.05s;
}
.stats-section .st-card:nth-child(2) {
  animation-delay: 0.12s;
}
.stats-section .st-card:nth-child(3) {
  animation-delay: 0.19s;
}

@keyframes st-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stats-section .st-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* ── ICON ── */
.stats-section .st-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-section .st-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--st-border);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── BIG NUMBER ── */
.stats-section .st-value {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--st-ink);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

/* ── LABEL ── */
.stats-section .st-label {
  font-size: 0.88rem;
  color: var(--st-soft);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 10px;
}

/* ── SUB TEXT ── */
.stats-section .st-sub {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
}

.stats-section .st-sub.green {
  color: var(--st-green);
}
.stats-section .st-sub.yellow {
  color: var(--st-yellow);
}
.stats-section .st-sub.red {
  color: var(--st-border);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .stats-section .st-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-section .st-wrap {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
}

/* header */

nav.navbar.bootsnav li.dropdown ul.dropdown-menu {
  top: 70px !important;
  display: none;
  opacity: 1;
}

.mega-dropdown .dropdown-menu {
  width: 100%;
  left: 0;
  right: 0;
  border: none;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.mega-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 12px;
  color: #111827;
}

.mega-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-list li {
  margin-bottom: 8px;
}

.mega-list a {
  text-decoration: none;
  color: #4b5563;
  font-size: 14px;
  transition: all 0.2s ease;
}

.mega-list a:hover {
  color: #eb3d44 !important;
  padding-left: 4px;
}

.form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.custom-form {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.custom-form input {
  flex: 1 1 200px;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.btn-submit {
  padding: 10px 25px;
  background: #eb3d44 ;
  border: none;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}
.inspire-abt {
  background: linear-gradient(
    120deg,
    #a3a3a6 0%,
    #d24a50 35%,
    #eb3d44 50%,
    #d24a50 65%,
    #a3a3a6 100%
  );
  color: #fff;
}

.vertical-divider {
    width: 1px;
    height: 120px;
    background: #fff;
    opacity: 0.6;
}

.vision-mission p {
    max-width: 380px;
}

/* Hide divider on mobile */
@media (max-width: 768px) {
    .vertical-divider {
        display: none;
    }
}

.pod-section{
    padding:80px 0;
}

.pod-label{
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#eb3d44;
    font-weight:600;
}

.pod-title{
    font-weight:700;
    margin:10px 0 20px;
    color:#222;
}

.pod-description{
    max-width:520px;
    margin-bottom:25px;
    color:#555;
}

.pod-list{
    list-style:none;
    padding:0;
}

.pod-list li{
    position:relative;
    padding-left:22px;
    margin-bottom:14px;
    line-height:1.6;
    color:#ffffff;
}

.pod-list li::before{
    content:"";
    width:7px;
    height:7px;
    background:#ffffff;
    border-radius:50%;
    position:absolute;
    left:0;
    top:9px;
}
