:root {
  --navy: #0D1F3C;
  --navy2: #162B52;
  --red: #C8102E;
  --red2: #E8193A;
  --white: #fff;
  --offwhite: #F4F6F9;
  --gray: #6B7280;
  --lightgray: #E5E8EE;
  --gold: #B8942A;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  color: #1a1a2e;
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Oswald', sans-serif;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse {

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

  50% {
    transform: scale(1.05);
  }
}

@keyframes borderGrow {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.reveal {
  opacity: 1;
  transform: none;
}

header {
  animation: slideDown .6s ease both;
}

nav {
  animation: slideDown .6s .1s ease both;
}

.logo-link img {
  animation: pulse 4s ease infinite;
}

.sec-title {
  animation: fadeIn .8s ease both;
}

.sec-line {
  animation: borderGrow .8s .2s ease both;
}

/* ===== TOP BARS ===== */
.org-name-bar {
  background: var(--red);
  text-align: center;
  padding: 10px 20px;
}

.org-name-bar span {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.topbar {
  background: var(--navy);
  padding: 6px 0;
}

.topbar .wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  font-size: 12px;
  transition: color .2s;
}

.topbar a:hover {
  color: #fff;
}

.topbar .tbtn {
  padding: 6px 14px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tbtn-red {
  background: var(--red);
  color: #fff !important;
}

.tbtn-gold {
  background: var(--gold);
  color: #fff !important;
}

/* ===== HEADER ===== */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .1);
  border-bottom: 3px solid var(--lightgray);
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-link img {
  height: 95px;
  object-fit: contain;
  transition: transform .3s;
}

.logo-link:hover img {
  transform: scale(1.04);
}

/* ===== SEARCH BOX ===== */
.search-wrapper {
  position: relative;
}

.searchbox {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--lightgray);
  border-radius: 25px;
  padding: 8px 16px;
  gap: 8px;
  transition: border-color .2s, box-shadow .2s;
}

.searchbox:focus-within {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13, 31, 60, .08);
}

.searchbox input {
  border: none;
  outline: none;
  font-size: 13px;
  width: 200px;
  font-family: 'Source Sans 3', sans-serif;
  background: transparent;
  color: #444;
}

.searchbox .search-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0;
}

.search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid var(--lightgray);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .14);
  z-index: 9999;
  max-height: 320px;
  overflow-y: auto;
  min-width: 300px;
}

.search-dropdown.active {
  display: block;
}

.sd-item {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--lightgray);
  transition: background .15s;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.sd-item:last-child {
  border-bottom: none;
}

.sd-item:hover {
  background: var(--offwhite);
}

.sd-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.sd-info h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 2px;
}

.sd-info p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}

.sd-no-result {
  padding: 18px 16px;
  text-align: center;
  color: var(--gray);
  font-size: 13px;
}

.sd-highlight {
  background: #fff3cd;
  border-radius: 2px;
  padding: 0 2px;
}

/* ===== NAV ===== */
nav {
  background: var(--navy);
}

nav ul {
  list-style: none;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
}

nav ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 15px 18px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  transition: background .2s;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 3px;
  background: var(--red);
  transition: left .25s, right .25s;
}

nav ul li a:hover::after,
nav ul li.active a::after {
  left: 0;
  right: 0;
}

nav ul li a:hover {
  background: rgba(255, 255, 255, .06);
}

nav ul li.active a {
  background: var(--red);
}

nav ul li.active a::after {
  display: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 540px;
  overflow: hidden;
  background: var(--navy);
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  overflow: hidden;
}

.hero-flag {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, #B22234 0, #B22234 calc(100% / 13), #fff calc(100% / 13), #fff calc((100% / 13) * 2));
  opacity: .55;
}

.hero-flag-blue {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 53.85%;
  background: #3C3B6E;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(9, 1fr);
  padding: 8px 10px;
  gap: 2px 4px;
  align-items: center;
  justify-items: center;
  opacity: .95;
}

.hero-star {
  color: rgba(255, 255, 255, .9);
  font-size: 10px;
  line-height: 1;
}

.hero-flag-blue .hero-star:nth-child(n+7):nth-child(-n+11),
.hero-flag-blue .hero-star:nth-child(n+18):nth-child(-n+22),
.hero-flag-blue .hero-star:nth-child(n+29):nth-child(-n+33),
.hero-flag-blue .hero-star:nth-child(n+40):nth-child(-n+44) {
  transform: translateX(50%);
}

.hero-flag-blue .hero-star.empty {
  opacity: 0;
}

.hero-silhouette {
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 220px;
  height: 380px;
  background: rgba(0, 0, 0, .5);
  clip-path: polygon(40% 0%, 60% 0%, 65% 15%, 80% 20%, 80% 55%, 65% 55%, 65% 70%, 75% 100%, 25% 100%, 35% 70%, 35% 55%, 20% 55%, 20% 20%, 35% 15%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(13, 31, 60, 1) 0%, rgba(13, 31, 60, .92) 45%, rgba(13, 31, 60, .5) 70%, rgba(13, 31, 60, .1) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255, 255, 255, .012) 40px, rgba(255, 255, 255, .012) 41px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 20px;
  margin-bottom: 24px;
  width: fit-content;
  animation: fadeUp .7s .2s ease both !important;
}

.hero h1 {
  font-size: 64px;
  color: #fff;
  line-height: .92;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 22px;
  text-transform: uppercase;
  animation: fadeUp .7s .4s ease both !important;
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
  display: block;
}

.hero h1 small {
  font-size: 38px;
  color: rgba(255, 255, 255, .75);
  display: block;
  font-weight: 500;
}

.hero-p {
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 34px;
  animation: fadeUp .7s .6s ease both !important;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .7s .8s ease both !important;
}

.btn-p {
  background: var(--red);
  color: #fff;
  padding: 15px 34px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .2s;
  box-shadow: 0 6px 24px rgba(200, 16, 46, .38);
}

.btn-p:hover {
  background: var(--red2);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200, 16, 46, .5);
}

.btn-o {
  background: transparent;
  color: #fff;
  padding: 14px 34px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, .4);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .2s;
}

.btn-o:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
  transform: translateY(-3px);
}

.stripe {
  background: var(--red);
  height: 5px;
  animation: fadeIn 1.2s 1.5s both;
}

/* ===== ACTION ROW ===== */
.actionrow {
  background: var(--navy2);
  animation: fadeIn .5s .3s ease both;
}

.actionrow .wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: stretch;
}

.abtn {
  padding: 17px 18px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s;
  border-right: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, .8);
}

.abtn:hover {
  background: rgba(255, 255, 255, .07);
  color: #fff;
}

.abtn.red {
  background: var(--red);
  color: #fff;
  border-right: none;
}

.abtn.red:hover {
  background: var(--red2);
}

.amonth {
  padding: 17px 22px;
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.amonth a {
  color: #7eb3ff;
  margin-left: 4px;
  text-decoration: underline;
}

/* ===== STATS ===== */
.stats {
  background: var(--offwhite);
  padding: 44px 0;
  border-bottom: 1px solid var(--lightgray);
}

.stats-g {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat {
  text-align: center;
}

.stat-n {
  font-family: 'Oswald', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat-bar {
  width: 40px;
  height: 3px;
  background: var(--red);
  margin: 6px auto;
  border-radius: 2px;
}

.stat-l {
  font-size: 12px;
  color: var(--gray);
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
}

/* ===== SECTIONS ===== */
section {
  padding: 75px 0;
}

.wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.sec-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.sec-line {
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 0 auto 50px;
  border-radius: 2px;
}

.cards2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.fcard {
  border: 1px solid var(--lightgray);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  transition: .3s;
}

.fcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(13, 31, 60, .13);
}

.fcard-img {
  height: 320px;
  position: relative;
  overflow: hidden;
}

.fcard-img .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 31, 60, .55), transparent);
}

.fcard-body {
  padding: 26px;
}

.fcard-body h3 {
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 600;
}

.fcard-body p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
}

.fcard-body a {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  transition: gap .2s;
}

.fcard-body a:hover {
  gap: 12px;
}

.serv-sec {
  background: var(--navy);
  padding: 75px 0;
}

.serv-sec .sec-title {
  color: #fff;
}

.serv-sec .sec-line {
  background: var(--red);
}

.serv-g {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sitem {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  padding: 30px 18px;
  text-align: center;
  border-radius: 4px;
  transition: .3s;
  cursor: default;
}

.sitem:hover {
  background: rgba(200, 16, 46, .2);
  border-color: var(--red);
  transform: translateY(-5px);
}

.sicon {
  font-size: 38px;
  margin-bottom: 14px;
  display: block;
  transition: transform .3s;
}

.sitem:hover .sicon {
  transform: scale(1.15);
}

.sitem h4 {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .3px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.split-img {
  position: relative;
  overflow: hidden;
}

.img-mission {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 31, 60, .4) 0%, rgba(200, 16, 46, .1) 100%), repeating-linear-gradient(90deg, transparent, transparent 4px, rgba(255, 255, 255, .03) 4px, rgba(255, 255, 255, .03) 5px), linear-gradient(160deg, #1a3a6e 0%, #0D1F3C 60%, #2a1010 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.split-text {
  background: var(--navy);
  padding: 70px 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mtag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 16px;
  font-family: 'Oswald', sans-serif;
}

.split-text h2 {
  font-size: 38px;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.1;
}

.split-text h2 span {
  color: var(--red);
}

.split-text p {
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 14px;
}

.stories-sec {
  background: var(--offwhite);
}

.story-card {
  background: #fff;
  border-left: 5px solid var(--red);
  border-radius: 0 4px 4px 0;
  padding: 55px 35px;
  display: flex;
  gap: 26px;
  align-items: center;
  box-shadow: 0 6px 30px rgba(0, 0, 0, .07);
}

.story-ava {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 4px solid var(--red);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), #2a4a8a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-text h3 {
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 14px;
}

.story-text p {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.mbanner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
  padding: 58px 0;
  position: relative;
  overflow: hidden;
}

.mbanner::before {
  content: '★★★★★';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 200px;
  color: rgba(255, 255, 255, .025);
  letter-spacing: 30px;
  white-space: nowrap;
}

.mbanner .wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}

.mbanner h2 {
  color: #fff;
  font-size: 27px;
  font-weight: 600;
  max-width: 820px;
  margin: auto;
  line-height: 1.65;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.mbanner h2 span {
  color: var(--red);
}

.news-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.bigcard {
  background: #fff;
  border: 1px solid var(--lightgray);
  overflow: hidden;
  border-radius: 4px;
}

.bigcard-body {
  padding: 26px;
}

.bigcard-body h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
  font-family: 'Oswald', sans-serif;
}

.bigcard-body p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.nside {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nitem {
  display: flex;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--lightgray);
  background: #fff;
  border-radius: 3px;
  transition: .2s;
}

.nitem:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  transform: translateX(5px);
}

.nitem-img {
  width: 76px;
  height: 68px;
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
}

.nitem-body h4 {
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.4;
  font-family: 'Oswald', sans-serif;
}

.nitem-body p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}

.xlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
  transition: gap .2s;
}

.xlink:hover {
  gap: 12px;
}

.campus-sec {
  background: var(--offwhite);
  padding: 75px 0;
}

.campus-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.ccard {
  background: #fff;
  border: 1px solid var(--lightgray);
  border-radius: 4px;
  overflow: hidden;
  transition: .3s;
}

.ccard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .1);
}

.ccard-map {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.ccard-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.ccard-body {
  padding: 24px;
}

.ccard-body h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}

.cinfo {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

.join3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.jcard {
  border: 1px solid var(--lightgray);
  overflow: hidden;
  border-radius: 4px;
  transition: .3s;
}

.jcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .1);
}

.jcard-img {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

.jcard-body {
  padding: 22px;
}

.jcard-body h3 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 8px;
}

.jcard-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
}

.off-sec {
  background: var(--navy);
  padding: 75px 0;
  position: relative;
  overflow: hidden;
}

.off-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(255, 255, 255, .06), transparent 40%), radial-gradient(circle at 80% 30%, rgba(200, 16, 46, .10), transparent 45%), radial-gradient(circle at 50% 90%, rgba(255, 255, 255, .04), transparent 50%);
  pointer-events: none;
}

.off-sec .wrap {
  position: relative;
  z-index: 1;
}

.off-sec .sec-title {
  color: #fff;
}

.off-sec .sec-line {
  background: var(--red);
}

.off-g {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.ocard {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: 44px 22px 42px;
  text-align: center;
  transition: .25s;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
  position: relative;
}

.ocard::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .06);
  pointer-events: none;
}

.ocard:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 16, 46, .55);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .28);
}

.oava {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 22px;
  border: 4px solid var(--red);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  box-shadow: 0 10px 28px rgba(0, 0, 0, .25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.oava img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
  transform: scale(1.06);
}

.oava img.fit-top {
  object-position: center 6%;
}

.ocard h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .2px;
}

.ocard p {
  font-size: 11px;
  color: rgba(255, 255, 255, .60);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 2px;
}

.ftag {
  text-align: center;
  padding: 46px 20px;
  background: var(--offwhite);
  border-top: 3px solid var(--lightgray);
  animation: fadeIn 1s ease both;
}

.ftag img {
  height: 80px;
  margin-bottom: 16px;
}

.ftag h2 {
  font-size: 26px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ftag h2 span {
  color: var(--red);
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: #fff;
  padding: 55px 0 32px;
}

.foot-g {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 44px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.fcol h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 18px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
}

.fform input {
  width: 100%;
  padding: 11px 14px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  color: #fff;
  font-size: 13px;
  outline: none;
  border-radius: 2px;
  transition: border-color .2s;
}

.fform input:focus {
  border-color: var(--red);
}

.fform input::placeholder {
  color: rgba(255, 255, 255, .33);
}

.fform button {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 11px 26px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: .2s;
  border-radius: 2px;
}

.fform button:hover {
  background: var(--red2);
  transform: translateY(-2px);
}

.fcon p {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 12px;
}

.cbtn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 8px;
  transition: background .2s;
  border-radius: 2px;
}

.cbtn:hover {
  background: rgba(255, 255, 255, .12);
}

.flinks a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .62);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 9px;
  transition: color .2s;
}

.flinks a::before {
  content: '›';
  color: var(--red);
  font-weight: 700;
}

.flinks a:hover {
  color: #fff;
}

.srow {
  display: flex;
  gap: 10px;
  max-width: 1200px;
  margin: 28px auto 0;
  padding: 0 20px;
  justify-content: center;
}

.sbtn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .09);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: .2s;
}

.sbtn:hover {
  background: var(--red);
  transform: translateY(-3px);
}

.fbot {
  max-width: 1200px;
  margin: 26px auto 0;
  padding: 20px 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .09);
  text-align: center;
  color: rgba(255, 255, 255, .32);
  font-size: 12px;
}

.fbot a {
  color: rgba(255, 255, 255, .32);
  text-decoration: none;
  margin: 0 10px;
  transition: color .2s;
}

.fbot a:hover {
  color: rgba(255, 255, 255, .7);
}

/* ===== BACK TO TOP ===== */
#btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: .3s;
  box-shadow: 0 4px 20px rgba(200, 16, 46, .4);
  border: none;
}

#btt.show {
  opacity: 1;
  transform: translateY(0);
}

#btt:hover {
  background: var(--red2);
  transform: translateY(-4px);
}

/* ===== Military Symbols Row (CLIENT) ===== */
.mil-wrap {
  background: var(--offwhite);
  padding: 34px 0 26px;
  border-top: 2px solid var(--lightgray);
  border-bottom: 2px solid var(--lightgray);
}

.mil-symbols {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 6px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.mil-symbol {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  border: 1px solid var(--lightgray);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .07);
  transition: transform .18s, box-shadow .18s;
  flex: 0 0 auto;
}

.mil-symbol:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .12);
}

.mil-symbol img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero h1 small {
    font-size: 26px;
  }

  .cards2,
  .news-g,
  .split,
  .campus-g {
    grid-template-columns: 1fr;
  }

  .serv-g {
    grid-template-columns: repeat(2, 1fr);
  }

  .join3 {
    grid-template-columns: 1fr 1fr;
  }

  .off-g {
    grid-template-columns: 1fr 1fr;
  }

  .stats-g {
    grid-template-columns: repeat(2, 1fr);
  }

  .foot-g {
    grid-template-columns: 1fr;
  }

  .actionrow .wrap {
    grid-template-columns: 1fr 1fr;
  }

  .amonth {
    display: none;
  }

  nav ul li a {
    padding: 14px 12px;
    font-size: 12px;
  }

  .hero {
    height: auto;
    min-height: 560px;
  }

  .hero-visual {
    width: 100%;
    opacity: .35;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(13, 31, 60, .96) 0%, rgba(13, 31, 60, .9) 55%, rgba(13, 31, 60, .82) 100%);
  }

  .hero-content {
    padding: 38px 20px 46px;
    justify-content: center;
  }

  .hero-p {
    font-size: 15px;
    max-width: 100%;
  }

  .hero-btns a {
    width: 100%;
    justify-content: center;
  }

  .hero-silhouette {
    right: 4%;
    width: 150px;
    height: 255px;
    opacity: .7;
  }

  .hero-flag-blue {
    width: 46%;
    height: 50%;
    padding: 6px 7px;
    gap: 1px 3px;
  }

  .hero-star {
    font-size: 8px;
  }
}

@media(max-width:520px) {
  .off-g {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 520px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: .98;
  }

  .hero h1 small {
    font-size: 21px;
  }

  .hero-badge {
    font-size: 10px;
    letter-spacing: 2px;
    padding: 7px 14px;
  }

  .hero-btns {
    gap: 10px;
  }

  .btn-p,
  .btn-o {
    padding: 13px 18px;
    font-size: 12px;
    letter-spacing: 1.2px;
  }

  .hero-silhouette {
    right: 2%;
    width: 120px;
    height: 210px;
    opacity: .55;
  }

  .hero-flag-blue {
    width: 50%;
    height: 48%;
  }

  .story-ava {
    margin-bottom: 30px;
  }

  .story-card {
    display: block;
  }

  .searchbox input {
    width: 160px;
  }
}
