/*IALD ACADEMY*/

@import url(fontawesome.css);
@import url("https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900");

html {
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    margin-top: 80px;
}

@media screen and (max-width: 767px) {
  body {
    margin-top: 70px;
  }
}

/* Basic */

a {
	color: #3CF;
    text-decoration: none;
}

a:hover {
	color: #FC3;
    text-decoration: none;
}

ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

p {
    font-size: 15px;
    line-height: 22px;
}


.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-heading h2:before {
    width: 1px;
    height: 100px;
    background-color: rgba(22,34,57,0.99);
    position: absolute;
    top: -102px;
    content: '';
    left: 50%;
    transform: translate(-50%);
}

.section-heading h2 {
    margin-top: 100px;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 15px 20px;
    border: 2px solid rgba(250,250,250,0.1);
}


/* Buttons */

.main-button a {
    background-color: #f5a425;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    padding: 12px 20px;
    display: inline-block;
    outline: none;
}

/* ── HAMBURGER BUTTON ───────────────────────────────── */
/* Hidden on ALL screen sizes by default */
a.menu-link,
button.menu-link {
  display: none !important;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  text-decoration: none;
}

/* Only show on mobile (≤ 950px) */
@media screen and (max-width: 950px) {
  a.menu-link,
  button.menu-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 50px;
    margin-left: auto;
    z-index: 20;
    position: relative;
    flex-shrink: 0;
  }
}

/* ── HEADER ─────────────────────────────────────────── */

@media screen and (max-width: 850px) {
  .main-header .logo {
      padding-left: 15px !important;
  }
  .main-menu {
      padding-right: 15px !important;
  }
  .main-menu li {
      margin-left: 5px !important;
  }
}

@media screen and (max-width: 767px) {
  .main-header .logo {
      padding-left: 10px !important;
  }
  .main-menu {
      padding-right: 10px !important;
  }
}

.main-header {
    background-color: rgba(22,34,57,0.95);
    height: 80px;
    position: fixed;
    z-index: 100;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    overflow: visible;
}

@media screen and (max-width: 767px) {
  .main-header {
    height: 70px;
  }
}

.main-header .logo {
    display: flex;
    align-items: center;
    padding-left: 0;
    margin-left: 0;
    height: 80px;
}

@media screen and (max-width: 767px) {
  .main-header .logo {
    height: 70px;
    padding-left: 5px;
  }
}

.main-header .logo a {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    height: 80px;
}

@media screen and (max-width: 767px) {
  .main-header .logo a {
    height: 70px;
    font-size: 32px;
  }
}

.main-header .logo a em {
    font-style: normal;
    color: #f5a425;
}

/* ── HEADER CONTAINER ───────────────────────────────── */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 80%;        
  max-width: 1200px; 
  margin: 0 auto;    

  position: relative;
}

/* ── LOGO IMAGE ─────────────────────────────────────── */
.logo img {
  height: 55px;
  width: auto;
  max-width: 180px;
  display: block;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .logo img {
    height: 45px;
  }
}

/* ── DESKTOP NAV ────────────────────────────────────── */
.main-menu {
    display: flex;
    align-items: center;
    padding-right: 80px;
    margin-left: auto;
}

.main-menu li {
    display: inline-flex;
    align-items: center;
    margin-left: 25px;   /* was 15px */
    position: relative;
    height: 0px;
}

@media screen and (max-width: 767px) {
  .main-menu li {
    height: 70px;
  }
}

.main-menu li:first-child {
    margin-left: 0px;
}

.main-menu li a {
    padding: 15px 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    color: #fff;
    border: 2px solid transparent;
    transition: all 0.5s;
}

.main-menu li.has-submenu > a:after {
    content: '\f107';
    font-family: "FontAwesome";
    margin-left: 5px;
}

.main-menu li.has-submenu .sub-menu li a:after {
    display: none;
}

/* Desktop dropdown */
.main-menu li .sub-menu {
    position: absolute;
    width: 180px;
    background-color: rgba(24, 35, 58, 0.98);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    top: 100%;
    left: 0;
    margin-top: 5px;
    z-index: 1000;
    border-radius: 4px;
    padding: 8px 0;
}

.main-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.main-menu li .sub-menu li {
    display: block;
    line-height: 1.5;
    margin-left: 0;
    margin-bottom: 0;
    padding: 0;
    height: auto;        
}

.main-menu li .sub-menu li a {
    display: block;
    padding: 12px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none;
}

.main-menu li .sub-menu li a:hover {
    color: #f5a425;
    background-color: rgba(245, 164, 37, 0.1);
    padding-left: 20px;
}

.main-nav li:hover a,
.main-nav li.active a {
    border: 2px solid #f5a425;
}

/*CTA BUTTON*/
.main-menu li.cta a {
  background-color: #FFC300;
  color: #0b2341;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 600;
}

.main-menu li.cta a:hover {
  background-color: #ffffff;
  color: #0b2341;
}


/*MOBILE NAV  (≤ 950px) */
@media screen and (max-width: 950px) {

  nav.main-nav[role="navigation"] {
    position: fixed;
    top: 70px;          
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99;
    background-color: rgba(22, 34, 57, 0.98);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    box-sizing: border-box;
  }

  nav.main-nav[role="navigation"].active {
    max-height: 80vh;    
    overflow-y: auto;
  }

  /* Stack menu items vertically */
  .main-menu {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .main-menu li {
    display: block;
    height: auto;
    margin-left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(250, 250, 250, 0.12);
    position: relative; 
  }

  .main-menu li a {
    display: block;
    padding: 15px 20px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    border: none !important;   
    width: 100%;
    box-sizing: border-box;
  }

  .main-menu li a:hover,
  .main-menu li.active > a {
    color: #f5a425;
    background-color: rgba(245, 164, 37, 0.08);
  }

  .main-menu li.has-submenu > a:after {
    float: right;
    transition: transform 0.3s;
  }

  .main-menu li.has-submenu.open > a:after {
    transform: rotate(180deg);
  }

  .main-menu li .sub-menu {
    position: static;         
    width: 100%;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    background-color: rgba(14, 22, 40, 0.98);
    display: none;
    transition: none;
  }

  .main-menu li.has-submenu.open .sub-menu {
    display: block;
  }

  .main-menu li .sub-menu li {
    border-bottom: 1px solid rgba(250, 250, 250, 0.07);
    height: auto;
  }

  .main-menu li .sub-menu li a {
    padding: 13px 20px 13px 35px;   
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
  }

  .main-menu li .sub-menu li a:hover {
    color: #f5a425;
    padding-left: 40px;
    background-color: rgba(245, 164, 37, 0.08);
  }

  /* CTA in mobile */
  .main-menu li.cta a {
    background-color: #FFC300;
    color: #0b2341;
    border-radius: 0;
    text-align: center;
    margin: 10px 20px;
    width: calc(100% - 40px);
    border-radius: 25px;
  }

  /* Hide desktop hover-border rule on mobile */
  .main-nav li:hover a,
  .main-nav li.active a {
    border: none !important;
  }
}

/* Slider */

.main-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-bottom: 0;
  margin-top: 0;
}

#bg-video {
    min-width: 100%;
    min-height: 100vh;
    max-width: 100%;
    max-height: 100vh;
    object-fit: cover;
    z-index: -1;
}

#bg-video::-webkit-media-controls {
    display: none !important;
}

.video-overlay {
    position: absolute;
    background-color: rgba(22,34,57,0.55);
    top: 0;
    left: 0;
    bottom: 75px;
    width: 100%;
}

.main-banner .caption {
  text-align: center;
  position: absolute;
  width: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.main-banner .caption h6 {
  margin-top: 0px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  color: #f5a425;
  letter-spacing: 1px;
}

.main-banner .caption h2 {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 64px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2 em {
  font-style: normal;
  color: #f5a425;
  font-weight: 900;
}

@media screen and (max-width: 1180px) {

  .main-banner .caption h6 {
    font-weight: 500;
  }

  .main-banner .caption h2 {
    font-size: 58px;
  }

}
@media screen and (max-width: 767px) {

  .main-banner .caption h6 {
    font-weight: 500;
  }

  .main-banner .caption h2 {
    font-size: 36px;
  }

}

/* Features */

section.features {
  padding: 0;
  margin: 0;
}

section.features .col-4 {
    padding-left: 0px;
    padding-right: 0px;
}

.features-post {
  position: relative;
  margin-bottom: 0px;
}

.features-thumb {
  overflow: hidden;
  position: relative;
}

.features-thumb img {
  width: 100%;
}

.features-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0c1228;
  color: #fff;
  padding: 50px;
}

.features-content:hover {
    background-color: #f5a425;
    box-shadow: 0px 0px 30px rgba(0,0,0,0.5);
}

.features-content h4 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 0px;
}

.features-content h4 i {
    margin-right: 15px;
    font-size: 24px;
}

.features-content p {
    margin-bottom: 0px;
}

.features-content a {
  margin-top: 15px;
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.5px;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 2px solid #fff;
}

.features-content p.hidden-sm {
  display: none;
}

.second-features,
.third-features {
    border-left: 1px solid rgba(250,250,250,0.1);
}

.content-hide {
  margin-top: 15px;
  display: none;
}

.content-hide p {
  color: #fff;
}

@media screen and (max-width: 767px) {

  .features-content {
    padding: 15px;
  }
  .features-content h4 i {
    display: block;
    margin-bottom: 10px;
  }
  .features-content h4 {
    font-size: 14px;
  }
  .features-content p {
    display: none;
  }
  .features-content p.hidden-sm {
    display: block;
  }
  .features-content a {
    letter-spacing: 0px;
    font-size: 13px;
    font-weight: 600;
  }

}

.video-overlay .caption h2 {
  font-size: 48px;
  line-height: 1.3;
  color: #fff;
}

.video-overlay .caption h6 {
  font-size: 18px;
  color: #f5b301;
  margin-bottom: 20px;
}


/* Why Choosing Us */

section.why-us {
    background-image: url(../images/choosing-bg.jpg);
    background-color: #172238;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 100px;
}

#tabs {
  text-align: center;
}
#tabs ul {
  margin: 0;
  padding: 0;
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 0;
  -moz-column-gap: 0;
  column-gap: 0;
}
#tabs ul::after {
  clear: both;
  content: "";
  display: table;
}
#tabs ul li {
  display: block;
  font-weight: 400;
  font-size: 1.2em;
  letter-spacing: 1px;
  text-align: center;
}
#tabs ul li a {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  outline: 0;
  padding-bottom: 30px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
}
#tabs ul li a:after {
    transition: all 0.3s;
    width: 10px;
    height: 10px;
    background-color: #fff;
    content: '';
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 0;
}
#tabs ul li a:before {
    transition: all 0.3s;
    width: 25px;
    height: 25px;
    border: 2px solid transparent;
    background-color: transparent;
    content: '';
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: -5px;
}
#tabs ul li span {
  display: block;
  margin-bottom: 0.75em;
}
#tabs ul .ui-tabs-active {
}
#tabs ul .ui-tabs-active a {
  color: #f5a425;
}
#tabs ul .ui-tabs-active a:after {
  background-color: #f5a425;
  width: 15px;
  height: 15px;
}
#tabs ul .ui-tabs-active a:before {
  border-color: #f5a425;
}
#tabs h4 {
    margin-top: 60px;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 30px;
}

#tabs p {
    color: #fff;
    font-size: 15px;
    line-height: 28px;
}

.tabs-content {
    margin-top: 60px;
    text-align: left;
}

@media screen and (max-width: 767px) {
  
  .tabs-content {
      text-align: center;
  }

}

.tabs-content img {
    width: 100%;
    overflow: hidden;
    padding-right: 45px;
}

@media screen and (max-width: 767px) {

  .tabs-content img {
      padding-right: 0px;
  }

}


/* Courses */

section.courses {
    background-image: url(../images/choosing-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #172238;
    padding-bottom: 100px;
    padding: 0px 30px 100px 30px;
}

section.courses .item img {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

section.courses .item .down-content {
    padding: 30px;
    background-color: #fff;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

section.courses .item .down-content h4 {
    font-size: 16px;
    text-transform: uppercase;
    color: #1e1e1e;
    letter-spacing: 0.5px;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 20px;
}

section.courses .item .down-content p {
    margin-bottom: 25px;
}

section.courses .item .down-content img {
    width: 40px;
    border: 2px solid #f5a425;
    border-radius: 50%;
    text-align: left;
    display: inline-block;
}

section.courses .item .down-content .text-button-pay {
    float: right;
    display: inline-block;
    margin-top: -30px;
}

section.courses .item .down-content .text-button-pay a {
    color: #f5a425;
    font-size: 13px;
}

section.courses .item .down-content .text-button-free {
    float: right;
    display: inline-block;
    margin-top: -30px;
}

section.courses .item .down-content .text-button-free a {
    color: #7a7a7a;
    font-size: 13px;
}

section.courses .owl-carousel .owl-nav {
    display: none;
}

section.courses .owl-carousel .owl-dots {
    text-align: center;
}

section.courses .owl-carousel button.owl-dot {
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 50px 10px 0px 10px;
    outline: none;
}
section.courses .owl-carousel button.active {
    background-color: #f5a425;
}

/* Video */

section.video {
    background-image: url(../images/video-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #172238;
    padding: 120px 0px;
}

section.video .left-content {
  color: #fff;
}

section.video .left-content span {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

section.video .left-content h4 {
    margin-top: 20px;
    font-size: 30px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 40px;
    margin-bottom: 20px;
}
section.video .left-content h4 em {
    font-style: normal;
    color: #f5a425;
}

section.video .left-content .main-button {
  margin-top: 30px;
}

.video-item {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0px auto 0;
}

@media screen and (max-width: 767px) {

  section.video .left-content {
    margin-bottom: 45px;
  }

  section.video .first-item .first-content h4,
  section.video .second-item .second-content h4 {
    text-align: center;
  }

}

.video-item figure {
  position: relative;
  width: 100%;
  font-size: 0;
}
.video-item figure img {
  width: 100%;
}
.video-item figure a:before {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 15px;
  width: 60px;
  height: 60px;
  margin-top: -32.5px;
  margin-left: -32.5px;
  border-radius: 50%;
  background-color: #f5a425;
  z-index: 10;
}
.video-item figure a:after {
  content: '';
  position: absolute;
  bottom: 27.5px;
  right: 20px;
  margin-top: -12.5px;
  margin-left: -7px;
  border: solid 13px transparent;
  border-left: solid 20px;
  border-left-color: #fff;
  z-index: 10;
}
.video-item figure a:hover:before {
  background-color: #f5a425;
}

.video-item .video-caption {
    position: absolute;
    z-index: 10;
    background-color: rgba(250,250,250,0.75);
    height: 80px;
    width: 100%;
    padding: 27px 30px;
    bottom: 0;
}

.video-item .video-caption h4 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}


/* Footer */

footer {
    background-color: #152036;
    text-align: center;
}

footer p {
    margin-bottom: 0px;
    padding: 25px 0px;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

footer p a,
footer p a:hover {
    color: #f5a425;
}

@media screen and (max-width: 992px) {
  .features { background-color: #0c1228; }
  .features-content { position: relative; }
  .features-post { border-left: 0 }
}

@media screen and (max-width: 950px) {
  .main-menu { padding-right: 0!important; }
  .main-header .logo {
    line-height: 73px;
  }
  .main-menu li {
    display: block;
    line-height: 1;
    margin-left: 0 !important;
  }

  .main-menu li .sub-menu {
    opacity: 1;
    visibility: visible;
    position: static;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    background-color: rgba(24, 35, 58, 0.5);
    padding: 8px 0;
    margin-top: 0 !important;
    box-shadow: none;
    border-left: 3px solid #f5a425;
  }
  .main-menu li .sub-menu li:last-child {
    border-bottom: none;
  }
}

@media screen and (max-width: 950px) and (max-height: 400px) {
  nav[role="navigation"].active {
    max-height: calc(80px + 100vh);
    overflow-y: auto;
  }
}

@media screen and (max-width: 767px) {
  footer p {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.25px;
  }
}

/* WHO WE ARE SECTION */
.about-us-section {
  padding: 40px 0;
  background: hsl(0, 10%, 94%);
}

.about-us-section .about-us-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.about-us-section .about-us-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0b2c4d;
  margin-bottom: 15px;
}

.about-us-section .about-us-text h4 {
  font-size: 20px;
  font-weight: 500;
  color: #f5b301;
  margin-bottom: 25px;
}

.about-us-section .about-us-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-us-section .row {
    flex-direction: column-reverse;
  }

  .about-us-section .about-us-image {
    margin-bottom: 70px;
  }
}
.about-us-text .btn-primary {
  display: inline-block;
  background: #f5b301; 
  color: #0b2c4d;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.about-us-text .btn-primary:hover {
  background: #0b2c4d;
  color: #f5b301;
}
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 1.2s;
  transition-timing-function: ease-out;
}
/* IMPACT SECTION */
.impact-section {
  padding: 30px 0;
  background: #ffffff;
}

.impact-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0b2c4d;
  margin-bottom: 15px;
}

.impact-intro {
  font-size: 17px;
  color: #555;
  max-width: 750px;
  margin: 0 auto 15px auto;
  line-height: 1.7;
}

/* STATS GRID */
.impact-stats {
  margin-top: 30px;
}

.impact-box {
  text-align: center;
  padding: 20px 20px;
  border-radius: 8px;
  background: #0b2c4d;
  height: 100%;
  transition: all 0.3s ease;
}

.impact-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* NUMBERS */
.impact-box h3 {
  font-size: 42px;
  font-weight: 800;
  color: #f5b301;
  margin-bottom: 10px;
}

/* TITLES */
.impact-box h5 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

/* DESCRIPTIONS */
.impact-box p {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .impact-section {
    padding: 70px 20px;
  }

  .impact-box {
    margin-bottom: 30px;
  }
}

/* SECTORS SECTION */
.sectors-section {
  padding: 20px 0;
  background: hsl(0, 10%, 94%);
}

.sectors-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0b2c4d;
  margin-bottom: 5px;
}

.sectors-intro {
  font-size: 17px;
  color: #555;
  max-width: 800px;
  margin: 0 auto 10px auto;
  line-height: 1.7;
}

/* GRID */
.sectors-grid {
  margin-top: 20px;
}

.sector-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.sector-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

/* ICONS */
.sector-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sector-icon img {
  max-width: 100%;
  max-height: 100%;
}

/* TEXT */
.sector-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #0b2c4d;
  margin-bottom: 15px;
}

.sector-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* FOOTER TEXT */
.sectors-footer-text {
  margin-top: 60px;
  font-size: 16px;
  color: #666;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .sector-card {
    margin-bottom: 5px;
  }
}
/* PRESIDENT MESSAGE SECTION */
.president-section {
  padding: 30px 0;
  background: #ffffff;
}

.president-image {
  text-align: center;
}

.president-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* CONTENT */
.president-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0b2c4d;
  margin-bottom: 30px;
}

/* QUOTE */
.president-content blockquote {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  border-left: 5px solid #f5b301;
  padding-left: 25px;
  margin-bottom: 35px;
  font-style: italic;
}

/* SIGNATURE */
.president-signature h4 {
  font-size: 20px;
  font-weight: 600;
  color: #0b2c4d;
  margin-bottom: 5px;
}

.president-signature span {
  font-size: 15px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .president-section {
    padding: 70px 20px;
  }

  .president-image {
    margin-bottom: 30px;
  }

  .president-content h2 {
    font-size: 30px;
  }
}
/* STUDENT LIFE SECTION */
.student-life-section {
  padding: 30px 0;
  background: hsl(0, 10%, 94%);
}

.student-life-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0b2c4d;
  margin-bottom: 15px;
}

.student-life-intro {
  font-size: 17px;
  color: #555;
  max-width: 850px;
  margin: 0 auto 60px auto;
  line-height: 1.7;
}

/* CARDS */
.student-life-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.student-life-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

/* IMAGE ON TOP */
.student-life-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* CONTENT */
.card-content {
  padding: 30px;
}

.card-content h4 {
  font-size: 22px;
  font-weight: 600;
  color: #0b2c4d;
  margin-bottom: 15px;
}

.card-content p {
  font-size: 15.5px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* BUTTON */
.btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: transparent;
  border: 2px solid #f5b301;
  color: #0b2c4d;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #f5b301;
  color: #0b2c4d;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .student-life-card {
    margin-bottom: 30px;
  }

  .student-life-card img {
    height: 220px;
  }
}
.news-section {
  padding: 30px 0;
  background: #ffffff;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0b2c4d;
}

.section-header p {
  font-size: 16px;
  color: #555;
  margin: 15px 0 60px;
}

/* GRID */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
}

/* CARD */
.news-card {
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

/* IMAGE */
.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.news-content {
  padding: 15px;
}

.news-date {
  font-size: 13px;
  color: #888;
  display: block;
  margin-bottom: 8px;
}

.news-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #0b2c4d;
  margin-bottom: 12px;
}

.news-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* LINK */
.read-more {
  font-weight: 600;
  color: #f5b301;
  text-decoration: none;
}

.read-more:hover {
  color: #0b2c4d;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  height: auto;
}
html {
  scroll-behavior: smooth;
}

body {
  scroll-snap-type: y mandatory;
}

.section {
  scroll-snap-align: start;
  height: auto;
  min-height: auto;
}
/* ALUMNI TESTIMONIALS */
.alumni-section {
  padding: 30px 0;
  background: hsl(0, 10%, 94%);
}

.alumni-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0b2c4d;
  margin-bottom: 10px;
}

.alumni-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 60px;
}

/* CARDS */
.alumni-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.alumni-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

/* IMAGE */
.alumni-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-top: 25px;
  margin-bottom: 15px;
}

/* CONTENT */
.alumni-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #0b2c4d;
  margin-bottom: 5px;
}

.alumni-content span {
  display: block;
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.alumni-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  padding: 0 20px;
}
/* ALUMNI RATINGS */
.alumni-rating {
  margin-top: 15px;
}

.alumni-rating i.fa-star {
  color: #f5b301; /* gold stars */
  margin-right: 3px;
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .alumni-card {
    margin-bottom: 30px;
  }
}
.graduates-section {
  padding: 50px 0;
  background: #ffffff;
}

.graduates-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0b2c4d;
  margin-bottom: 10px;
}

.graduates-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

/* LOGOS */
.partner-logo {
  max-width: 20%;
  height: auto;
  display: block;
  margin: 0 auto 5px;
  transition: transform 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.1);
}

/* LOGO LAYOUT */
.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.partner-logo {
  max-height: 80px;
  width: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .partner-logo {
    max-width: 100%;
  }
}
/* --- Stretch header and nav --- */
.main-header .container {
    max-width: 85% !important;
    width: 100% !important;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .main-header .container {
    padding: 0 10px;
  }
}

.main-header .logo img {
    max-height: 70px;
}

/* ===== Slight Stretch for All Sections ===== */
.container {
  max-width: 1200px !important;
  width: 95% !important;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .container {
    max-width: 95% !important;
    width: 95% !important;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 100% !important;
    width: 98% !important;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Ensure header container also stretches slightly */
.header-container {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Section headers centered and uniform padding */
section {
  padding: 70px 0;
}

/* About Us Images & Features Cards */
.about-us-image,
.features-post,
.student-life-card,
.sector-card,
.impact-box,
.alumni-card,
.news-card {
  width: 100%;
  max-width: 100%;
}

/* Slight spacing increase for grids */
.row {
  margin-left: -15px;
  margin-right: -15px;
}

.row > [class*='col-'] {
  padding-left: 15px;
  padding-right: 15px;
}

/* Logos Row */
.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

/* Responsive tweaks */
@media (max-width: 1200px) {
  .container, .header-container {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 95%;
  }

  .header-container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 10px !important;
  }

  .logo img {
    height: 45px;
    max-width: 140px;
  }

  .main-banner .caption h2 {
    font-size: 1.8rem;
  }
}



/* FOOTER */
.site-footer {
  background: #0b2c4d;
  color: #ffffff;
  padding: 100px 0 50px;
  font-size: 14px;
}

.site-footer h5,
.site-footer h6 {
  color: #f5b301;
  margin-bottom: 15px;
  font-weight: 600;
}

.site-footer p {
  color: #dcdcdc;
  line-height: 1.7;
}

.footer-logo {
  max-width: 160px;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #dcdcdc;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #f5b301;
}

.footer-contact a {
  color: #f5b301;
  text-decoration: none;
}

.accreditation-logos span {
  display: inline-block;
  background: #ffffff;
  color: #0b2c4d;
  padding: 6px 12px;
  margin-right: 15px;
  margin-top: 10px;
  border-radius: 4px;
  font-weight: 600;
}
.counter {
  transition: all 0.3s ease;
}


/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 10px;
  padding-top: 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
  color: #f5b301;
}

.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.footer-legal li {
  margin-left: 10px;
}

.footer-legal a {
  color: #dcdcdc;
  text-decoration: none;
  font-size: 12px;
}

.footer-legal a:hover {
  color: #f5b301;
}
.site-footer {
  background: #0b2c4d;
  color: #ffffff;
  padding: 20px 10px; 
  font-size: 12px;
}
.site-footer .row > div {
  margin-bottom: 10px; 
}
.site-footer p {
  color: #dcdcdc;
  line-height: 1.8;
  margin-bottom: 5px;
}
.site-footer h5,
.site-footer h6 {
  color: #f5b301;
  margin-bottom: 3px; 
  font-weight: 600;
}
.site-footer .row > div {
  margin-bottom: 0px; 
}
.banner-img {
  width: 100%;
  height: 100vh; 
  object-fit: cover; 
  display: block;
}

/* Footer general layout */
.site-footer {
  background-color: #0b2c4d; 
  color: #fff;
  padding: 50px 0 20px 0;
  font-family: 'Montserrat', sans-serif;
}

.site-footer .footer-about,
.site-footer .footer-links,
.site-footer .footer-contact {
  margin-bottom: 10px;
}

/* Footer logo */
.site-footer .footer-about .footer-logo {
  max-width: 180px;
  margin-bottom: 15px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 13px;
}

.footer-list li i {
  color: #FC3; 
  margin-right: 8px;
}

.footer-list li a {
  color: #fff; 
  text-decoration: none;
  transition: color 0.3s;
}

.footer-list li a:hover {
  color: #FC3;
}
.footer-list {
  list-style: flex;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 8px;
  display: center left;
  align-items: center;
  font-size: 15px;
}

.footer-list li i {
  color: #FC3; 
  margin-right: 8px;
}

.footer-list li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-list li a:hover {
  color: #FC3;
}

.main-footer {
  width: 100%;
  background: #0b2341;
  color: #fff;
}

.footer-wrapper{
  width: 78%;
  margin:auto;
  padding: 30px 40px;
}


/* ABOUT HERO */
.about-hero {
  position: relative;
  height: 90vh;         
  min-height: 600px;   
  overflow: hidden;
}

/* Background Image */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;     
  z-index: 1;
}

/* Dark Overlay */
.about-hero-overlay {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.55);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

/* ABOUT SECTIONS */
.about-section {
  padding: 30px 0;
}

.about-section h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

.about-section h4 {
  color: #FC3;
  margin-bottom: 20px;
}

.light-bg {
  background: #f8f9fa;
}

/* BLOCKQUOTE */
blockquote {
  font-style: italic;
  border-left: 4px solid #FC3;
  padding-left: 20px;
  margin: 20px 0;
}

/* CTA */
.about-cta {
  background: #0b1c2d;
  color: #fff;
  padding: 70px 0;
}

.about-cta .btn-primary {
  background: #FC3;
  color: #000;
  padding: 12px 30px;
  margin: 10px;
}

.about-cta .btn-outline {
  border: 2px solid #FC3;
  color: #FC3;
  padding: 12px 30px;
  margin: 10px;
}
/* ===============================
   PAGE HERO SECTION
================================ */
.page-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark overlay */
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Text Content */
.page-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FC3;
  padding: 0 20px;
}

.page-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
}

.page-hero-content p {
  margin-top: 10px;
  font-size: 1.15rem;
  max-width: 700px;
}

/* Responsive */
@media (max-width: 768px) {
  .page-hero {
    height: 60vh;
  }

  .page-hero-content h1 {
    font-size: 2.3rem;
  }
}
/* Make hero clickable without changing layout */
.page-hero-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Optional hover feedback */
.page-hero-link:hover .page-hero::after {
  background: rgba(0, 0, 0, 0.55);
}
.page-hero {
  cursor: pointer;
}
.hero-back {
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.85;
}
/* HERO SECTION */
.about-hero {
  position: relative;
  width: 100%;
  height: 70vh;                
  min-height: 420px;
  background-image: url("../images/about-hero.jpg"); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* DARK OVERLAY */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
}

/* CONTENT */
.page-hero-content {
  width: 80%;
  margin: auto;
  color: #fff;
}

.page-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.page-hero-content p {
  max-width: 600px;
  font-size: 1.1rem;
  opacity: 0.9;
}
/* HERO SECTION */
.about-hero {
  position: relative;
  width: 100%;
  height: 70vh;                 
  min-height: 420px;
  background-image: url("../images/about-hero.jpg"); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* DARK OVERLAY */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
}

/* CONTENT */
.page-hero-content {
  width: 80%;
  margin: auto;
  color: #fff;
}

.page-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.page-hero-content p {
  max-width: 600px;
  font-size: 1.1rem;
  opacity: 0.9;
}
/* HERO SECTION */
.about-hero {
  position: relative;
  width: 100%;
  height: 70vh;                 /* Adjust if needed */
  min-height: 420px;
  background-image: url("../images/about-hero.jpg"); /* your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* DARK OVERLAY */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
}

/* CONTENT */
.page-hero-content {
  width: 80%;
  margin: auto;
  color: #fff;
}

.page-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.page-hero-content p {
  max-width: 600px;
  font-size: 1.1rem;
  opacity: 0.9;
}
/* HERO SECTION */
.about-hero {
  position: relative;
  width: 100%;
  height: 70vh;                 
  min-height: 420px;
  background-image: url("../images/about-hero.jpg"); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* DARK OVERLAY */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
}

/* CONTENT */
.page-hero-content {
  width: 80%;
  margin: auto;
  color: #fff;
}

.page-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.page-hero-content p {
  max-width: 600px;
  font-size: 1.1rem;
  opacity: 0.9;
}
.about-hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; 
}
.about-hero {
  position: relative;
  height: 70vh;
  min-height: 620px;
  overflow: hidden;
}

/* IMAGE FULL COVER */
.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; 
}

/* OVERLAY */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
}

/* CONTENT */
.page-hero-content {
  width: 80%;
  margin: auto;
  color: #FC3;
}

/* BREADCRUMBS */
.breadcrumbs {
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: #FC3;
  text-decoration: none;
}

.breadcrumbs span {
  margin: 0 6px;
  color: #ddd;
}
.mission-vision-section {
  padding: 50px 0;
  background: hsl(0, 10%, 94%);
}

/* Container width control */
.mission-vision-section .container {
  max-width: 80%;
}

/* Box styling */
.mv-box {
  background: #0b2341;
  padding: 25px;
  border-radius: 8px;
  height: 90%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Headings */
.mv-box h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #FC3;
}

/* Lead line */
.mv-lead {
  font-weight: 600;
  color: #FC3;
  margin-bottom: 15px;
}

/* Text */
.mv-box p {
  color: #f9fafc;
  line-height: 1.8;
  margin-bottom: 15px;
}
.about-iald-section {
  padding: 30px 0;
  background: #ffffff;
}

/* Controlled width */
.about-iald-section .container {
  max-width: 80%;
}

/* Section header */
.about-iald-section h2 {
  font-size: 2.4rem;
  color: #0a1f44;
  margin-bottom: 15px;
}

.section-intro {
  font-size: 1.05rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 50px;
}

/* Paragraphs */
.about-iald-section p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 18px;
}

/* Strong highlights */
.about-iald-section strong {
  color: #0a1f44;
  font-weight: 600;
}
.why-iald-section {
  padding: 30px 0;
  background-color: hsl(0, 10%, 94%);
}

.why-iald-section h2,
.why-iald-section h3 {
  color: #0a1f44;
  margin-bottom: 15px;
}

.why-iald-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

.why-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1rem;
}

.why-list i {
  color: #1e88e5;
}

/* Core Values Section */
.core-values-section {
  padding: 30px 0;
  background: #f9fafc;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.3rem;
  color: #0a1f44;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.05rem;
  color: #666;
}

/* Grid Layout */
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Cards */
.core-value-card {
  background: #0a1f44;
  padding: 40px 30px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.core-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

/* Icons */
.core-value-card i {
  font-size: 36px;
  color: #FC3;
  margin-bottom: 20px;
}

/* Headings */
.core-value-card h4 {
  font-size: 1.3rem;
  color: #FC3;
  margin-bottom: 15px;
}

/* Text */
.core-value-card p {
  font-size: 0.95rem;
  color: #f9fafc;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .core-values-grid {
    grid-template-columns: 1fr;
  }
}
/* Leadership & Governance Section */
.leadership-section {
  padding: 30px 0;
  background: hsl(0, 10%, 94%);
}

.leadership-section .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.leadership-section .section-header h2 {
  font-size: 2.3rem;
  color: #0a1f44;
  margin-bottom: 15px;
}

.leadership-section .section-header p {
  font-size: 1.05rem;
  color: #666;
}

/* Grid Layout */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Leader Cards */
.leader-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 8px;
  background: #f9fafc;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.leader-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.leader-card h4 {
  font-size: 1.2rem;
  color: #0a1f44;
  margin-bottom: 5px;
}

.leader-card span {
  font-size: 0.95rem;
  color: #FC3;
  display: block;
  margin-bottom: 15px;
}

.leader-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }
}
/* Global Reach Section */
.global-reach {
  background: #f9f9f9;
  padding: 30px 20px;
  text-align: center;
}

.global-reach .section-header h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #0a1f44;
}

.global-reach .section-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
}

.reach-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.reach-item {
  background: #0a1f44;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  width: 220px;
}

.reach-item h3 {
  font-size: 2rem;
  color: #fc3;
  margin-bottom: 10px;
}

.reach-item p {
  font-size: 1rem;
  color: #fcfcfd;
  font-weight: 500;
}

/* Optional map styling */
.reach-map img {
  max-width: 40%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
/*HERO SECTION*/
.about-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.about-hero img.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.about-hero-overlay h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 15px;
}

.about-hero-overlay p {
  color: #fff;
  font-size: 1.2rem;
}

/* Breadcrumbs */
.breadcrumbs {
  margin-bottom: 15px;
}

.breadcrumbs a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumbs span {
  color: #fff;
  margin: 0 5px;
}

/*COURSES SECTION*/
.courses-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.courses-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #222;
}

.courses-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

/* Courses Grid */
.courses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.course-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 350px;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.course-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.course-content {
  padding: 20px;
}

.course-content h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #222;
}

.course-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

.course-content .btn-secondary {
  display: inline-block;
  background: #0066cc;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.course-content .btn-secondary:hover {
  background: #004a99;
}

/* Call to Action Button */
.courses-section .btn-primary {
  background: #ff6f61;
  color: #fff;
  font-size: 1.2rem;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.courses-section .btn-primary:hover {
  background: #e65b50;
}

/*RESPONSIVE*/
@media (max-width: 991px) {
  .about-hero-overlay h1 {
    font-size: 2.5rem;
  }

  .courses-grid {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .about-hero-overlay h1 {
    font-size: 2rem;
  }

  .about-hero-overlay p {
    font-size: 1rem;
  }

  .course-card img {
    height: 180px;
  }

  .courses-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .about-hero-overlay h1 {
    font-size: 1.6rem;
  }

  .course-card img {
    height: 150px;
  }

  .course-content h4 {
    font-size: 1.2rem;
  }

  .courses-section h2 {
    font-size: 1.6rem;
  }
}
.courses-page {
  font-family: 'Montserrat', sans-serif;
}

/* Hero Section */
.about-hero {
  position: relative;
  height: 50vh;
  overflow: hidden;
}

.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(11,61,145,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.page-hero-content h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.page-hero-content p {
  font-size: 18px;
}

/* Breadcrumbs */
.breadcrumbs {
  margin-bottom: 10px;
}

.breadcrumbs a {
  color: #fff;
  text-decoration: underline;
}

/* Filter Buttons */
.courses-filter-section {
  padding: 40px 0;
  background: #f8f9fa;
}

.courses-filter-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid #0b3d91;
  background: #fff;
  color: #0b3d91;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 25px;
}

.filter-btn:hover,
.filter-btn.active {
  background: #0b3d91;
  color: #fff;
}

/* Courses Grid */
.courses-grid-section {
  padding: 50px 0;
}

.course-card {
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.course-card .card-inner {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  height: 100%;
}

.course-card h4 {
  font-size: 22px;
  margin-bottom: 15px;
}

.course-card p {
  font-size: 15px;
  margin-bottom: 10px;
}

/* CTA */
.cta-section {
  padding: 60px 0;
  background: #0b3d91;
  color: #fff;
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.cta-section .btn-primary {
  padding: 12px 30px;
  background: #fff;
  color: #0b3d91;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-section .btn-primary:hover {
  background: #e6e6e6;
  color: #0b3d91;
}
/*GENERAL*/
body.courses-page {
  font-family: 'Montserrat', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/*HERO*/
.about-hero {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.about-hero-overlay h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-hero-overlay p {
  font-size: 1.2rem;
  max-width: 700px;
}

/* Breadcrumbs */
.breadcrumbs {
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumbs span {
  margin: 0 5px;
}

/*COURSES GRID*/
.courses-grid-section {
  padding: 40px 0;
}

.courses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.course-card {
  background-color: #003366;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  padding: 10px 10px;
  flex: 0 1 calc(33.333% - 20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.course-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #003366;
}

.course-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.course-card .btn-primary {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #FC3;
  color: #003366;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.course-card .btn-primary:hover {
  background-color: #0055aa;
}

/*RESPONSIVE*/
@media (max-width: 992px) {
  .course-card {
    flex: 0 1 calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .course-card {
    flex: 0 1 100%;
  }

  .about-hero-overlay h1 {
    font-size: 2rem;
  }

  .about-hero-overlay p {
    font-size: 1rem;
  }
}
.course-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 30px;
}

.course-card .card-inner {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.course-card .btn-primary {
  margin-top: auto; /* Keep Apply button at bottom */
}

.courses-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.pagination button {
  margin: 0 10px;
}
.Admissions-page .admissions-content {
  padding: 80px 0;
}
/*Admission Requirements*/

.admission-requirements-section {
  padding: 30px 0;
  background: #ffffff;
}

.section-header h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.section-header p {
  max-width: 750px;
  margin: 0 auto 50px;
  color: #666;
}

.requirement-card {
  margin-bottom: 30px;
}

.requirement-inner {
  background: hsl(0, 10%, 94%);
  padding: 30px;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.requirement-inner:hover {
  transform: translateY(-5px);
}

.requirement-inner h4 {
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

.requirement-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requirement-inner ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  color: #555;
}

.requirement-inner ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #FC3;
  font-size: 13px;
}
/*Application Process*/

.application-process-section {
  padding: 30px 0;
  background: hsl(0, 10%, 94%);
}

.process-step {
  margin-bottom: 30px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #FC3;
  color: #000;
  font-weight: 700;
  border-radius: 40%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 20px;
}

.process-step h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: #666;
}

/*Required Documents*/

.document-card {
  margin-bottom: 10px;
}

.document-card h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.document-card p {
  font-size: 14px;
  color: #555;
}

/*Review Section*/

.review-process p {
  max-width: 900px;
  margin: 0 auto 15px;
  text-align: center;
  color: #555;
}

/*CTA Button*/

.apply-cta-btn {
  background: #FC3;
  padding: 14px 35px;
  border-radius: 5px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.apply-cta-btn:hover {
  background: #e6b800;
  text-decoration: none;
}

/*Inquiry Section*/

.inquiry-section {
  padding: 30px 0;
  background: hsl(0, 10%, 94%);
}

.inquiry-box {
  background: #ffffff;
  padding: 50px;
  border-radius: 10px;
  max-width: 800px;
  margin: auto;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.inquiry-box h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.inquiry-box p {
  color: #666;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  transition: 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #FC3;
  outline: none;
  box-shadow: 0 0 0 2px rgba(255,204,51,0.2);
}

.inquiry-btn {
  background: #FC3;
  border: none;
  padding: 14px;
  width: 100%;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
}

.inquiry-btn:hover {
  background: #e6b800;
}
/*Application Section*/

.application-section {
  padding: 30px 0;
  background: #ffffff;
}

.application-page {
  position: relative;
}

.active-page {
  display: block;
}

.info-box {
  background: hsl(0, 10%, 94%);
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.info-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.info-box p {
  font-size: 14px;
  color: #555;
}

/*Pagination*/

.page-btn {
  background: #FC3;
  border: none;
  padding: 10px 25px;
  margin: 0 10px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
}

.page-btn:hover {
  background: #e6b800;
}

.page-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/*Learning Experience Section*/

.learning-experience-section {
  padding: 40px 0;
  background: white;
}

/* Smaller, cleaner cards */
.experience-card {
  background: #0b2341;
  padding: 20px 15px;     
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  height: 100%;
  transition: 0.3s ease;
}

.experience-card h4 {
  font-size: 18px;        
  margin-bottom: 12px;
  color: #f9f9f9;
}

.experience-card p {
  font-size: 13px;       
  color: #f9f9f9;
  line-height: 1.6;
}

/* Icon styling */
.experience-icon {
  font-size: 32px;        
  margin-bottom: 15px;
  color: #FC3;
}

.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  border-bottom: 2px solid #FC3;
}

/* STUDENT LIFE EXTENDED */
.student-life-extended {
  padding: 20px 0;
  background: hsl(0, 10%, 94%);
}

.student-life-extended .section-header {
  margin-bottom: 30px;
}

.student-life-extended h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.student-life-extended p {
  color: #555;
}

/* CARD */
.life-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.life-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* GOLD ICON CIRCLE */
.life-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #f1c40f);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(212,175,55,0.35);
}

.life-icon i {
  color: #fff;
  font-size: 28px;
}

.life-card h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

.life-card p {
  font-size: 14px;
  color: #666;
}

/*STUDENT GALLERY*/
.student-gallery {
  padding: 70px 0;
  background: #ffffff;
}

.student-gallery .section-header {
  margin-bottom: 40px;
}

.gallery-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.gallery-track {
  display: flex;
  gap: 20px;
  padding: 0 40px;
}

.gallery-item {
  flex: 0 0 auto;
  width: 300px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Hover Effect */
.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover {
  transform: translateY(-6px);
}

/* Hide scrollbar (clean look) */
.gallery-wrapper::-webkit-scrollbar {
  height: 6px;
}

.gallery-wrapper::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 10px;
}

/* CONTACT INFO SECTION */
.contact-info-section {
  padding: 40px 0;
  background: #f9fafc;
}

.contact-info-section .section-header {
  margin-bottom: 30px;
}

.contact-card {
  background: #ffffff;
  padding: 20px 20px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.1);
}

/* GOLD ICON CIRCLE */
.contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #f1c40f);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(212,175,55,0.35);
}

.contact-icon i {
  color: #ffffff;
  font-size: 28px;
}

.contact-card h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.contact-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: #d4af37;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-link:hover {
  color: #000;
}


/* OFFICE & LOCATION */
.office-location-section {
  padding: 10px 0;
  background: hsl(0, 10%, 94%);
}

.office-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.office-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* GOLD ICON CIRCLE */
.office-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #f1c40f);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(212,175,55,0.35);
}

.office-icon i {
  color: #ffffff;
  font-size: 28px;
}

.office-card h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

.office-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

/* SOCIAL ICON CONTAINER */
.office-card .social-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

/* BASE STYLE */
.office-card .social-icons a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff !important;
  transition: all 0.3s ease;
}

/* BRAND COLORS (FORCE APPLY) */
.office-card .social-icons a.linkedin {
  background-color: #0077b5 !important;
}

.office-card .social-icons a.twitter {
  background-color: #000000 !important;
}

.office-card .social-icons a.facebook {
  background-color: #1877f2 !important;
}

.office-card .social-icons a.instagram {
  background: radial-gradient(circle at 30% 107%, 
    #fdf497 0%, 
    #fd5949 45%, 
    #d6249f 60%, 
    #285AEB 90%) !important;
}

.office-card .social-icons a.youtube {
  background-color: #ff0000 !important;
}

/* Hover */
.office-card .social-icons a:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
/* PRICING SECTION */
.pricing-section {
  padding: 50px 0;
  background: hsl(0, 10%, 94%);
}

.pricing-wrapper {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.pricing-card {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 16px;
  width: 400px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.pricing-card h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.pricing-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.price {
  margin-bottom: 30px;
}

.price .amount {
  font-size: 42px;
  font-weight: 700;
  color: #d4af37;
}

.price .per {
  display: block;
  font-size: 13px;
  color: #777;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pricing-features li {
  margin-bottom: 12px;
  font-size: 14px;
  color: #555;
}

.pricing-features li::before {
  content: "✔";
  color: #d4af37;
  margin-right: 8px;
}

/* BUTTON */
.pricing-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  border: 1px solid #d4af37;
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  background: #d4af37;
  color: #fff;
}

/* PRIMARY BUTTON */
.pricing-btn.primary {
  background: #d4af37;
  color: #fff;
}

.pricing-btn.primary:hover {
  background: #b9972e;
}

/* MOST POPULAR */
.pricing-card.popular {
  border: 2px solid #d4af37;
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #d4af37;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
}

/* FAQ SECTION */
.pricing-faq {
  padding: 30px 0;
  background: #ffffff;
}

.faq-wrapper {
  max-width: 850px;
  margin: 60px auto 0;
}

/* FAQ ITEM */
.faq-item {
  border-radius: 12px;
  margin-bottom: 15px;
  background: #f9fafc;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* ACTIVE BACKGROUND */
.faq-item.active {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border-left: 4px solid #d4af37;
}

/* QUESTION BUTTON */
.faq-question {
  width: 100%;
  padding: 22px 25px;
  background: none;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* CHEVRON ICON */
.faq-icon {
  font-size: 14px;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* ANSWER AREA */
.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease, opacity 0.25s ease;
  opacity: 0;
}

.faq-answer p {
  padding: 0 25px 25px 25px;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  opacity: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #d4af37;
}

/* FAQ CTA SECTION */

.faq-cta {
  padding: 30px 20px;
  background: hsl(0, 10%, 94%);
}

.faq-cta-box {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;   /* THIS centers it */
  background: #ffffff;
  padding: 60px 50px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.faq-cta-box h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.faq-cta-box p {
  font-size: 15px;
  color: #0b2341;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* BUTTON WRAPPER */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* BASE BUTTON STYLE */
.cta-btn {
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

/* PRIMARY GOLD BUTTON */
.cta-btn.primary {
  background: #d4af37;
  color: #ffffff;
}

.cta-btn.primary:hover {
  background: #b9972e;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212,175,55,0.4);
}

/* SECONDARY OUTLINE BUTTON */
.cta-btn.secondary {
  border: 2px solid #d4af37;
  color: #d4af37;
  background: transparent;
}

.cta-btn.secondary:hover {
  background: #d4af37;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212,175,55,0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-cta-box {
    padding: 40px 25px;
  }

  .faq-cta-box h3 {
    font-size: 22px;
  }
}
/* APPLICATION PROCESS */

.application-process {
  padding: 30px 20px;
  background: #f9fafc;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-header p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* PROCESS GRID */

.process-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.process-step {
  background: hsl(0, 10%, 94%);
  padding: 40px 30px;
  border-radius: 14px;
  text-align: center;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* STEP NUMBER CIRCLE */

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px auto;
  background: #d4af37;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.process-step p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .process-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
/* APPLY EMAIL SECTION */

.apply-email-section {
  padding: 20px 10px;
  background: hsl(0, 10%, 94%);
}

.apply-email-box {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 10px 20px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.apply-email-box h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.apply-email-box p {
  font-size: 15px;
  color: hsl(0, 0%, 13%);
  margin-bottom: 30px;
  line-height: 1.6;
}

/* EMAIL DISPLAY BOX */

.admissions-contact {
  margin-bottom: 25px;
}

.contact-label {
  font-weight: 600;
  margin-bottom: 10px;
}

.email-copy-box {
  display: inline-flex;
  align-items: center;
  background: #0b2341;
  padding: 12px 18px;
  border-radius: 40px;
  gap: 15px;
  font-weight: 600;
  color: #ffffff;
  font-size: 14px;
}

.copy-btn {
  background: #d4af37;
  border: none;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: #b9972e;
  transform: scale(1.1);
}

.copy-message {
  display: block;
  margin-top: 10px;
  color: #28a745;
  font-size: 13px;
  font-weight: 500;
}

.response-note {
  font-size: 13px;
  color: #777;
}

/* EMAIL GUIDELINES LIST */

.email-guidelines-section {
  padding: 30px 20px;
  background: #f9fafc;
}

.email-guidelines-list {
  max-width: 800px;
  margin: 50px auto 0 auto;
}

.email-guidelines-list ul {
  list-style: none;
  padding-left: 0;
}

.email-guidelines-list li {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 28px;
  position: relative;
  color: #555;
}

/* Gold bullet */
.email-guidelines-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4af37;
  font-size: 22px;
  line-height: 1;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

/* ── LOGIN SECTION ──────────────────────────────────────── */
:root {
    --gold:         #d4af37;
    --gold-lt:      #e8cc6a;
    --gold-dk:      #a8891f;
    --navy:         #0d1b2a;
    --navy-mid:     #122236;
    --navy-card:    #0f1e2e;
    --navy-input:   #172537;
    --border-dim:   rgba(212, 175, 55, 0.15);
    --border-focus: rgba(212, 175, 55, 0.55);
    --text-primary: #f0ece0;
    --text-muted:   #6e85a0;
    --text-label:   #9aacbf;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-ui:      'DM Sans', sans-serif;
    --radius:       14px;
  }

  .login-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 80px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ui);
  }

  .login-bg-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .deco-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.18;
  }
  .deco-orb--a {
    width: 560px; height: 560px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 65%);
    top: -160px; left: -180px;
    animation: floatA 16s ease-in-out infinite alternate;
  }
  .deco-orb--b {
    width: 420px; height: 420px;
    background: radial-gradient(circle, #1a3a6e 0%, transparent 65%);
    bottom: -120px; right: -140px;
    animation: floatB 20s ease-in-out infinite alternate;
  }
  @keyframes floatA {
    from { transform: translate(0,0) scale(1); }
    to   { transform: translate(50px,35px) scale(1.1); }
  }
  @keyframes floatB {
    from { transform: translate(0,0) scale(1); }
    to   { transform: translate(-35px,-25px) scale(1.06); }
  }
  .deco-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(212,175,55,0.06) 1px, transparent 1px);
    background-size: 30px 30px;
  }

  .login-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 900px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 0 1px var(--border-dim);
    animation: revealUp 0.7s cubic-bezier(0.22,1,0.36,1) both;
  }
  @keyframes revealUp {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to   { opacity: 1; transform: none; }
  }

  /* Left panel */
  .login-panel--left {
    flex: 0 0 42%;
    background: linear-gradient(160deg, var(--navy-mid) 0%, #0a1520 100%);
    border-right: 1px solid var(--border-dim);
    display: flex;
    align-items: center;
    padding: 52px 40px;
    position: relative;
    overflow: hidden;
  }
  .login-panel--left::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: linear-gradient(180deg, var(--gold-lt), var(--gold-dk));
  }

  .left-inner { width: 100%; }

  .left-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,175,55,0.1);
    border: 1px solid var(--border-dim);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 28px;
  }

  .left-heading {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin: 0 0 18px;
  }
  .left-heading em { font-style: italic; color: var(--gold-lt); }

  .left-text {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
    margin: 0 0 28px;
  }

  .left-features {
    list-style: none;
    padding: 0; margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .left-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-label);
  }
  .left-features li i { color: var(--gold); font-size: 12px; flex-shrink: 0; }

  .left-divider { height: 1px; background: var(--border-dim); margin-bottom: 24px; }

  .left-accred { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
  .accred-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
  .accred-tags { display: flex; gap: 8px; }
  .accred-tags span {
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--gold);
    border: 1px solid var(--border-dim);
    border-radius: 4px;
    padding: 3px 8px;
    background: rgba(212,175,55,0.07);
  }

  /* Right panel */
  .login-panel--right {
    flex: 1;
    background: var(--navy-card);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 52px 44px;
  }

  .login-card { width: 100%; max-width: 380px; }

  .login-header { text-align: center; margin-bottom: 36px; }

  .logo-ring {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 84px; height: 84px;
    border-radius: 50%;
    border: 1.5px solid var(--border-dim);
    background: var(--navy-input);
    margin-bottom: 20px;
    box-shadow: 0 0 0 6px rgba(212,175,55,0.05), 0 8px 24px rgba(0,0,0,0.4);
  }
  .login-logo { width: 52px; height: auto; object-fit: contain; }

  .login-title {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 6px;
    letter-spacing: 0.01em;
  }
  .login-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin: 0;
  }

  .title-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
  }
  .title-ornament span {
    display: block; height: 1px; width: 48px;
    background: linear-gradient(to right, transparent, var(--border-dim));
  }
  .title-ornament span:last-child {
    background: linear-gradient(to left, transparent, var(--border-dim));
  }
  .ornament-star { font-size: 7px; color: var(--gold); opacity: 0.7; }

  /* Form */
  .login-form { display: flex; flex-direction: column; }
  .form-group { margin-bottom: 20px; }
  .form-group label {
    display: block;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-label);
    margin-bottom: 8px;
  }

  .input-box {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--navy-input);
    border: 1px solid var(--border-dim);
    border-radius: 10px;
    padding: 12px 14px;
    transition: border-color 0.25s, box-shadow 0.25s;
    overflow: hidden;
  }
  .input-box.is-focused {
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.07), 0 4px 16px rgba(0,0,0,0.35);
  }

  .input-icon {
    color: var(--gold);
    font-size: 13px;
    margin-right: 11px;
    flex-shrink: 0;
    opacity: 0.75;
    transition: opacity 0.2s;
  }
  .input-box.is-focused .input-icon { opacity: 1; }

  .input-box input {
    flex: 1; min-width: 0;
    background: transparent;
    border: none; outline: none;
    font-family: var(--font-ui);
    font-size: 14px;
    color: var(--text-primary);
    caret-color: var(--gold);
  }
  .input-box input::placeholder { color: var(--text-muted); opacity: 0.55; }

  .focus-bar {
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt));
    border-radius: 0 0 10px 10px;
    transition: width 0.35s ease, left 0.35s ease;
  }
  .input-box.is-focused .focus-bar { width: 100%; left: 0; }

  .pw-toggle {
    background: none; border: none;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 13px;
    padding: 0 0 0 8px;
    flex-shrink: 0;
    transition: color 0.2s;
  }
  .pw-toggle:hover { color: var(--gold); }

  /* Options row */
  .login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
  }

  .remember-me {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    user-select: none;
  }
  .real-cb { display: none; }
  .custom-cb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px; height: 17px;
    border: 1.5px solid var(--border-dim);
    border-radius: 4px;
    background: var(--navy-input);
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
  }
  .custom-cb .fa-check { font-size: 9px; color: var(--navy); opacity: 0; transition: opacity 0.15s; }
  .real-cb:checked ~ .custom-cb { background: var(--gold); border-color: var(--gold); }
  .real-cb:checked ~ .custom-cb .fa-check { opacity: 1; }
  .cb-label { font-size: 12.5px; color: var(--text-muted); transition: color 0.2s; }
  .remember-me:hover .cb-label { color: var(--text-primary); }

  .forgot-link {
    font-size: 12.5px;
    color: var(--gold);
    text-decoration: none;
    opacity: 0.8;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
  }
  .forgot-link:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }

  /* Button */
  .login-btn {
    width: 100%;
    padding: 13px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(120deg, var(--gold-lt) 0%, var(--gold) 50%, var(--gold-dk) 100%);
    background-size: 200% 100%;
    background-position: right center;
    color: var(--navy);
    border: none;
    border-radius: 50px;
    font-family: var(--font-ui);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 22px rgba(212,175,55,0.28);
    transition: background-position 0.45s ease, box-shadow 0.3s ease, transform 0.15s ease;
  }
  .login-btn:hover {
    background-position: left center;
    box-shadow: 0 8px 32px rgba(212,175,55,0.42);
    transform: translateY(-2px);
  }
  .login-btn:active { transform: translateY(1px); box-shadow: 0 3px 12px rgba(212,175,55,0.25); }
  .btn-icon { font-size: 13px; transition: transform 0.3s ease; }
  .login-btn:hover .btn-icon { transform: translateX(5px); }

/* Mobile Pages Button Overrides */
@media screen and (max-width: 950px) {
  /* Pages button styling (right side) */
  a.menu-link { display: flex; align-items: center; justify-content: center; margin-left: auto; padding: 0; }
  a.menu-link .pages-label { display: inline-block; padding: 10px 14px; background: #f5a425; color: #0b2341; border-radius: 25px; font-weight: 700; font-size: 14px; text-transform: none; }

  /* Hide nav by default, show when .active added */
  nav[role="navigation"] { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
  nav[role="navigation"].active { max-height: 80vh; overflow-y: auto; }

  /* Make menu a vertical list on mobile */
  nav[role="navigation"] ul.main-menu { display: block; padding: 0; margin: 0; }
  nav[role="navigation"] ul.main-menu > li { display: block; border-bottom: 1px solid rgba(255,255,255,0.04); }
  nav[role="navigation"] ul.main-menu > li > a { display: block; padding: 12px 16px; text-align: left; color: #fff; }

  /* Submenus collapsed by default; toggle with .open on parent li */
  nav[role="navigation"] .sub-menu { display: none; padding-left: 0; background: transparent; box-shadow: none; border-left: none; }
  nav[role="navigation"] li.open > .sub-menu { display: block; }
  nav[role="navigation"] .sub-menu li a { padding: 10px 32px; font-size: 13px; color: #fff; display: block; }

  /* Ensure pages button smaller on narrow screens */
  @media screen and (max-width: 767px) {
    a.menu-link .pages-label { padding: 8px 12px; font-size: 13px; }
  }
}

