:root {
  --red: #b20d1b;
  --red-dark: #990613;
  --navy: #061d35;
  --text: #152238;
  --muted: #4a5568;
  --soft: #f7f9fc;
  --shadow: 0 18px 35px rgba(8, 29, 53, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.page-pad { padding-left: 62px; padding-right: 62px; }

.topbar {
  background: linear-gradient(90deg, #93030f, #bd1421);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 11px 0;
}
.topbar a { color: #fff; display: inline-flex; align-items: center; gap: 10px; }
.topbar-left { gap: 22px; }
.topbar-left span { width: 1px; height: 24px; background: rgba(255,255,255,.55); }
.topbar i { font-size: 18px; }
.top-social { gap: 18px; white-space: nowrap; }
.top-social strong { font-weight: 600; }

.main-nav {
  min-height: 130px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(6, 29, 53, .08);
  z-index: 10;
}
.navbar-brand img {  }
.navbar-nav { gap: 34px; align-items: center; }
.nav-link {
  color: #080b10;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 0 !important;
  position: relative;
}
.nav-link.active, .nav-link:hover { color: var(--red); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 48px;
  height: 3px;
  background: var(--red);
}
.main-nav .dropdown-menu {
  min-width: 275px;
  padding: 14px;
  margin-top: 0;
  border: 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 22px 45px rgba(6, 29, 53, .16);
}
.main-nav .dropdown-menu::before {
  content: "";
  position: absolute;
  left: 28px;
  top: -8px;
  width: 18px;
  height: 18px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: -4px -4px 10px rgba(6, 29, 53, .04);
}
.main-nav .dropdown-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 9px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.main-nav .dropdown-item::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--red);
  font-size: 13px;
}
.main-nav .dropdown-item:hover,
.main-nav .dropdown-item:focus {
  background: linear-gradient(90deg, rgba(178, 13, 27, .1), rgba(178, 13, 27, .03));
  color: var(--red);
  transform: translateX(4px);
}
.main-nav .dropdown-toggle::after {
  border: 0;
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  margin-left: 7px;
  vertical-align: 0;
  transition: transform .2s ease;
}
.main-nav .dropdown:hover .dropdown-toggle::after,
.main-nav .dropdown.show .dropdown-toggle::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .main-nav .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  }
  .main-nav .dropdown:hover > .dropdown-menu,
  .main-nav .dropdown:focus-within > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}
.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 224px;
  padding: 18px 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red), #c91725);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 12px 25px rgba(178, 13, 27, .22);
}

.hero {
  min-height: 835px;
  position: relative;
  overflow: hidden;
  background: #f4f7fb;
}
.image-hero {
  min-height: 0;
  background: #fff;
}
.image-hero img {
  width: 100%;
  height: auto;
}
.hero-slider {
  position: relative;
  overflow: hidden;
}
.hero-slider .slick-slide {
  padding: 0;
}
.hero-slide img {
  width: 100%;
  height: auto;
}
.hero-slider .slick-prev,
.hero-slider .slick-next {
  width: 58px;
  height: 58px;
  background: rgba(255, 255, 255, .92) !important;
  border: 1px solid rgba(178, 13, 27, .12);
  box-shadow: 0 14px 30px rgba(6, 29, 53, .16);
}
.hero-slider .slick-prev {
  left: 34px;
}
.hero-slider .slick-next {
  right: 34px;
}
.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
  color: var(--red);
  font-size: 28px;
}
.hero-slider .slick-dots {
  bottom: 22px;
}
.hero-slider .slick-dots li button:before {
  color: #fff;
  opacity: .7;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}
.hero-slider .slick-dots li.slick-active button:before {
  color: var(--red);
  opacity: 1;
}
.image-hero::before { display: none; }
.image-section img {
  width: 100%;
  height: auto;
  border-radius: 0;
}
.career-cta.image-section { padding: 40px 0 62px; }
.career-cta.image-section img {
  border-radius: 38px;
  box-shadow: 0 18px 36px rgba(6, 29, 53, .12);
}
.partners-section.image-section {
  padding: 22px 24px 54px;
}
.partners-section.image-section img {
  border-radius: 34px;
  box-shadow: 0 16px 38px rgba(6, 29, 53, .12);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.93) 34%, rgba(255,255,255,.25) 54%, rgba(255,255,255,0) 100%);
  clip-path: polygon(0 0, 59% 0, 44% 100%, 0 100%);
}
.hero-inner { position: relative; z-index: 2; min-height: 835px; padding-top: 88px; }
.hero-copy { width: 705px; max-width: 58%; }
.eyebrow {
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}
.eyebrow i { font-size: 20px; transform: rotate(-25deg); opacity: .8; }
.hero h1, .section-title h2, .career-content h2 {
  color: var(--navy);
  font-size: 63px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0;
}
.hero h1 span, .section-title h2 span, .career-content h2 span { color: var(--red); display: block; }
.title-line {
  width: 74px;
  height: 3px;
  background: var(--red);
  margin: 28px 0 25px;
}
.hero p {
  font-size: 21px;
  line-height: 1.55;
  color: #2b3546;
  max-width: 690px;
}
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 35px 0 38px;
  max-width: 650px;
}
.hero-features div, .career-features div {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(6, 29, 53, .18);
}
.hero-features div:last-child, .career-features div:last-child { border-right: 0; }
.hero-features i {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 30px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(6, 29, 53, .14);
  margin-bottom: 12px;
}
.hero-features span { color: #080b10; font-size: 16px; line-height: 1.35; }
.btn-red, .btn-outline-red, .btn-light-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-width: 224px;
  min-height: 60px;
  padding: 14px 28px;
  border-radius: 7px;
  font-weight: 800;
  font-size: 17px;
}
.btn-red { background: linear-gradient(135deg, var(--red), #c71725); color: #fff; }
.btn-outline-red { border: 1.5px solid var(--red); color: var(--red); background: #fff; margin-left: 24px; }
.hero-strip {
  position: absolute;
  left: 62px;
  right: 62px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(135deg, var(--red), #bd1320);
  color: #fff;
  border-radius: 8px;
  padding: 22px 46px;
  box-shadow: var(--shadow);
}
.hero-strip div {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 42px;
  border-right: 1px solid rgba(255,255,255,.45);
}
.hero-strip div:last-child { border-right: 0; }
.hero-strip i { font-size: 42px; width: 48px; text-align: center; }
.hero-strip span { font-size: 17px; line-height: 1.55; font-weight: 700; }

.section { padding: 78px 0; position: relative; overflow: hidden; }
.section-title h2 { font-size: 42px; }
.section-title p, .lead-text {
  color: #2d3748;
  font-size: 17px;
  line-height: 1.65;
}
.section-title.text-center { max-width: 930px; margin: 0 auto 42px; }
.section-title.text-center h2 span { display: inline; }
.section-title.text-center p { max-width: 830px; margin: 20px auto 0; }
.center-plane { justify-content: center; margin-bottom: 14px; }
.center-rule {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  color: var(--red);
  margin: 24px 0 0;
}
.center-rule span, .plane-rule span { width: 72px; height: 3px; background: var(--red); display: block; }
.center-rule i, .plane-rule i { transform: rotate(-25deg); font-size: 24px; }
.feature-grid, .why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 34px;
  margin-top: 34px;
}
.mini-feature { display: flex; gap: 20px; align-items: flex-start; }
.mini-feature > i {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--red);
  font-size: 30px;
  box-shadow: 0 8px 18px rgba(6, 29, 53, .12);
}
.mini-feature h4 { color: var(--navy); font-weight: 700; font-size: 18px; margin: 0 0 8px; }
.mini-feature p { color: #2d3748; line-height: 1.55; margin: 0; }
.image-frame {
  position: relative;
  border-radius: 12px;
  
  margin-left: auto;
  max-width: 720px;
}
.image-frame img { border-radius: 12px;   }
.red-corner::after, .program-frame::after {
  content: "";
  position: absolute;
  width: 290px;
  height: 195px;
  right: -32px;
  bottom: -22px;
  border-radius: 0 10px 10px 0;
  background: var(--red);
  z-index: -1;
}
.about-section::after, .why-section::after, .program-section::after {
  content: "";
  position: absolute;
  right: 90px;
  top: 80px;
  width: 170px;
  height: 105px;
  opacity: .2;
  background-image: radial-gradient(var(--red) 1.3px, transparent 1.3px);
  background-size: 14px 14px;
}
.stats-card, .quick-stats, .graduates-strip {
  display: grid;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 7px 22px rgba(6, 29, 53, .11);
  border: 1px solid rgba(6, 29, 53, .06);
}
.stats-card {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 70px;
  padding: 28px 36px;
}
.stats-card div, .quick-stats div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  align-items: center;
  padding: 0 36px;
  border-right: 1px solid rgba(6, 29, 53, .14);
}
.stats-card div:last-child, .quick-stats div:last-child { border-right: 0; }
.stats-card i {
  grid-row: span 2;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fae8ea;
  color: var(--red);
  font-size: 28px;
}
.stats-card strong, .quick-stats strong { color: var(--red); font-size: 32px; font-weight: 700; line-height: 1; }
.stats-card span, .quick-stats span { color: #172033; font-size: 14px; }

.courses-section { background: #f8fbff; padding-top: 64px; }
.course-slider, .student-slider, .partner-slider { margin: 0 -18px; }
.slick-slide { padding: 0 0; }
.course-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 36px;
  margin-left:10px;margin-right:10px;
}
.course-card img {   }
.course-body {
  position: relative;
  min-height: 210px;
  padding: 48px 55px 35px;
  text-align: center;
}
.course-icon {
  position: absolute;
  left: 50%;
  top: -52px;
  transform: translateX(-50%);
  width: 84px;
  height: 84px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), #cf1d2a);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  box-shadow: 0 10px 22px rgba(178, 13, 27, .32);
}
.course-card h3 { color: var(--red);     font-size: 24px;
    font-weight: 700; line-height: 1.1; margin-bottom: 18px; }
.course-card p { color: #2d3748; font-size: 17px; line-height: 1.55; margin: 0; }
.slick-dots li button:before { font-size: 15px; color: #c8cdd4; opacity: 1; }
.slick-dots li.slick-active button:before { color: var(--red); opacity: 1; }
.slick-prev, .slick-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff !important;
  box-shadow: 0 10px 25px rgba(6, 29, 53, .12);
  z-index: 4;
}
.slick-prev { left: -70px; }
.slick-next { right: -70px; }
.slick-prev:before, .slick-next:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--red);
  font-size: 24px;
  opacity: 1;
}
.slick-prev:before { content: "\f104"; }
.slick-next:before { content: "\f105"; }

.why-section { padding-top: 94px; }
.why-list { gap: 30px 46px; }
.why-list .mini-feature { padding-bottom: 22px; border-bottom: 1px solid rgba(6, 29, 53, .15); }
.why-photo-wrap { position: relative; }
.image-frame.tall { max-width: 720px; }
.image-frame.tall img { height: 660px; object-position: center top; }
.photo-badge {
  position: absolute;
  left: 38px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: #0b2746;
  color: #fff;
  border-radius: 9px;
  padding: 16px 28px;
  box-shadow: 0 14px 28px rgba(6, 29, 53, .3);
     font-size: 18px;
    font-weight: 600;
}
.photo-badge i {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red), #df2b34);
  font-size: 28px;
}
.quick-stats {
  grid-template-columns: repeat(4, 1fr);
  padding: 22px 26px;
  margin-top: 36px;
  border-radius: 26px;
}
.quick-stats div { text-align: center; display: block; padding: 0 20px; }
.quick-stats i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 24px;
}
.red-dot { background: var(--red); }
.blue-dot { background: var(--navy); }
.quick-stats strong { display: block; color: var(--navy); }
.quick-stats div:nth-child(odd) strong { color: var(--red); }
.quick-stats span { display: block; }

.career-cta { padding: 40px 0 78px; }
.career-box {
   
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  background: var(--navy);
}
.career-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.career-box::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,25,47,.95) 0%, rgba(4,25,47,.82) 42%, rgba(4,25,47,.18) 78%); }
.career-people {
  position: absolute;
  right: -42px;
  bottom: 0;
  width: 58%;
  max-height: 96%;
  object-fit: contain;
  object-position: right bottom;
  z-index: 1;
}
.career-content {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 860px;
  max-width: 58%;
  padding: 78px 0 0 64px;
}
.career-content .eyebrow, .career-content h2 { color: #fff; }
.career-content h2 { text-transform: uppercase; font-size: 42px; }
.career-content h2 span { color: #c91b28; }
.career-content p { font-size: 20px; line-height: 1.6;   color: #fff; }
.career-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
  background: rgba(8, 47, 80, .78);
  border-radius: 20px;
  padding: 28px 22px;
      margin-bottom: 170px;
}
.career-features i { display: block; color: #e12a35; font-size: 42px; margin-bottom: 14px; }
.career-features span {     color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45; }
.career-bottom {
  position: absolute;
  left: 64px;
  right: 64px;
  bottom: 28px;
  min-height: 116px;
  background: linear-gradient(135deg, #d8212d, #ad101b);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 90px 1fr 300px;
  align-items: center;
  gap: 28px;
  padding: 24px 48px;    z-index: 9;
}
.career-bottom > i { font-size: 52px; }
.career-bottom strong {     font-size: 24px;
    text-transform: uppercase;
    line-height: 1.2;
    color: #fff; }
.btn-light-red { background: #fff; color: var(--red); min-width: 280px; text-transform: uppercase; font-size: 22px; }

.program-section { padding-top: 58px; }
.section-title .navy { color: var(--navy); display: inline; text-transform: uppercase; }
.program-section .section-title h2 span:last-child { display: inline; text-transform: uppercase; }
.plane-rule { display: flex; align-items: center; gap: 24px; color: var(--red); margin: 24px 0 32px; }
.program-frame { max-width: 760px; }
.program-frame img {  }
.program-frame::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  right: -42px;
  top: -42px;
  background: var(--navy);
  border-radius: 34px;
  z-index: -1;
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 28px;
  margin-top: 66px;
}
.program-card {
  min-height: 218px;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 30px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.program-card i {
      width: 74px;
    height: 74px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 28% 22%, #e23a43, #b4000d);
    color: #fff;
    font-size: 28px;
}
.program-card span { width: 48px; height: 3px; background: var(--red); margin: 24px 0; }
.program-card h3 { color: var(--navy);
    font-size: 16px;
    line-height: 1.18;
    font-weight: 600;
    margin: 0;}

.stories-section {
  background: linear-gradient(180deg, #f6f9fe, #fff);
}
.story-card {
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  margin-bottom: 42px;
  margin-left:10px;margin-right:10px;
}
.story-img { position: relative;  }
.story-img > img:first-child { width: 100%; height: 100%; object-fit: cover; }
.company-logo {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
  padding: 8px;
}
.story-body { min-height: 290px; position: relative; padding: 40px 45px 30px; text-align: center; }
.quote {
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
}
.story-body p { color: #263244; line-height: 1.55; margin-bottom: 20px; }
.story-body span { display: block; width: 76px; height: 2px; background: var(--red); margin: 0 auto 18px; }
.story-body h3 { color: var(--red); font-size: 18px; font-weight: 900; margin: 0 0 8px; }
.story-body h4 { color: #111; font-size: 16px; font-weight: 500; margin-bottom: 12px; }
.stars { color: #ff9c00; font-size: 22px; letter-spacing: 2px; }
.graduates-strip {
  grid-template-columns: 1.65fr repeat(6, 1fr);
  align-items: center;
  gap: 0;
  padding: 22px 32px;
  border-radius: 24px;
}
.graduates-strip > * { border-right: 1px solid rgba(6, 29, 53, .14); padding: 0 26px; }
.graduates-strip > *:last-child { border-right: 0; }
.graduates-strip img {   margin: 0 auto; }
.grad-title { display: flex; align-items: center; gap: 18px; color: var(--navy); font-size: 19px; }
.grad-title i {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 24px;
}

.partners-section {
  padding: 40px 24px 52px;
  background: #fff;
}
.partners-panel {
  padding: 72px 90px 64px;
  border-radius: 34px;
  background:
    radial-gradient(ellipse at 22% 40%, rgba(6, 29, 53, .035) 0 32%, transparent 33%),
    radial-gradient(ellipse at 78% 40%, rgba(6, 29, 53, .035) 0 32%, transparent 33%),
    #fff;
  border: 1px solid rgba(6,29,53,.08);
  box-shadow: 0 16px 38px rgba(6, 29, 53, .12);
  position: relative;
  overflow: hidden;
}
.partners-panel::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 185px;
  height: 230px;
  opacity: .08;
  background-image: radial-gradient(var(--navy) 2px, transparent 2px);
  background-size: 10px 10px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0 58%, transparent 72%);
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0 58%, transparent 72%);
  pointer-events: none;
}
.partners-panel .section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 70px;
}
.partner-eyebrow {
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.partner-eyebrow span {
  width: 118px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}
.partner-eyebrow i {
  font-size: 26px;
  transform: rotate(-25deg);
}
.partner-eyebrow strong {
  font-size: 22px;
  color: var(--red);
}
.partner-card {
  height: 154px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(6, 29, 53, .09);
  border: 1px solid rgba(6, 29, 53, .03);
  margin:10px 10px;
}
.partner-card img {
  
}
.partner-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: fit-content;
  margin: 78px auto 0;
  padding: 18px 48px;
  border-radius: 44px;
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--navy);
  font-size: 22px;
  position: relative;
  z-index: 1;
}
.partner-tag i { color: var(--red); font-size: 30px; }
.partner-slider {
  position: relative;
  z-index: 2;
   
}
.partners-section .slick-prev {
  left: -62px;
}
.partners-section .slick-next {
  right: -62px;
}

.inner-hero {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--navy);
}
.inner-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 20, 38, .94) 0%, rgba(5, 29, 53, .78) 46%, rgba(178, 13, 27, .2) 100%);
}
.inner-hero-content {
  position: relative;
  z-index: 1;
  width: 850px;
  max-width: 68%;
  padding: 78px 0;
  color: #fff;
}
.inner-hero-content .eyebrow,
.inner-hero-content h1 {
  color: #fff;
}
.inner-hero-content h1 {
  font-size: 58px;
  line-height: 1.08;
  font-weight: 800;
  margin: 0 0 24px;
}
.inner-hero-content p {
  max-width: 760px;
  color: rgba(255, 255, 255, .92);
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
}
.breadcrumb-list {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 13px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.breadcrumb-list a {
  color: #fff;
}
.breadcrumb-list i,
.breadcrumb-list span {
  color: #ffccd0;
}
.inner-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}
.inner-hero-actions .btn-outline-red {
  margin-left: 0;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .78);
}
.about-detail-section {
  background: #fff;
}
.about-page-frame img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}
.about-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 72px;
}
.about-highlight-card,
.vision-card,
.objective-item {
  background: #fff;
  border: 1px solid rgba(6, 29, 53, .08);
  box-shadow: var(--shadow);
}
.about-highlight-card {
  border-radius: 12px;
  padding: 34px 30px;
}
.about-highlight-card i,
.vision-card > i,
.objective-item i {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fae8ea;
  color: var(--red);
  font-size: 30px;
  margin-bottom: 22px;
}
.about-highlight-card h3,
.vision-card h3 {
  color: var(--navy);
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 14px;
}
.about-highlight-card p,
.vision-card p,
.objective-item p {
  color: #2d3748;
  font-size: 17px;
  line-height: 1.62;
  margin: 0;
}
.vision-section {
  background: linear-gradient(180deg, #f8fbff, #fff);
}
.vision-card {
  height: 100%;
  border-radius: 18px;
  padding: 48px;
}
.vision-card.large {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .92)),
    url("../images/shape-icon.png") right 42px bottom 34px / 120px auto no-repeat;
}
.course-duration-card {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.course-duration-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(178, 13, 27, .55);
}
.course-duration-card > * {
  position: relative;
  z-index: 1;
}
.course-duration-card i {
  background: linear-gradient(135deg, var(--red), #e32d38);
  color: #fff;
}
.course-duration-card h3,
.course-duration-card p,
.course-duration-card li {
  color: #fff;
}
.course-duration-card ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}
.course-duration-card li {
  position: relative;
  padding-left: 28px;
  font-size: 17px;
}
.course-duration-card li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 1px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ff4a55;
}
.objectives-section {
  background: #fff;
}
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.objective-item {
  min-height: 210px;
  border-radius: 14px;
  padding: 30px;
}
.objective-item i {
  width: 58px;
  height: 58px;
  font-size: 24px;
  margin-bottom: 18px;
}
.objective-item.wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: auto;
}
.objective-item.wide i {
  flex: 0 0 58px;
  margin-bottom: 0;
}
.about-contact-strip {
  padding: 0 0 78px;
}
.about-contact-box {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 34px 42px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--red), #98111b);
  color: #fff;
  box-shadow: var(--shadow);
}
.about-contact-box span {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .86;
  margin-bottom: 8px;
}
.about-contact-box h2 {
  font-size: 30px;
  font-weight: 800;
  margin: 0;
}
.about-contact-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 14px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}
.course-detail-section {
  background: #fff;
}
.course-detail-frame img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
}
.course-modules-section {
  background: #f8fbff;
}
.course-module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.module-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.module-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform .35s ease;
}
.module-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 29, 53, .04), rgba(6, 29, 53, .88));
}
.module-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 28px;
  color: #fff;
}
.module-card i {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red), #e42a34);
  font-size: 24px;
  margin-bottom: 16px;
}
.module-card h3 {
  color: #fff;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}
.module-card:hover img {
  transform: scale(1.06);
}
.career-path-section {
  background: #fff;
}
.career-path-box {
  padding: 58px;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .94)),
    url("../images/placement-bg.jpg") center / cover no-repeat;
  border: 1px solid rgba(6, 29, 53, .08);
  box-shadow: var(--shadow);
}
.career-path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.career-path-grid div {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 92px;
  padding: 22px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(6, 29, 53, .08);
}
.career-path-grid i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  background: #fae8ea;
  color: var(--red);
  font-size: 22px;
}
.career-path-grid span {
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}
.aviation-module-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
}
.aviation-module-card {
  min-height: 230px;
  padding: 28px 16px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(6, 29, 53, .07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease;
}
.aviation-module-card i {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 28% 22%, #e23a43, #b4000d);
  color: #fff;
  font-size: 28px;
}
.aviation-module-card span {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 24px 0;
}
.aviation-module-card h3 {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.22;
  font-weight: 700;
  margin: 0;
}
.aviation-module-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(6, 29, 53, .18);
}
.aviation-feature-section {
  background: #fff;
}
.aviation-scope-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.aviation-scope-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 18px;
  border-radius: 12px;
  background: #f8fbff;
  border: 1px solid rgba(6, 29, 53, .08);
}
.aviation-scope-list i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  background: #fae8ea;
  color: var(--red);
  font-size: 20px;
}
.aviation-scope-list span {
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}
.travel-module-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 22px;
}
.travel-module-card {
  min-height: 230px;
  padding: 30px 16px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .98)),
    url("../images/shape-icon.png") right 14px bottom 14px / 54px auto no-repeat;
  border: 1px solid rgba(6, 29, 53, .08);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease;
}
.travel-module-card i {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), #0e3a65);
  color: #fff;
  font-size: 28px;
  margin-bottom: 24px;
}
.travel-module-card h3 {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.24;
  font-weight: 800;
  margin: 0;
}
.travel-module-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(6, 29, 53, .18);
}
.travel-career-box {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .97), rgba(255, 255, 255, .94)),
    url("../images/travel-management.jpg") center / cover no-repeat;
}
.opportunities-overview-section {
  background: #fff;
}
.opportunity-photo-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.opportunity-photo-wrap img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
}
.opportunity-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(6, 29, 53, .72));
}
.opportunity-photo-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .94);
  color: var(--navy);
}
.opportunity-photo-card i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 58px;
  background: var(--red);
  color: #fff;
  font-size: 24px;
}
.opportunity-photo-card strong {
  font-size: 20px;
  line-height: 1.25;
}
.growth-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 70px;
}
.growth-pill-grid div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 18px;
  padding: 28px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(6, 29, 53, .08);
}
.growth-pill-grid i {
  grid-row: span 2;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fae8ea;
  color: var(--red);
  font-size: 25px;
}
.growth-pill-grid strong {
  color: var(--navy);
  font-size: 21px;
  font-weight: 800;
}
.growth-pill-grid span {
  color: #2d3748;
  font-size: 15px;
}
.development-program-section {
  background: linear-gradient(180deg, #f8fbff, #fff);
}
.development-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.development-card {
  min-height: 300px;
  padding: 34px 28px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(6, 29, 53, .08);
  box-shadow: var(--shadow);
}
.development-card.wide {
  grid-column: span 2;
}
.development-card i {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red), #e42a34);
  color: #fff;
  font-size: 28px;
  margin-bottom: 24px;
}
.development-card h3 {
  color: var(--navy);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 15px;
}
.development-card p {
  color: #2d3748;
  font-size: 16px;
  line-height: 1.62;
  margin: 0;
}
.opportunity-cta {
  padding: 0 0 78px;
}
.opportunity-cta-box {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 34px 42px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), #0c345b);
  color: #fff;
  box-shadow: var(--shadow);
}
.opportunity-cta-box span {
  display: block;
  color: #ffccd0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.opportunity-cta-box h2 {
  font-size: 30px;
  font-weight: 800;
  margin: 0;
}
.opportunity-cta-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 14px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}
.placement-partner-section {
  background: linear-gradient(180deg, #f8fbff, #fff);
}
.placement-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
}
.placement-logo-card {
  min-height: 150px;
  padding: 24px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(6, 29, 53, .08);
  box-shadow: 0 12px 28px rgba(6, 29, 53, .09);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .22s ease, box-shadow .22s ease;
}
.placement-logo-card img {
  max-width: 100%;
  
  object-fit: contain;
}
.placement-logo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(6, 29, 53, .16);
}
.placement-support-strip {
  padding: 0 0 78px;
}
.placement-support-box {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 34px 42px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--red), #98111b);
  color: #fff;
  box-shadow: var(--shadow);
}
.placement-support-box span {
  display: block;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.placement-support-box h2 {
  font-size: 30px;
  font-weight: 800;
  margin: 0;
}
.placement-support-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 14px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}
.success-story-section {
  background: linear-gradient(180deg, #f8fbff, #fff);
}
.success-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.success-testimonial-card {
  position: relative;
  min-height: 100%;
  padding: 34px 30px 32px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(6, 29, 53, .08);
  box-shadow: var(--shadow);
  text-align: center;
}
.success-testimonial-card::before {
  content: "\f10d";
  position: absolute;
  left: 24px;
  top: 20px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: rgba(178, 13, 27, .1);
  font-size: 48px;
  line-height: 1;
}
.success-testimonial-card img {
  width: 112px;
  height: 142px;
  object-fit: contain;
  margin: 0 auto 24px;
}
.success-testimonial-card p {
  color: #172033;
  font-size: 16px;
  line-height: 1.78;
  margin: 0;
}
.contact-page-section {
  background: linear-gradient(180deg, #f8fbff, #fff);
}
.contact-info-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}
.contact-info-list a,
.contact-info-list div {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(6, 29, 53, .08);
  box-shadow: 0 12px 28px rgba(6, 29, 53, .08);
}
.contact-info-list i {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 54px;
  background: #fae8ea;
  color: var(--red);
  font-size: 22px;
}
.contact-info-list span {
  color: #263244;
  font-size: 16px;
  line-height: 1.55;
}
.contact-info-list strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}
.contact-form-card {
  height: 100%;
  padding: 42px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(6, 29, 53, .08);
  box-shadow: var(--shadow);
}
.contact-form-card h3 {
  color: var(--navy);
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 28px;
}
.contact-form-card label {
  display: block;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(6, 29, 53, .12);
  border-radius: 8px;
  outline: 0;
  padding: 13px 16px;
  color: var(--text);
  font-size: 16px;
  background: #f8fbff;
}
.contact-form-card textarea {
  resize: vertical;
  min-height: 150px;
}
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: rgba(178, 13, 27, .55);
  box-shadow: 0 0 0 4px rgba(178, 13, 27, .08);
  background: #fff;
}
.contact-form-card button {
  border: 0;
}
.contact-map-section {
  padding: 0 0 78px;
}
.contact-map-card {
  position: relative;
  display: block;
  min-height: 320px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: var(--navy);
}
.contact-map-card img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  opacity: .52;
}
.contact-map-card span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border-radius: 8px;
  background: #fff;
  color: var(--red);
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .18);
  text-align: center;
}
.hotel-management-section {
  background: #fff;
}
.hotel-career-section {
  background: linear-gradient(180deg, #f8fbff, #fff);
}
.hotel-career-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.hotel-career-grid div {
  min-height: 168px;
  padding: 26px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(6, 29, 53, .08);
  box-shadow: 0 12px 28px rgba(6, 29, 53, .09);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease;
}
.hotel-career-grid i {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red), #e42a34);
  color: #fff;
  font-size: 25px;
  margin-bottom: 18px;
}
.hotel-career-grid span {
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}
.hotel-career-grid div:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(6, 29, 53, .16);
}
.hotel-visual-section {
  padding-top: 0;
  background: #fff;
}
.hotel-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.hotel-visual-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.footer {
  background: radial-gradient(circle at 50% 0, #082947 0, #031b33 50%, #02162b 100%);
  color: #fff;
  padding: 90px 0 16px;
  position: relative;
  overflow: hidden;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 1.25fr 1.05fr 1.15fr;
  gap: 38px;
}
.footer-brand, .footer-col, .footer-contact { border-right: 1px solid rgba(255,255,255,.16); padding-right: 38px; }
.footer-contact { border-right: 0; }
.footer-brand img {     width: 280px;
    border-radius: 8px;
    margin-bottom: 34px; }
.footer-brand p { color: rgba(255,255,255,.92); font-size: 16px; line-height: 1.75; }
.footer-social { display: flex; gap: 20px; margin-top: 30px; }
.footer-social a {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}
.footer h3 {
  font-size: 23px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 34px;
  position: relative;
}
.footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 52px;
  height: 3px;
  background: #ed1f2b;
} 
.footer-col a {
  display: block;
  position: relative;
  color: rgba(255,255,255,.94);
  font-size: 18px;
  line-height: 1.35;
  padding-left: 24px;
  margin-bottom: 20px;
}
.footer-col a::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #ff2633;
}
.footer-contact p { display: flex; gap: 18px; align-items: flex-start; color: rgba(255,255,255,.94); font-size: 17px; line-height: 1.55; margin-bottom: 28px; }
.footer-contact p i {
  width: 44px;
  height: 44px;
  border: 2px solid #ff2633;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff2633;
  flex: 0 0 44px;
}
.newsletter {
  margin-top: 58px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 32px 70px;
  display: grid;
  grid-template-columns: 180px 92px 1fr 1.9fr;
  gap: 26px;
  align-items: center;
  position: relative;
}
.paper-plane { color: #fff; font-size: 62px; transform: rotate(-10deg); }
.mail-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e42a34, #bd111d);
  font-size: 42px;
}
.newsletter h3 { margin-bottom: 12px; }
.newsletter h3::after { display: none; }
.newsletter p { font-size: 19px; line-height: 1.45; margin: 0; color: rgba(255,255,255,.92); }
.newsletter form { display: grid; grid-template-columns: 1fr 220px; gap: 22px; }
.input-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 6px;
  padding: 0 22px;
}
.input-wrap input {
  width: 100%;
  height: 64px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 17px;
}
.input-wrap input::placeholder { color: rgba(255,255,255,.75); }
.newsletter button {
  border: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, #e42a34, #bd111d);
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 900;
}
.footer-bottom {
  display: grid;
  grid-template-columns: 360px 1fr auto;
  gap: 26px;
  align-items: end;
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-bottom img {  width: 360px; }
.footer-bottom p { margin: 0; text-align: center; color: rgba(255,255,255,.88); }
.footer-bottom a { color: rgba(255,255,255,.9); padding: 0 6px;border-right: 1px solid #1e364f; }
.footer-bottom a:last-child { border-right: 0; padding-right: 0; }

.btn-red,
.btn-outline-red,
.btn-light-red,
.header-call,
.newsletter button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.btn-red::before,
.btn-outline-red::before,
.btn-light-red::before,
.header-call::before,
.newsletter button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -120%;
  width: 70%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
  transform: skewX(-18deg);
  transition: left .48s ease;
  pointer-events: none;
}
.btn-red:hover,
.header-call:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(178, 13, 27, .32);
}
.btn-outline-red:hover {
  color: #fff;
  border-color: var(--red);
  background: linear-gradient(135deg, var(--red), #c71725);
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(178, 13, 27, .24);
}
.btn-light-red:hover {
  color: #fff;
  background: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .22);
}
.newsletter button:hover {
  background: linear-gradient(135deg, #bd111d, #e42a34);
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(226, 42, 52, .26);
}
.btn-red:hover::before,
.btn-outline-red:hover::before,
.btn-light-red:hover::before,
.header-call:hover::before,
.newsletter button:hover::before {
  left: 130%;
}
.btn-red i,
.btn-outline-red i,
.btn-light-red i,
.header-call i,
.newsletter button i {
  transition: transform .22s ease;
}
.btn-red:hover i,
.btn-outline-red:hover i,
.btn-light-red:hover i,
.newsletter button:hover i {
  transform: translateX(5px);
}
.top-social a,
.footer-social a,
.footer-bottom a,
.slick-prev,
.slick-next,
.partner-tag {
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.top-social a:hover {
  transform: translateY(-2px);
  color: #ffd9dc;
}
.footer-social a:hover {
  background: #fff;
  border-color: #fff;
  color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(255, 255, 255, .12);
}
.footer-bottom a:hover {
  color: #ff4a55;
}
.slick-prev:hover,
.slick-next:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 16px 32px rgba(6, 29, 53, .18);
}
.partner-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(8, 29, 53, .18);
}

@media (max-width: 1399px) {
  .page-pad { padding-left: 36px; padding-right: 36px; }
  .navbar-nav { gap: 18px; }
  .hero h1, .section-title h2 { font-size: 48px; }
  .hero-copy { max-width: 62%; }
  .hero-strip { left: 36px; right: 36px; padding: 22px; }
  .hero-strip div { padding: 0 20px; }
  .program-grid { grid-template-columns: repeat(4, 1fr); }
  .slick-prev { left: -28px; }
  .slick-next { right: -28px; }
}

@media (max-width: 1199px) {
  .topbar-left a:nth-of-type(3) { display: none; }
  .main-nav { min-height: auto; padding: 18px 0; }
  .navbar-brand img { width: 230px; }
  .header-call { margin-top: 18px; }
  .hero { min-height: auto; }
  .hero-inner { min-height: 760px; }
  .hero-copy { max-width: 70%; }
  .hero h1 { font-size: 46px; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .hero-strip div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 14px; }
  .hero-strip div:nth-last-child(-n+2) { border-bottom: 0; }
  .stats-card, .quick-stats, .graduates-strip { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .newsletter, .footer-bottom { grid-template-columns: 1fr; text-align: center; }
  .newsletter form { grid-template-columns: 1fr; }
  .paper-plane, .mail-icon { margin: 0 auto; }
  .footer-bottom img { margin: 0 auto; }
  .inner-hero-content { max-width: 82%; }
  .inner-hero-content h1 { font-size: 48px; }
  .about-highlight-grid, .objectives-grid { grid-template-columns: repeat(2, 1fr); }
  .course-module-grid, .career-path-grid { grid-template-columns: repeat(2, 1fr); }
  .aviation-module-grid { grid-template-columns: repeat(4, 1fr); }
  .travel-module-grid { grid-template-columns: repeat(4, 1fr); }
  .growth-pill-grid { grid-template-columns: 1fr; }
  .development-grid { grid-template-columns: repeat(2, 1fr); }
  .placement-logo-grid { grid-template-columns: repeat(4, 1fr); }
  .success-testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .hotel-career-grid { grid-template-columns: repeat(3, 1fr); }
  .about-contact-box { grid-template-columns: 1fr; }
  .opportunity-cta-box { grid-template-columns: 1fr; }
  .placement-support-box { grid-template-columns: 1fr; }
  .about-contact-box a { width: fit-content; }
  .opportunity-cta-box a { width: fit-content; }
  .placement-support-box a { width: fit-content; }
  .contact-form-card { padding: 34px 28px; }
}

@media (max-width: 991px) {
  .page-pad { padding-left: 22px; padding-right: 22px; }
  .topbar { display: none; }
  .hero::before { clip-path: none; background: rgba(255,255,255,.86); }
  .hero-inner { padding-top: 54px; min-height: auto; padding-bottom: 34px; }
  .hero-copy { max-width: 100%; width: 100%; }
  .hero-strip { position: static; margin-top: 36px; }
  .hero-features, .career-features { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .hero-features div, .career-features div { border-right: 0; }
  .section { padding: 58px 0; }
  .image-frame { margin: 24px auto 0; }
  .image-frame img, .image-frame.tall img, .program-frame img { height: auto; }
  .career-box { border-radius: 24px; min-height: auto; }
  .career-content { max-width: 100%; width: 100%; padding: 48px 24px 28px; }
  .career-people { position: static; width: 100%; margin: -18px auto 0; }
  .career-content h2 { font-size: 48px; }
  .career-bottom { position: static; margin-top: 28px; grid-template-columns: 64px 1fr; }
  .career-bottom .btn-light-red { grid-column: 1 / -1; }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-panel { padding: 48px 24px; }
  .inner-hero { min-height: auto; }
  .inner-hero-content { max-width: 100%; padding: 64px 0; }
  .about-page-frame img { min-height: 0; }
  .course-detail-frame img { min-height: 0; }
  .vision-card { padding: 34px 28px; }
  .career-path-box { padding: 38px 26px; }
  .aviation-module-grid { grid-template-columns: repeat(2, 1fr); }
  .travel-module-grid { grid-template-columns: repeat(2, 1fr); }
  .placement-logo-grid { grid-template-columns: repeat(3, 1fr); }
  .hotel-career-grid, .hotel-visual-grid { grid-template-columns: repeat(2, 1fr); }
  .opportunity-photo-wrap img { min-height: 0; }
  .contact-form-card { margin-top: 10px; }
}

@media (max-width: 767px) {
  .hero h1, .section-title h2, .career-content h2 { font-size: 36px; }
  .hero p, .lead-text, .section-title p, .career-content p { font-size: 17px; }
  .eyebrow { font-size: 15px; letter-spacing: 1px; }
  .hero-features, .feature-grid, .why-list, .stats-card, .quick-stats, .graduates-strip, .hero-strip { grid-template-columns: 1fr; }
  .hero-actions { display: grid; gap: 16px; }
  .btn-outline-red { margin-left: 0; }
  .stats-card div, .quick-stats div { border-right: 0; padding: 0; }
  .course-card img { height: 230px; }
  .course-body { padding: 45px 24px 30px; }
  .photo-badge { position: static; margin-top: 18px; }
  .career-bottom { padding: 22px; }
  .career-bottom strong { font-size: 22px; }
  .program-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand, .footer-col, .footer-contact { border-right: 0; padding-right: 0; }
  .newsletter { padding: 28px 18px; }
  .footer-bottom div { display: grid; gap: 12px; }
  .footer-bottom a { border-right: 0; }
  .inner-hero-content h1 { font-size: 34px; }
  .inner-hero-content p { font-size: 17px; }
  .inner-hero-actions { display: grid; }
  .about-highlight-grid, .objectives-grid { grid-template-columns: 1fr; }
  .course-module-grid, .career-path-grid { grid-template-columns: 1fr; }
  .aviation-module-grid, .aviation-scope-list { grid-template-columns: 1fr; }
  .travel-module-grid { grid-template-columns: 1fr; }
  .development-grid { grid-template-columns: 1fr; }
  .placement-logo-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .placement-logo-card { min-height: 120px; padding: 18px; }
  .success-testimonial-grid { grid-template-columns: 1fr; gap: 22px; }
  .hotel-career-grid, .hotel-visual-grid { grid-template-columns: 1fr; }
  .hotel-visual-grid img { height: 260px; }
  .success-testimonial-card { padding: 28px 22px; }
  .contact-form-card { padding: 28px 20px; }
  .contact-info-list a,
  .contact-info-list div { padding: 18px; }
  .contact-map-card span {
    width: calc(100% - 40px);
    justify-content: center;
    font-size: 17px;
  }
  .development-card.wide { grid-column: span 1; }
  .growth-pill-grid div { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 10px; }
  .opportunity-photo-card { position: static; border-radius: 0; }
  .breadcrumb-list { font-size: 15px; }
  .module-card, .module-card img { min-height: 280px; }
  .module-card div { padding: 24px; }
  .career-path-grid div { min-height: 82px; }
  .about-highlight-card, .objective-item { padding: 26px 22px; }
  .objective-item.wide { display: block; }
  .objective-item.wide i { margin-bottom: 18px; }
  .about-contact-box { padding: 28px 20px; }
  .opportunity-cta-box { padding: 28px 20px; }
  .placement-support-box { padding: 28px 20px; }
  .about-contact-box h2 { font-size: 25px; }
  .opportunity-cta-box h2 { font-size: 25px; }
  .placement-support-box h2 { font-size: 25px; }
  .about-contact-box a { width: 100%; white-space: normal; text-align: center; }
  .opportunity-cta-box a { width: 100%; white-space: normal; text-align: center; }
  .placement-support-box a { width: 100%; white-space: normal; text-align: center; }
}

a.navbar-brand img {
	    width: 70%;
}



.gallery-page-section { background: linear-gradient(180deg, #fff 0%, #f8fbff 100%); }
.gallery-intro-card { display: grid; grid-template-columns: 74px 1fr; gap: 20px; align-items: center; max-width: 1040px; margin: 0 auto 30px; padding: 24px 28px; background: #fff; border: 1px solid #dfe8f7; border-left: 6px solid var(--gold); border-radius: 8px; box-shadow: 0 12px 30px rgba(17, 51, 100, .09); }
.gallery-intro-card i { width: 64px; height: 64px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, #0649ce, #03286e); border-radius: 50%; font-size: 28px; }
.gallery-intro-card p { margin: 0; color: #263244; font-size: 16px; font-weight: 600; }
.gallery-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 0 0 34px; }
.gallery-filter button { border: 1px solid #d7e2f2; background: #fff; color: var(--navy); border-radius: 5px; padding: 11px 18px; font-weight: 900; transition: .2s ease; }
.gallery-filter button.active, .gallery-filter button:hover { color: #fff; background: linear-gradient(135deg, #073997, #001f63); border-color: #073997; box-shadow: 0 10px 24px rgba(4, 50, 144, .16); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 235px; gap: 20px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 8px; background: #bb111f; box-shadow: 0 14px 34px rgba(17, 51, 100, .13); transition: .25s ease; }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease, opacity .35s ease; }
.gallery-item:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 18, 48, .05) 0%, rgb(49 49 49 / 80%) 100%); }
.gallery-item:hover { transform: translateY(-5px); }
.gallery-item:hover img { transform: scale(1.07); opacity: .82; }
.gallery-item > div { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 2; color: #fff; }
.gallery-item span { display: inline-block; color: var(--gold); text-transform: uppercase; font-size: 12px; font-weight: 900; margin-bottom: 6px; }
.gallery-item h3 { margin: 0; font-size: 20px; font-weight: 900; line-height: 1.2; }
.gallery-zoom {    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--gold);
    font-size: 18px;
    opacity: 0;
    transform: translateY(-8px);
    transition: .25s ease;
    background: #b70f1d;}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: translateY(0); }
.gallery-item.is-hidden { display: none; }
.gallery-lightbox { position: fixed; inset: 0; z-index: 4000; display: none; align-items: center; justify-content: center; padding: 30px; background: rgba(0, 10, 30, .88); }
.gallery-lightbox.show { display: flex; }
.gallery-lightbox-content { width: min(1080px, 94vw); color: #fff; text-align: center; }
.gallery-lightbox-content img { width: 100%; max-height: 78vh; object-fit: contain; border-radius: 8px; box-shadow: 0 24px 60px rgba(0,0,0,.35); background: #071a3a; }
.gallery-lightbox-content h3 { margin: 18px 0 0; font-size: 24px; font-weight: 900; }
.gallery-lightbox-close { position: fixed; top: 24px; right: 28px; width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: #fff; background: rgba(255,255,255,.1); font-size: 24px; }
.gallery-lightbox-close:hover { background: var(--gold); color: var(--navy); }


@media (max-width: 767px) {
  .gallery-intro-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .gallery-item.large, .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
  .gallery-zoom { opacity: 1; transform: none; }

}