
.courses-section {
  padding: 80px 20px;
  max-width: 1450px;
  margin: auto;
  text-align: center;
}

.section-header .subheading {
  font-size: 12px;
  color: #cba44d;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-header h2 {
  font-size: 36px;
  margin: 0;
  font-weight: 500;
}

.section-header .intro {
  font-size: 14px;
  color: #666;
  margin: 15px auto 40px;
  max-width: 600px;
}

/* ✅ FIX: prevent stretching and center when one item */
.courses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}


.course-card {
  flex: 0 0 350px;
  max-width: 100%;
  width: 100%;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-align: left;
  padding: 16px;
  display: flex;
  flex-direction: column;
}


.card-info div + a {
  font-size: 19px;
  line-height: 30px;
  color: #2a2a2a;
  text-decoration: none;
  font-weight: bold;
}

.meta .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 55px;
}

.course-card:hover {
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.course-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
}

.card-content {
  padding: 20px;
}

.card-meta {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}

.card-content h3 {
  font-size: 16px;
  margin: 10px 0;
  color: #222;
}

.card-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.read-more {
  font-size: 14px;
  color: #cba44d;
  font-weight: bold;
  text-decoration: none;
  transition: .3s;
}

.read-more span {
  transition: .3s;
}

.read-more:hover {
  text-decoration: underline;
}

.read-more:hover span {
  margin-left: 5px;
}

.meta i {
  color: #cba44d;
  margin-right: 6px;
}

.meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

img {
  display: block;
}

.meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

/* 🔁 Responsive Styles */
@media (max-width: 1024px) {
  .courses-section {
    padding: 60px 20px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .section-header .intro {
    font-size: 13px;
    max-width: 500px;
  }

  .card-content h3 {
    font-size: 15px;
  }

  .card-content p {
    font-size: 13px;
  }

  .read-more {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 28px;
  }

  .section-header .intro {
    font-size: 13px;
    max-width: 100%;
  }

  .courses-grid {
    gap: 20px;
  }

  .course-card {
    padding: 14px;
  }

  .card-content {
    padding: 16px;
  }

  .card-content p {
    font-size: 13px;
  }

  .read-more {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 22px;
  }

  .section-header .intro {
    font-size: 12px;
    margin: 10px auto 30px;
  }

  .card-content h3 {
    font-size: 14px;
  }

  .card-content p {
    font-size: 12px;
  }

  .read-more {
    font-size: 12px;
  }

  .course-card img {
    height: 180px;
  }

  .courses-grid {
    gap: 16px;
  }
}

/* View All Button */
.view-all-wrapper {
  margin-top: 60px;
}

.view-all-btn {
  background-color: #002147;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s;
}

.view-all-btn:hover {
  background-color: #003c80;
}

/*About us*/
.about-gaa {
  padding: 140px 0; /* more vertical space */
  background-color: #faf8f8;
  font-family: 'Suisse Int\'l', sans-serif;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px; /* more space between image and text */
  max-width: 1450px; /* wider container */
  margin: auto;
  flex-wrap: wrap;
  padding-inline: 20px;
}

.about-image {
  flex: 1.1;
  max-width: 600px; /* increased */
  border-radius: 24px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 38px; /* increased from 32px */
  color: #111;
  font-weight: 700;
  margin-bottom: 28px;
}

.about-text p {
  font-size: 18px; /* increased from 16px */
  color: #444;
  line-height: 1.8;
  margin-bottom: 28px;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.features li {
  font-size: 17px;
  color: #222;
  margin-bottom: 14px;
}

.features li i {
  color: #0e4b8c;
  margin-right: 10px;
}

/* CTA Button */
.learn-more-btn {
  display: inline-block;
  background-color: #002147;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.learn-more-btn span {
  margin-left: 8px;
}

.learn-more-btn:hover {
  background-color: #003c80;
}



/* Statistics Section */
.statistics {
  background: url('https://via.placeholder.com/1200x400?text=Jet+Background') no-repeat center/cover;
  padding: 60px 20px;
  color: #fff;
  position: relative;
}

.statistics .overlay {
  background: rgba(0, 24, 64, 0.85);
  padding: 40px 20px;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.stat h3 {
  font-size: 40px;
  margin-bottom: 10px;
}

.stat p {
  font-size: 16px;
}


/*Stats section*/
.stats-section {
  background: url('Assets/Bg-pNg-1-2 1.png');
  padding: 60px 0;
  color: white;
  position: relative;
}

.stats-overlay {
  background-color: rgba(0, 16, 40, 0.8); /* dark overlay */
  padding: 60px 20px;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 110px;
  flex-wrap: wrap;
  text-align: center;
}

.stat-box {
  flex: 1;
  min-width: 200px;
}

.stat-box i {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
}

.stat-box h2 {
  font-size: 36px;
  margin: 0;
  font-weight: 700;
}

.stat-box sup {
  font-size: 18px;
  vertical-align: top;
}

.stat-box p {
  margin: 10px 0;
  font-size: 16px;
}

.underline {
  display: block;
  height: 2px;
  width: 50px;
  background: #fff;
  margin: 10px auto 0;
}



/* News Section */
.news-section {
  max-width: 1450px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
}

.section-header .subtitle {
  color: #b48c4a;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-header .title {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 16px 0;
}

.section-header .description {
  font-size: 1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

/* Cards Layout */
.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

/* News Card */
.news-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  width: 420px;
  padding: 28px;
  text-align: left;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.news-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.news-card a + a {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 14px;
  line-height: 1.5;
}

.card-description {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 24px;
}

.read-more {
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #004080;
  text-decoration: none;
  border-top: 1px solid #ddd;
  padding-top: 12px;
  display: inline-block;
  font-weight: 600;
}

.swiper {
  padding-bottom: 50px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .news-card {
    width: 100%;
  }
}


.partners-section {
  background-color: #faf8f8;
  padding: 60px 0;
  overflow: hidden;
}

.partners-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.partners-scroll {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 0;
  width: 100%;
  scrollbar-width: none;
}

.partners-scroll::-webkit-scrollbar {
  display: none;
}

.partners-container {
  display: flex;
  gap: 40px; /* controls space between logos */
  padding: 0 60px;
}

.partners-container img {
  height: 130px;
  object-fit: contain;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: calc((100% - 4 * 40px) / 5); /* 5 logos with 4 gaps between */
}


.partners-container img:hover {
  transform: scale(1.05);
}

/* Arrows */
.scroll-btn {
  background: transparent;
  border: none;
  font-size: 32px;
  color: #004080;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

/* Add spacing before arrows */
.scroll-btn.left {
  left: 20px; /* ⬅ space from left */
}

.scroll-btn.right {
  right: 20px; /* ➡ space from right */
}



/*responsive*/
/* ------------------- MEDIA QUERIES ------------------- */

/* Tablets (≤1024px) */
@media (max-width: 1024px) {
  .hero-wrapper {
    padding-left: 40px;
    padding-right: 20px;
    text-align: center;
    justify-content: center;
  }

  .hero-content {
    padding-left: 0;
  }
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image,
  .about-text {
    max-width: 100%;
  }

  .courses-grid {
    flex-wrap: wrap;
    justify-content: center;
    padding-inline: 20px;
  }

  .course-card,
  .course-card.wide {
    flex: 0 0 100%;
  }

  .stats-container {
    gap: 60px;
    justify-content: center;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .description {
    font-size: 1.2rem;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 16px;
  }

  .stat h3 {
    font-size: 28px;
  }

  .partners-container {
    gap: 20px;
    padding: 0 20px;
  }

  .partners-container img {
    width: 120px;
    height: auto;
  }

  .view-all-btn,
  .learn-more-btn {
    width: 100%;
    text-align: center;
  }
  .banner {
	position: relative;
	height: 96vh;
	overflow: hidden;
	background-color: #000;
}
}
