* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{

--color-primary:#001528;
--color-secondary:#EFA703;

--color-white:#ffffff;
--color-gray:#cbd5e1;
--color-dark:#000000;

--font-sans:'Poppins',sans-serif;
--font-serif:'Playfair Display',serif;

--navy:#001528;
--blue:#001528;
--gold:#EFA703;
--gold2:#EFA703;
--text:#ffffff;
--muted:#cbd5e1;
--bg:#f5f7fb;
--white:#ffffff;

}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-white);
  background: var(--color-primary);
  line-height: 1.6;
}

.main-header {
  background:rgba(0,21,40,0.58);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-secondary);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.logo img {
  width: 80px;
  height: 80px;
}

.logo span {
  display: none;
}

.desktop-nav {
  display: flex;
  gap: 2rem;
  flex: 1;
}

.nav-link {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--color-secondary);
}

.phone-link {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.3s;
}

.phone-link:hover {
  color: var(--color-secondary);
}

.enquire-btn {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.enquire-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 167, 3, 0.55);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-secondary);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-primary);
  z-index: 99;
  padding: 2rem;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.close-menu {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-secondary);
  cursor: pointer;
  margin-bottom: 2rem;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 1.2rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.btn {
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-size: 0.95rem;
}

.btn-gold {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 196, 48, 0.4);
}

.btn-dark {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-dark:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn-full {
  width: 100%;
}

.btn-link {
  background: none;
  border: none;
  color: var(--color-secondary);
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  padding: 0;
  margin-top: 1rem;
}

.btn-link:hover {
  color: var(--color-white);
}

.text-gold {
  color: var(--color-secondary);
}

.text-white {
  color: var(--color-white);
}

.hero-section-1 {
  position: relative;
  min-height:auto;
  display: flex;
  flex-direction:column;
  padding:0;
  align-items: center;
  overflow: hidden;
}

.hero-image-container{
    width:100%;
    height:auto !important;
    margin-top:0 !important;
    padding-top:0 !important;
    overflow:hidden;
}

.hero-image-container img{
    width:100%;
    height:auto !important;
    display:block;
    object-fit:contain;
    object-position:center top;
}

.header,
.main-header{
    margin-bottom:0 !important;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width:100%;
  height:85vh;
  background: rgba(0, 21, 40, .15);
  z-index: 1;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 2rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  position: relative;
  text-align:center;
  z-index: 2;
}

.hero-content {
  max-width:900px;
  margin:auto;
  animation: slideInLeft 0.8s ease-out;
}

.hero-eyebrow {
  color: var(--color-secondary);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--color-white);
}

.hero-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin:auto auto 30px;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content:center;
}

@media(max-width:768px){

.hero-background{
height:55vh;
}

.hero-overlay{
height:55vh;
}

.hero-title{
font-size:2.5rem;
}

}

.hero-form-card {
  display:none;
}

.hero-form-card h3 {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.hero-form-card p {
  color: var(--color-gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-form input,
.hero-form select {
  padding: 0.9rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

.hero-form input:focus,
.hero-form select:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(244, 196, 48, 0.1);
}

.hero-section-2 {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-2-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #001528 0%, #012446 100%);
  z-index: 0;
}

.hero-2-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.5;
  z-index: 0;
}

.hero-2-container {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

.plane-dashes {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--color-secondary), transparent);
  margin-bottom: 2rem;
  position: relative;
}

.plane-dashes::before {
  content: '✈';
  position: absolute;
  right: 30%;
  top: -15px;
  color: var(--color-secondary);
  font-size: 1.5rem;
}

.hero-2-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.hero-2-subtitle {
  color: var(--color-secondary);
  font-size: 1.3rem;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

.hero-2-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-2-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.enrollment-section {
  background: var(--color-primary);
  padding: 4rem 2rem;
  border-top: 1px solid rgba(244, 196, 48, 0.2);
  border-bottom: 1px solid rgba(244, 196, 48, 0.2);
}

.enrollment-container {
  max-width: 900px;
  margin: 0 auto;
}

.enrollment-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.enrollment-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

.enrollment-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  color: var(--color-secondary);
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.enrollment-form input,
.enrollment-form select {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(244, 196, 48, 0.3);
  border-radius: 8px;
  color: var(--color-white);
  font-family: var(--font-sans);
  transition: all 0.3s;
}

.enrollment-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.enrollment-form input:focus,
.enrollment-form select:focus {
  outline: none;
  border-color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(244, 196, 48, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.programs-section {
  padding: 5rem 2rem;
}

.programs-container {
  max-width: 1400px;
  margin: 0 auto;
}

.program-card:nth-child(1) .program-image{
background-image:url("assets/images/cabin-crew.jpg");
}

.program-card:nth-child(2) .program-image{
background-image:url("assets/images/ground-staff.jpg");
}

.program-card:nth-child(3) .program-image{
background-image:url("assets/images/airport-management.jpg");
}

.program-card:nth-child(4) .program-image{
background-image:url("assets/images/bba-aviation.jpg");
}

.section-eyebrow {
  color: var(--color-secondary);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 1rem;
}

.section-description {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.program-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  height: 450px;
}

.program-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.program-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), var(--color-primary));
  z-index: 2;
  transition: all 0.3s;
}

.program-card:hover .program-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 26, 77, 0.95));
}

.program-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 3;
}

.program-card h3 {
  position: absolute;
  bottom: 80px;
  left: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  z-index: 3;
}

.program-card p {
  position: absolute;
  bottom: 50px;
  left: 1.5rem;
  right: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  z-index: 3;
}

.program-card .btn-link {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 3;
}

.program-card:hover {
  transform: translateY(-5px);
}

.pilot-section{
padding:80px 100px;
background:#001528;
}

.pilot-header{
margin-bottom:50px;
}

.pilot-header h2{
font-size:72px;
line-height:1.1;
margin-bottom:25px;
}

.pilot-header p{
font-size:22px;
max-width:800px;
line-height:1.6;
color:#d8e0ea;
}

.pilot-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:0 !important;
align-items:stretch;
}

@media(max-width:992px){

.pilot-section{
padding:50px 25px;
}

.pilot-header h2{
font-size:42px;
}

.pilot-header p{
font-size:16px;
}

.pilot-grid{
grid-template-columns:1fr;
gap:20px;
}

}
.pilot-container {
  max-width: 1400px;
  margin: 0 auto;
}

.pilot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pilot-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  height: 400px;
}

.pilot-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.pilot-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), var(--color-primary));
  z-index: 2;
  transition: all 0.3s;
}

.pilot-card:hover .pilot-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 26, 77, 0.95));
}

.pilot-card h3 {
  position: absolute;
  bottom: 80px;
  left: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  z-index: 3;
}

.pilot-card p {
  position: absolute;
  bottom: 50px;
  left: 1.5rem;
  right: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  z-index: 3;
}

.pilot-card .btn-link {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 3;
}

.pilot-card:hover {
  transform: translateY(-5px);
}

.why-section {
  padding: 5rem 2rem;
  background: rgba(244, 196, 48, 0.03);
}

.why-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.why-grid{
display:grid !important;
grid-template-columns:repeat(4,1fr) !important;
align-items:start !important;
gap:50px !important;
width:100% !important;
max-width:1200px !important;
margin:70px auto !important;
padding:0 30px !important;
}

.why-card{
background:none !important;
border:none !important;
box-shadow:none !important;
padding:0 !important;
min-height:unset !important;
text-align:center !important;
}

.why-card .icon{
width:75px !important;
height:75px !important;
border:2px solid rgba(255,255,255,.7) !important;
border-radius:50% !important;
display:flex !important;
justify-content:center !important;
align-items:center !important;
margin:0 auto 20px !important;
color:#EFA703 !important;
font-size:30px !important;
}

.why-card h3{
font-size:18px !important;
color:#fff !important;
font-weight:700 !important;
margin:0 !important;
}

.why-card p{
display:none !important;
}

@media(max-width:768px){

.why-grid{
grid-template-columns:repeat(2,1fr) !important;
gap:35px !important;
}

}

.testimonials-section {
  padding: 5rem 2rem;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
  position: relative;
}

.testimonial-item {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid rgba(244, 196, 48, 0.2);
  border-radius: 12px;
  align-items: center;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s;
  position: absolute;
  width: 100%;
}

.testimonial-item.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.testimonial-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--color-secondary);
  flex-shrink: 0;
}

.testimonial-content {
  flex: 1;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-name {
  color: var(--color-secondary);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.testimonial-role {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.carousel-prev,
.carousel-next {
  background: rgba(244, 196, 48, 0.1);
  border: 1px solid rgba(244, 196, 48, 0.3);
  color: var(--color-secondary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(244, 196, 48, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: var(--color-secondary);
  width: 30px;
  border-radius: 5px;
}

.brand-section {
  padding: 5rem 2rem;
  background: rgba(244, 196, 48, 0.05);
}

.brand-container {
  max-width: 1400px;
  margin: 0 auto;
}

.brand-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.brand-image {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

.brand-heading {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.brand-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.uniforms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.uniform-card {
  border: 1px solid rgba(244, 196, 48, 0.3);
  padding: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s;
}

.uniform-card:hover {
  border-color: var(--color-secondary);
  background: rgba(244, 196, 48, 0.08);
}

.uniform-card h4 {
  color: var(--color-secondary);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.uniform-card ul {
  list-style: none;
}

.uniform-card li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
}

.uniform-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
}

.mission-section {
  padding: 4rem 2rem;
  border-top: 1px solid rgba(244, 196, 48, 0.2);
  border-bottom: 1px solid rgba(244, 196, 48, 0.2);
}

.mission-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.mission-tags {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.mission-tags span {
  color: var(--color-secondary);
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-weight: 700;
}

.mission-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1.3;
}

.accreditations-section {
  padding: 5rem 2rem;
}

.accreditations-container {
  max-width: 1200px;
  margin: 0 auto;
}

.accreditations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.accreditation-card {
  padding: 2rem;
  border: 2px solid rgba(244, 196, 48, 0.3);
  border-radius: 12px;
  transition: all 0.3s;
}

.accreditation-card.uk {
  border-color: rgba(192, 0, 0, 0.4);
}

.accreditation-card.india {
  border-color: rgba(255, 153, 0, 0.4);
}

.accreditation-card:hover {
  border-color: var(--color-secondary);
  background: rgba(244, 196, 48, 0.08);
  transform: translateY(-5px);
}

.flag-container {
  width: 100px;
  height: 60px;
  margin: 0 auto 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flag-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accreditation-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.accreditation-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.accreditation-details {
  display: flex;
  justify-content: space-around;
  text-align: center;
  border-top: 1px solid rgba(244, 196, 48, 0.2);
  padding-top: 1.5rem;
}

.detail-item {
  flex: 1;
}

.detail-item .label {
  color: var(--color-secondary);
  font-size: 0.8rem;
  letter-spacing: 1px;
  display: block;
}

.detail-item .value {
  color: var(--color-white);
  font-size: 0.95rem;
  display: block;
}

.life-academy-section {
  padding: 5rem 2rem;
  background: rgba(244, 196, 48, 0.03);
}

.life-academy-container {
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:35px;
  flex-wrap:wrap;
}

.life-academy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.life-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
  width:420%;
  cursor: pointer;
}

.life-image {
  width: 100%;
  height: 3800%;
  background-size: cover;
  background-position: center;
  transition: all 0.3s;
  border-radius:25px;
}

.life-card:hover .life-image {
  transform: scale(1.05);
}

.life-card.featured {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  height: auto;
}

.life-card.featured .life-image {
  height: 100%;
}

.life-tag {
  position: absolute;
  bottom: 2rem;
  left: 1.5rem;
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 2;
}

.life-card h3 {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  z-index: 2;
}

.career-paths-section {
  padding: 5rem 2rem;
  position: relative;
}

.career-paths-container {
  max-width: 1400px;
  margin: 0 auto;
}

.career-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.career-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}

.career-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.3s;
}

.career-card:hover .career-image {
  transform: scale(1.05);
}

.career-tag {
  position: absolute;
  bottom: 2rem;
  left: 1.5rem;
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 2;
}

.career-card h3 {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  z-index: 2;
}

.career-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  text-align: center;
}

.final-cta-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, #003d99 100%);
  text-align: center;
}

.final-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.final-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.main-footer {
  background: linear-gradient(to bottom, #001528, #000814);
  padding: 4rem 2rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(244, 196, 48, 0.2);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

.main-footer h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-secondary);
  margin-bottom: 0.3rem;
  letter-spacing: 2px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(244, 196, 48, 0.2);
  border-bottom: 1px solid rgba(244, 196, 48, 0.2);
  margin-bottom: 2rem;
}

.contact-item {
  text-align: center;
}

.contact-label {
  color: var(--color-secondary);
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--color-secondary);
}

.footer-bottom {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.popup-overlay.active {
  display: flex;
}

.popup-modal {
  background: var(--color-primary);
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  position: relative;
  animation: slideUp 0.3s ease-out;
  max-height: 90vh;
  overflow-y: auto;
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--color-secondary);
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
}

.popup-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.popup-header img {
  width: 50px;
  height: 50px;
}

.popup-header h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.popup-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.popup-form input,
.popup-form select {
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(244, 196, 48, 0.3);
  border-radius: 8px;
  color: var(--color-white);
  font-family: var(--font-sans);
  transition: all 0.3s;
}

.popup-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.popup-form input:focus,
.popup-form select:focus {
  outline: none;
  border-color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.08);
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  z-index: 50;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.whatsapp-float span {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-background{
background-image:url("assets/images/hero-building.jpg");
width:100%;
height:auto !important;
margin-top:0 !important;
padding-top:0 !important;
background-size:100% auto !important;
background-position:center top !important;
background-repeat:no-repeat !important;
}

.program-image{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background-size:cover;
background-position:center;
background-repeat:no-repeat;

transition:.5s;
}

.program-card:hover .program-image{
transform:scale(1.08);
}

.program-card:hover .program-image{
transform:scale(1.08);
}

.pilot-image{
background-size:cover !important;
background-position:center !important;
transition:.5s;
}

.pilot-card:hover .pilot-image{
transform:scale(1.08);
}

.brand-image{
background-size:cover;
background-position:center;
border-radius:16px;
border:2px solid #EFA703;

box-shadow:
0 0 20px rgba(239,167,3,.25);

}

.testimonial-image{
border:3px solid #EFA703;
box-shadow:
0 0 20px rgba(239,167,3,.3);
}

.life-academy-container{
    max-width:1400px;
    margin:auto;
    padding:80px 40px;
    text-align:center;
}

.life-academy-grid{
    display:grid !important;
    grid-template-columns:repeat(3,1fr) !important;
    gap:30px !important;

    max-width:1200px !important;
    margin:70px auto !important;
}

.life-card{
    width:100% !important;
    height:300px !important;
    border-radius:28px !important;
    overflow:hidden !important;
}

.life-card img,
.life-image{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    display:block !important;
}

.life-card:nth-child(1),
.life-card:nth-child(2),
.life-card:nth-child(3),
.life-card:nth-child(4),
.life-card:nth-child(5),
.life-card:nth-child(6){

    grid-row:auto !important;
    grid-column:auto !important;
}

@media(max-width:768px){

.life-academy-grid{
    grid-template-columns:1fr !important;
}

.life-card{
  width:100% !important;
  max-width:350px !important;
  height:320px !important;
}

}

.life-card,
.life-card.featured{
    border-radius:25px;
    overflow:hidden;
    background:#0A1E44;
}

.life-image{
    width:100%;
    height:auto;
    background-size:cover;
    background-position:center;
    border-radius:25px;
}

.life-tag{
    color:#EFA703;
    margin-top:18px;
    font-size:18px;
    letter-spacing:2px;
}

.life-card h3{
    color:white;
    font-size:32px;
    margin-top:10px;
}

@media(max-width:768px){

.life-academy-grid{
    grid-template-columns:1fr;
    gap:25px;
}

.life-image{
    height:260px;
}

}
.life-image{
background-size:cover;
background-position:center;
transition:.5s;
}

.life-card:hover .life-image{
transform:scale(1.05);
}

.career-image{
background-size:cover;
background-position:center;
transition:.5s;
}

.career-card:hover .career-image{
transform:scale(1.05);
}

.program-card:nth-child(1) .program-image{
background-image:url("../assets/images/program-cabin-crew.jpg") !important;
}

.program-card:nth-child(2) .program-image{
background-image:url("../assets/images/program-ground-staff.jpg") !important;
}

.program-card:nth-child(3) .program-image{
background-image:url("../assets/images/program-airport-mgmt.jpg") !important;
}

.program-card:nth-child(4) .program-image{
background-image:url("../assets/images/program-bba.jpg") !important;
}

.programs-grid{
display:grid;

grid-template-columns:repeat(3,1fr);

gap:2rem;

margin-top:3rem;
}

@media(max-width:992px){

.programs-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.programs-grid{

grid-template-columns:1fr;

}

}

.program-card h3{
bottom:95px;
left:1.5rem;
right:1.5rem;
font-size:1.7rem;
line-height:1.1;
}

.program-card p{
bottom:55px;
left:1.5rem;
right:1.5rem;
font-size:.95rem;
line-height:1.5;
}

.program-card .btn-link{
bottom:1.5rem;
left:1.5rem;
}

.program-card{
height:470px;
}

@media(max-width:768px){

.programs-grid{
grid-template-columns:1fr;
gap:2rem;
}

.program-card{
height:460px;
padding:0;
overflow:hidden;
position:relative;
}

.program-image{
height:100%;
width:100%;
background-size:cover;
background-position:center;
}

.program-overlay{
background:linear-gradient(
to top,
rgba(0,21,40,.95) 15%,
rgba(0,21,40,.2) 60%,
transparent
);
}

.program-card h3{
position:absolute;
bottom:95px;

left:25px;
right:25px;

font-size:30px;
line-height:1.1;

margin:0;
}

.program-card p{
position:absolute;
bottom:45px;

left:25px;
right:25px;

font-size:15px;
line-height:1.4;

margin:0;
}

.program-card .btn-link{
position:absolute;

bottom:15px;
left:25px;
}

}

@media(max-width:768px){

.program-card{
height:520px !important;
}

.program-card h3{
bottom:120px !important;
font-size:28px !important;
line-height:1.1 !important;
z-index:5 !important;
}

.program-card p{
bottom:60px !important;
font-size:15px !important;
line-height:1.45 !important;
z-index:5 !important;
}

.program-card .btn-link{
bottom:20px !important;
z-index:5 !important;
}

}

@media(min-width:769px){

.program-card{
height:520px !important;
}

.program-card h3{
bottom:125px !important;
left:25px !important;
right:25px !important;
font-size:32px !important;
line-height:1.1 !important;
z-index:5 !important;
margin:0 !important;
}

.program-card p{
bottom:65px !important;
left:25px !important;
right:25px !important;
font-size:16px !important;
line-height:1.45 !important;
z-index:5 !important;
margin:0 !important;
}

.program-card .btn-link{
bottom:25px !important;
left:25px !important;
z-index:5 !important;
}

}

.pilot-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:50px;
}

.pilot-card{
height:auto !important;
position:relative;
overflow:hidden;
border-radius:18px;
background:#001528;
border:1px solid rgba(239,167,3,.25);
box-shadow:0 20px 45px rgba(0,0,0,.25);
}

.pilot-image{
position:relative !important;
width:100%;
height:230px;
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.pilot-overlay{
display:none !important;
}

.pilot-card h3{
position:relative !important;
bottom:auto !important;
left:auto !important;
right:auto !important;

padding:25px 25px 8px;
margin:0;

font-size:24px !important;
line-height:1.2 !important;
color:#ffffff;
}

.pilot-card p{
position:relative !important;
bottom:auto !important;
left:auto !important;
right:auto !important;

padding:0 25px 20px;
margin:0;

font-size:15px !important;
line-height:1.6 !important;
color:#d8e0ea;
}

.pilot-card .btn-link{
position:relative !important;
bottom:auto !important;
left:auto !important;

display:inline-block;
padding:0 25px 28px;

color:#EFA703;
font-weight:700;
}

@media(max-width:992px){

.pilot-grid{
grid-template-columns:1fr;
}

.pilot-image{
height:260px;
}

}

.pilot-section{
padding:80px 100px;
background:#001528;
}

.pilot-header{
margin-bottom:50px;
}

.pilot-subtitle{
display:block;
font-size:14px;
letter-spacing:5px;
color:#EFA703;
margin-bottom:20px;
font-weight:600;
}

.pilot-header h2{
font-size:70px;
font-weight:700;
color:white;
margin-bottom:25px;
}

.pilot-header h2 span{
color:#EFA703;
}

.pilot-header p{
max-width:850px;
font-size:22px;
color:#d4d4d4;
line-height:1.7;
}

.pilot-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.pilot-card{
background:#002247;
border-radius:25px;
overflow:hidden;
position:relative;
}

.pilot-image{
height:250px;
background-size:cover;
background-position:center;
}

.pilot-content{
padding:30px;
}

.pilot-content h3{
font-size:20px;
color:white;
margin-bottom:15px;
}

.pilot-content p{
color:#d4d4d4;
line-height:1.7;
margin-bottom:25px;
}

.btn-link{
color:#EFA703;
font-weight:700;
text-decoration:none;
}

@media(max-width:992px){

.pilot-section{
padding:50px 25px;
}

.pilot-header h2{
font-size:40px;
}

.pilot-header p{
font-size:16px;
}

.pilot-grid{
grid-template-columns:1fr;
}

}

.testimonials-section{
background:#001528;
padding:90px 20px;
text-align:center;
}

.testimonials-container{
max-width:1200px;
margin:0 auto;
}

.testimonials-section .section-eyebrow{
color:#EFA703;
letter-spacing:8px;
font-size:13px;
font-weight:700;
margin-bottom:20px;
}

.testimonials-section .section-title{
font-size:56px;
color:#fff;
font-family:var(--font-serif);
margin-bottom:12px;
}

.title-line{
width:90px;
height:5px;
background:#EFA703;
border-radius:20px;
margin:0 auto 70px;
}

.testimonial-box{
position:relative;
max-width:900px;
margin:0 auto;
}

.testimonial-card{
background:rgba(255,255,255,.03);
border:1px solid rgba(239,167,3,.25);
border-radius:30px;
padding:60px 80px;
min-height:380px;

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
}

.testimonial-avatar{
width:90px;
height:90px;
border-radius:50%;
object-fit:cover;
border:3px solid rgba(255,255,255,.85);
margin-bottom:40px;
}

.testimonial-text{
font-size:28px;
line-height:1.55;
font-style:italic;
color:white;
max-width:800px;
margin-bottom:55px;
}

.testimonial-card h4{
color:#EFA703;
font-family:var(--font-serif);
font-size:22px;
letter-spacing:1px;
margin-bottom:5px;
}

.testimonial-card span{
color:white;
font-size:13px;
letter-spacing:.5px;
}

.testimonial-arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
width:62px;
height:62px;
border-radius:50%;
border:1px solid rgba(239,167,3,.35);
background:rgba(255,255,255,.05);
color:#EFA703;
font-size:22px;
cursor:pointer;
z-index:5;
}

.testimonial-arrow.left{
left:-90px;
}

.testimonial-arrow.right{
right:-90px;
}

.testimonial-dots{
margin-top:45px;
display:flex;
justify-content:center;
gap:14px;
}

.testimonial-dots span{
width:9px;
height:9px;
border-radius:50%;
background:rgba(239,167,3,.25);
display:block;
}

.testimonial-dots span.active{
width:28px;
border-radius:20px;
background:#EFA703;
}

@media(max-width:768px){

.testimonials-section{
padding:60px 20px;
}

.testimonials-section .section-title{
font-size:36px;
}

.testimonial-card{
padding:45px 25px;
min-height:360px;
}

.testimonial-text{
font-size:20px;
}

.testimonial-arrow{
display:none;
}

}

.uniform-image-box{
width:100%;
height:430px;
border:2px solid #EFA703;
border-radius:25px;
overflow:hidden;
}

.uniform-image-box img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.brand-image{
    width:100%;
    height:430px;
    border:2px solid #EFA703;
    border-radius:25px;
    overflow:hidden;
    background:#001528;
}

.brand-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
}
.accreditations-section{
  padding:90px 80px;
  background:#001528;
}

.accreditations-container{
  max-width:1400px;
  margin:0 auto;
}

.accreditations-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:60px;
  margin-top:60px;
}

.accreditation-card{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(239,167,3,.45);
  border-radius:28px;
  padding:55px 45px;
  text-align:center;
}

.flag-box{
  width:300px;
  height:180px;
  margin:0 auto 28px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.35);
  box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.flag-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.country-tag{
  color:#EFA703;
  font-weight:700;
  letter-spacing:3px;
  margin-bottom:45px;
}

.logo-row{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    margin:30px 0;
}

.logo-row img{
    width:85px;
    height:85px;
    object-fit:contain;
    padding:10px;
    border-radius:12px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(239,167,3,.2);
    transition:0.3s;
}

.logo-row img:hover{
    transform:translateY(-5px);
    border-color:#EFA703;
}

.accreditation-card h3{
  color:#fff;
  font-size:30px;
  margin-bottom:25px;
}

.accreditation-card p{
  color:#e5e7eb;
  font-size:17px;
  line-height:1.8;
}

.accreditation-details{
  margin-top:55px;
  padding-top:25px;
  border-top:1px solid rgba(255,255,255,.55);
  display:flex;
  justify-content:space-around;
}

.detail-item .label{
  color:#EFA703;
  font-weight:700;
  display:block;
  margin-bottom:8px;
}

.detail-item .value{
  color:#fff;
}

@media(max-width:768px){
  .accreditations-section{
    padding:60px 25px;
  }

  .accreditations-grid{
    grid-template-columns:1fr;
    gap:35px;
  }

  .flag-box{
    width:100%;
    max-width:300px;
  }
}

.course-tag{
    display:inline-block;
    background:#EFA703;
    color:#001528;
    padding:10px 24px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:30px;
}

.course-heading{
    font-size:58px;
    line-height:1.2;
    text-align:center;
    color:#fff;
    max-width:1100px;
    margin:0 auto 80px;
}

.course-heading span{
    color:#EFA703;
}

.cta-box{
    background:#00358A;
    border-radius:20px;
    padding:70px 40px;
    text-align:center;
    max-width:1500px;
    margin:auto;
}

.cta-box h2{
    font-size:60px;
    line-height:1.15;
    color:#fff;
    margin-bottom:40px;
}

.cta-box h2 span{
    color:#EFA703;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.apply-btn{
    background:#EFA703;
    color:#001528;
    padding:16px 45px;
    border-radius:50px;
    font-weight:700;
    text-decoration:none;
}

.whatsapp-btn{
    border:2px solid #fff;
    color:#fff;
    padding:16px 45px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

@media(max-width:768px){

.course-heading{
    font-size:34px;
    padding:0 20px;
}

.cta-box h2{
    font-size:38px;
}

.cta-box{
    padding:50px 20px;
}

}

.course-tag{
    background:none !important;
    color:#ffffff !important;
    padding:0 !important;
    border-radius:0 !important;
    font-size:26px;
    font-family:var(--font-serif);
    font-weight:700;
    letter-spacing:3px;
    text-align:center;
    display:block;
    margin:0 auto 10px;
}

.course-tag span,
.course-tag strong{
    color:#EFA703;
}

.course-heading{
    font-size:32px;
    line-height:1.3;
    text-align:center;
    color:#ffffff;
    letter-spacing:3px;
    max-width:1000px;
    margin:0 auto 90px;
    position:relative;
}

.course-heading span{
    color:#EFA703;
}

.course-heading::after{
    content:"";
    width:380px;
    height:2px;
    background:#EFA703;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-12px;
}

.cta-box{
    background:#06224A !important;
    border-top:1px solid rgba(255,255,255,.4);
    border-bottom:1px solid rgba(255,255,255,.4);
    border-radius:0 !important;
    padding:120px 20px !important;
    text-align:center;
    max-width:100% !important;
    width:100%;
    margin:0 !important;
}

.cta-box h2{
    font-size:58px;
    line-height:1.15;
    color:#ffffff;
    margin-bottom:40px;
    font-family:var(--font-serif);
}

.cta-box h2 span{
    color:#EFA703;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
}

.apply-btn{
    background:#EFA703;
    color:#001528;
    padding:18px 55px;
    border-radius:50px;
    font-weight:800;
    text-decoration:none;
}

.whatsapp-btn{
    background:transparent;
    color:#ffffff;
    padding:18px 55px;
    border-radius:50px;
    border:2px solid #ffffff;
    font-weight:800;
    text-decoration:none;
}

@media(max-width:768px){

.course-tag{
    font-size:18px;
}

.course-heading{
    font-size:22px;
    margin-bottom:60px;
}

.course-heading::after{
    width:220px;
}

.cta-box{
    width:100%;
    max-width:1400px;
    margin:0 auto;
    padding:90px 20px;

    background:linear-gradient(
        135deg,
        #001528 0%,
        #032A63 40%,
        #0B3D91 70%,
        #001528 100%
    );

    border-radius:0;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.cta-box h2{
    font-size:60px;
    line-height:1.1;
    color:#fff;
    margin-bottom:35px;
}

.cta-box h2 span{
    color:#EFA703;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta-buttons .btn-primary{
    background:#EFA703;
    color:#000;
    padding:18px 45px;
    border-radius:50px;
    font-weight:700;
}

.cta-buttons .btn-secondary{
    border:2px solid #fff;
    color:#fff;
    padding:18px 45px;
    border-radius:50px;
}

@media(max-width:768px){

.cta-box{
    padding:70px 20px;
}

.cta-box h2{
    font-size:38px;
}

.cta-buttons{
    flex-direction:column;
}
}
.journey-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.journey-card{
    position:relative;
    overflow:hidden;
    border-radius:25px;
}

.journey-card img{
    width:100%;
    height:360px;
    object-fit:cover;
    display:block;
}

.journey-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:25px;
    background:linear-gradient(
    transparent,
    rgba(0,0,0,.85)
    );
}

.journey-overlay span{
    color:#EFA703;
    font-size:14px;
    font-weight:600;
}

.journey-overlay h3{
    color:#fff;
    margin-top:8px;
}
.life-academy-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.life-card{
    overflow:hidden;
    border-radius:25px;
}

.life-image{
    height:320px;
    background-size:cover;
    background-position:center;
    border-radius:25px;
    transition:0.5s;
}

.life-card:hover .life-image{
    transform:scale(1.05);
}

@media (min-width:769px){

.programs-grid{
    display:grid !important;
    grid-template-columns:repeat(3, 1fr) !important;
    gap:34px !important;
}

.program-card{
    height:520px !important;
    width:100% !important;
}

.program-image{
    width:100% !important;
    height:100% !important;
    background-size:cover !important;
    background-position:center !important;
}

.pilot-grid{
    display:grid !important;
    grid-template-columns:repeat(4, 1fr) !important;
    gap:30px !important;
}

.life-academy-grid{
    display:grid !important;
    grid-template-columns:repeat(3, 1fr) !important;
    gap:35px !important;
}

.life-card{
    height:320px !important;
}

.life-image{
    height:100% !important;
    background-size:cover !important;
    background-position:center !important;
}

}
.life-academy-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.life-card{
  height:320px;
  border-radius:24px;
  overflow:hidden;
}

.life-image{
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
}

@media(max-width:768px){
  .life-academy-grid{
    grid-template-columns:1fr;
  }
}
}

@media(min-width:769px){

.programs-grid{
display:grid !important;
grid-template-columns:repeat(3,1fr) !important;
gap:35px !important;
}

.program-card{
position:relative !important;
height:auto !important;
background:#071d36 !important;
border-radius:24px !important;
overflow:hidden !important;
}

.program-image{
position:relative !important;
width:100% !important;
height:260px !important;
background-size:cover !important;
background-position:center !important;
}

.program-overlay{
display:none !important;
}

.program-card h3,
.program-card p,
.program-card .btn-link{
position:relative !important;
left:auto !important;
bottom:auto !important;
right:auto !important;
}

.program-card h3{
font-size:32px !important;
padding:30px 30px 10px !important;
margin:0 !important;
}

.program-card p{
padding:0 30px !important;
margin:0 !important;
}

.program-card .btn-link{
display:block !important;
padding:25px 30px 35px !important;
}

}

@media(min-width:769px){

.pilot-grid{
display:grid !important;
grid-template-columns:repeat(4,1fr) !important;
gap:30px !important;
}

.pilot-card{
height:auto !important;
background:#071d36 !important;
border-radius:24px !important;
overflow:hidden !important;
}

.pilot-image{
position:relative !important;
width:100% !important;
height:240px !important;
background-size:cover !important;
background-position:center !important;
}

.pilot-overlay{
display:none !important;
}

.pilot-card h3,
.pilot-card p,
.pilot-card .btn-link{
position:relative !important;
left:auto !important;
right:auto !important;
bottom:auto !important;
}

.pilot-card h3{
font-size:24px !important;
padding:25px 25px 10px !important;
margin:0 !important;
}

.pilot-card p{
padding:0 25px !important;
margin:0 !important;
font-size:15px !important;
}

.pilot-card .btn-link{
display:block !important;
padding:25px !important;
}
}

@media(min-width:769px){

.brand-content{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:50px !important;
    align-items:center !important;
}

.brand-image{
    width:100% !important;
    height:430px !important;
    border-radius:25px !important;
    background-size:cover !important;
    background-position:center !important;
}

.brand-details{
    text-align:left !important;
}

.uniforms-grid{
    display:grid !important;
    grid-template-columns:repeat(2,1fr) !important;
    gap:25px !important;
}

}

.certification-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
    margin-top:50px;
}

.cert-card{
    background:#071d3a;
    border:1px solid rgba(255,183,0,.4);
    border-radius:35px;
    padding:45px;
    text-align:center;
    overflow:hidden;
}

.cert-card img{
    width:300px;
    height:180px;
    object-fit:contain;
    margin:auto;
    display:block;
}

.cert-card h6{
    color:#EFA703;
    letter-spacing:2px;
    margin-top:25px;
}

.cert-card h2{
    color:#fff;
    font-size:42px;
    margin:20px 0;
}

.cert-card p{
    color:#d4d4d4;
    line-height:1.8;
}

.cert-bottom{
    margin-top:40px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,.2);

    display:grid;
    grid-template-columns:repeat(2,1fr);
}

@media(max-width:768px){

.certification-wrapper{
    grid-template-columns:1fr;
}

.cert-card{
    padding:25px;
}

.cert-card h2{
    font-size:28px;
}

.cert-card img{
    width:220px;
}

}

@media(min-width:769px){

.accreditation-grid{
    display:grid !important;
    grid-template-columns:repeat(2,1fr) !important;
    gap:55px !important;
    max-width:1450px !important;
    margin:60px auto 0 !important;
}

.accreditation-card{
    width:100% !important;
    min-height:650px !important;
    padding:45px !important;
    border-radius:34px !important;
    text-align:center !important;
}

}

@media(min-width:769px){

.accreditations-grid{
    display:grid !important;
    grid-template-columns:repeat(2, 1fr) !important;
    gap:50px !important;
    max-width:1450px !important;
    margin:60px auto 0 !important;
}

.accreditation-card{
    width:100% !important;
    min-height:650px !important;
}

}

.life-academy-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    max-width:1400px;
    margin:auto;
    padding:40px;
}

.life-card{
    border-radius:25px;
    overflow:hidden;
    cursor:pointer;
    transition:0.4s;
}

.life-card:hover{
    transform:translateY(-10px);
}

.life-image{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
}

.life-card img,
.life-image{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    display:block !important;
}

@media(max-width:768px){
  .life-academy-grid{
    grid-template-columns:repeat(2,1fr) !important;
    gap:18px !important;
  }

  .life-card{
    height:220px !important;
  }
}

.life-card{
    cursor:pointer;
}

.life-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.life-popup.active{
    display:flex;
}

.life-popup-box{
    background:#071d36;
    border:1px solid #EFA703;
    border-radius:24px;
    padding:35px;
    width:90%;
    max-width:420px;
    color:white;
    text-align:center;
    position:relative;
}

.life-popup-box h3{
    color:#EFA703;
    margin-bottom:15px;
}

.life-close{
    position:absolute;
    top:12px;
    right:18px;
    font-size:28px;
    cursor:pointer;
    color:#fff;
}

.life-card{
  cursor:pointer !important;
}

.life-popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.7);
justify-content:center;
align-items:center;
z-index:9999;
}

.life-popup.active{
display:flex;
}

.life-popup-box{
background:#041d38;
padding:30px;
width:400px;
border-radius:20px;
border:1px solid #EFA703;
color:white;
text-align:center;
position:relative;
}

.life-close{
position:absolute;
right:20px;
top:10px;
font-size:30px;
cursor:pointer;
}

.life-academy-grid{
display:grid !important;
grid-template-columns:repeat(3,minmax(0,1fr)) !important;
gap:30px !important;
max-width:1400px !important;
margin:50px auto !important;
padding:0 20px !important;
}

.life-card{
position:relative !important;
height:320px !important;
width:100% !important;
border-radius:25px !important;
overflow:hidden !important;
display:block !important;
}

.life-image,
.life-card img{
width:100% !important;
height:100% !important;
object-fit:cover !important;
display:block !important;
border-radius:25px !important;
}

@media(max-width:768px){

.life-academy-grid{
grid-template-columns:repeat(2,1fr) !important;
gap:18px !important;
}

.life-card{
height:220px !important;
}

}

.life-popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.75);
justify-content:center;
align-items:center;
z-index:99999;
}

.life-popup.active{
display:flex !important;
}

.life-popup-box{
background:#071d36;
border:1px solid #EFA703;
width:90%;
max-width:450px;
padding:30px;
border-radius:25px;
position:relative;
text-align:center;
color:#fff;
}

.life-popup-box h3{
color:#EFA703;
margin-bottom:15px;
font-size:28px;
}

.life-close{
position:absolute;
top:10px;
right:18px;
font-size:30px;
cursor:pointer;
}
.life-academy-section .course-heading,
.life-academy-section .cta-heading,
.start-career-heading{
    margin-top:80px !important;
    text-align:center !important;
    clear:both !important;
}

.why-grid{
  display:grid !important;
  grid-template-columns:repeat(4,1fr) !important;
  gap:60px !important;
  max-width:1200px !important;
  margin:80px auto 0 !important;
  padding:0 20px !important;
}

.why-card{
  background:transparent !important;
  border:none !important;
  padding:0 !important;
  min-height:auto !important;
  text-align:center !important;
}

.why-card .icon,
.why-icon{
  width:75px !important;
  height:75px !important;
  border:1.5px solid #ffffff !important;
  border-radius:50% !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  margin:0 auto 22px !important;
  color:#EFA703 !important;
  font-size:30px !important;
}

.why-card h3{
  font-size:18px !important;
  color:#fff !important;
  margin:0 !important;
  font-family:inherit !important;
  font-weight:700 !important;
}

.why-card p{
  display:none !important;
}

@media(max-width:768px){
  .why-grid{
    grid-template-columns:repeat(2,1fr) !important;
    gap:45px 25px !important;
  }
}

@media (max-width:768px){

.hero-section,
.hero-container,
.hero-building{
    width:100% !important;
    height:auto !important;
    padding:0 !important;
    margin:0 !important;
    overflow:visible !important;
}

.hero-building img{
    width:100% !important;
    max-width:100% !important;
    height:auto !important;
    object-fit:contain !important;
    object-position:center !important;
    display:block !important;
}

}

.auto-popup{
  position:fixed;
  inset:0;
  background:rgba(0,21,40,.75);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:999999;
  padding:20px;
}

.auto-popup.show{
  display:flex;
}

.auto-popup-box{
  width:100%;
  max-width:520px;
  background:#001528;
  border:2px solid #EFA703;
  border-radius:24px;
  padding:35px 28px;
  text-align:center;
  position:relative;
}

.popup-x{
  position:absolute;
  top:12px;
  right:18px;
  background:none;
  border:none;
  color:#EFA703;
  font-size:34px;
  cursor:pointer;
}

.popup-logo{
  width:150px;
  margin-bottom:18px;
}

.auto-popup-box h2{
  color:#fff;
  font-size:24px;
  margin-bottom:25px;
}

.auto-popup-box input,
.auto-popup-box select{
  width:100%;
  height:55px;
  margin-bottom:15px;
  border-radius:12px;
  border:1px solid #EFA703;
  background:#08233f;
  color:#fff;
  padding:0 16px;
}

.auto-popup-box button[type="submit"]{
  width:100%;
  height:58px;
  border:0;
  border-radius:50px;
  background:#EFA703;
  color:#001528;
  font-weight:800;
}

html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden !important;
}

*{
  box-sizing:border-box;
}

section,
header,
main,
footer,
.hero,
.hero-section,
.life-academy-section,
.why-section,
.final-cta-section{
  width:100% !important;
  max-width:100% !important;
  overflow-x:hidden !important;
}

@media(max-width:768px){

  body{
    overflow-x:hidden !important;
  }

  .header-container,
  .hero-container,
  .life-academy-container,
  .why-container,
  .final-cta-container{
    width:100% !important;
    max-width:100% !important;
    margin:0 auto !important;
    padding-left:15px !important;
    padding-right:15px !important;
  }

  img{
    max-width:100% !important;
  }

  .life-card,
  .program-card,
  .why-card{
    width:100% !important;
    max-width:100% !important;
  }
}

@media(max-width:768px){

.main-header{
  position:relative !important;
  height:86px !important;
  background:rgba(0,21,40,.92) !important;
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,.25);
}

.header-container{
  height:86px !important;
  padding:0 18px !important;
  display:flex !important;
  justify-content:space-between !important;
}

.header-container .logo img,
.logo img{
  width:95px !important;
  height:auto !important;
}

.phone-link,
.enquire-btn{
  display:none !important;
}

.menu-toggle{
  display:flex !important;
}

.hero,
.hero-section{
  padding:0 !important;
  margin:0 !important;
  background:#001528 !important;
}

.hero-image-container,
.hero-building{
  width:100% !important;
  margin:0 !important;
  padding:0 !important;
}

.hero-image-container img,
.hero-building img{
  width:100% !important;
  height:auto !important;
  display:block !important;
  object-fit:contain !important;
  border-radius:0 !important;
}

.hero-content,
.hero-form-card{
  margin-top:0 !important;
}

}

.life-academy-section{
  padding:80px 0 120px !important;
}

.life-academy-grid{
  width:85% !important;
  max-width:1400px !important;
  margin:0 auto !important;

  display:grid !important;
  grid-template-columns:repeat(3, 1fr) !important;
  gap:35px !important;
}

.life-card{
  width:100% !important;
  height:340px !important;
  border-radius:24px !important;
  overflow:hidden !important;
}

.life-image{
  width:100% !important;
  height:100% !important;
  background-size:cover !important;
  background-position:center !important;
  border-radius:24px !important;
}

.career-line{
    grid-column:1 / span 3 !important;
    text-align:center !important;
    margin-top:40px !important;
    width:100% !important;
}

.career-line h2{
    font-size:32px !important;
    font-weight:300 !important;
    line-height:1.3 !important;
    color:#fff !important;
}

.career-line h2 span{
    color:#EFA703 !important;
}

@media(max-width:768px){

    .career-gallery{
        display:grid !important;
        grid-template-columns:repeat(3,1fr) !important;
        gap:12px !important;
        padding:0 15px !important;
    }

    .career-gallery img{
        width:100% !important;
        height:170px !important;
        object-fit:cover !important;
        border-radius:20px !important;
    }

    .career-line{
        grid-column:1/span 3 !important;
        text-align:center !important;
        margin-top:25px !important;
    }

    .career-line h2{
        font-size:18px !important;
        line-height:1.4 !important;
    }

}
.life-academy-section{
  padding-bottom:160px !important;
}

.life-academy-grid{
  align-items:start !important;
}

.life-card{
  height:340px !important;
}

.life-image{
  height:100% !important;
  background-size:cover !important;
  background-position:center !important;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.small-title{
    display:block;
    color:#EFA703;
    font-size:14px;
    letter-spacing:4px;
    margin-bottom:15px;
}

.section-title h2{
    font-size:52px;
    font-weight:700;
    color:#fff;
    margin-bottom:25px;
}

.section-title h2 span{
    color:#EFA703;
}

.section-title p{
    color:#d6d6d6;
    font-size:22px;
    max-width:900px;
    margin:auto;
    line-height:1.6;
}

@media(max-width:768px){

    .section-title h2{
        font-size:34px;
    }

    .section-title p{
        font-size:16px;
        padding:0 20px;
    }
}

#leadPopup,
.popup-overlay,
.popup-container {
    display: none !important;
}
/* Hide only our custom/yellow popup */
.popup-overlay:not(.b24-widget-button-position-bottom-right),
.popup-modal:not(.b24-form),
.popup-box,
.popup-content,
.auto-popup,
.custom-popup {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}