/* ===========================
RESET
=========================== */

* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;

  color: #222;

  background: #fff;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  width: 100%;

  display: block;
}

/* ===========================
CONTAINER
=========================== */

.container {
  width: 90%;

  max-width: 1200px;

  margin: auto;
}

/* ===========================
HEADER
=========================== */

.header {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  background: aquamarine;

  z-index: 999;

  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.header .container {
  height: 90px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

/* Logo */

.logo img {
  width: 130px;
}

/* Navigation */

.nav-menu ul {
  display: flex;

  align-items: center;

  gap: 35px;
}

.nav-menu a {
  color: black;

  font-size: 15px;

  font-weight: 500;
}

.nav-menu a:hover {
  color: white;
}

/* Apply Button */

.apply-btn {
  background: #0b1f3a;

  color: #fff;

  padding: 14px 26px;

  border-radius: 8px;

  font-weight: 500;
}

.apply-btn:hover {
  background: #0b1f3a;
}

/* Hamburger */

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}
/* ===========================
HERO SECTION
=========================== */

.hero {
  position: relative;
  margin-top: 90px;
  min-height: 650px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("images/ala.jfif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  color: #fff;
  padding-top: 10px;
}
.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero-content h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 25px;
  color: #f2f2f2;
}

.hero-content p {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.8;
  color: #f5f5f5;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  max-width: 520px;
  width: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}
/* ===========================
PROGRAM INFO
=========================== */

.program-info {
  position: relative;
  margin-top: 50px;
  z-index: 10;
  padding-bottom: 100px;
}

.info-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.info-card {
  background: #102a43;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.info-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #c9a24a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.info-title {
  display: block;
  font-size: 14px;
  color: white;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-card h3 {
  font-size: 24px;
  color: white;
  margin-bottom: 12px;
}

.info-card p {
  color: white;
  font-size: 15px;
  line-height: 1.7;
}
/* ===========================
PROGRAM OVERVIEW
=========================== */

.program-overview {
  padding-top: 30px;
  background: aquamarine;
  min-height: auto;
}

.overview-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.overview-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.section-subtitle {
  display: inline-block;
  color: black;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-size: 14px;
}

.overview-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  line-height: 1.2;
  color: black;
  margin-bottom: 25px;
}

.overview-content p {
  color: black;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

.overview-features {
  margin: 35px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  font-size: 16px;
  color: black;
}

.feature-item i {
  color: goldenrod;
  font-size: 20px;
}
/* ===========================
LEARNING & CAREER
=========================== */

.learning-career {
  padding: 100px 0;
  background: #f8f9fb;
}

.learning-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.learning-card,
.career-card {
  background: black;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.learning-card h2,
.career-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin: 15px 0 20px;
  color: #c9a24a;
}

.learning-card p,
.career-card p {
  color: White;
  line-height: 1.8;
  margin-bottom: 30px;
}

.learning-list,
.career-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.learning-list li,
.career-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  color: White;
  font-size: 16px;
}

.learning-list i {
  color: #c9a24a;
}

.career-list i {
  color: #c9a24a;
}
/* ===========================
WHY CHOOSE
=========================== */

.why-choose {
  padding-top: 10px;
  padding-bottom: 40px;
  min-height: 400px;
  background: #fff;
}

.section-heading {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.section-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: #222;
  margin: 15px 0 20px;
}

.section-heading p {
  color: #666;
  line-height: 1.8;
}

.choose-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.choose-card {
  background: #fff;
  padding: 35px 25px;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.choose-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: #c9a24a;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
}

.choose-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #222;
}

.choose-card p {
  color: #666;
  line-height: 1.7;
  font-size: 15px;
}
/* ===========================
CALL TO ACTION
=========================== */

.cta {
  padding: 100px 0;
  background: rgb(1, 1, 43);
  color: #fff;
  text-align: center;
}

.cta-content {
  max-width: 750px;
  margin: auto;
}

.cta .section-subtitle {
  color: #ffd9d9;
}

.cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  margin: 20px 0;
  color: #fff;
}

.cta p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: #c9a24a;
  color: #0b1f3a;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #0b1f3a;
}
/* ===========================
FOOTER
=========================== */

.footer {
  background: #111;
  color: #ccc;
  padding-top: 80px;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 20px;
}

.footer-column p,
.footer-column li {
  line-height: 1.9;
  margin-bottom: 12px;
}

.footer-column h3 {
  color: #fff;
  margin-bottom: 25px;
}

.footer-column a {
  color: #ccc;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #fff;
}

.footer-column i {
  color: #c9a24a;
  margin-right: 10px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: white;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.footer-social a:hover {
  background: white;
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  text-align: center;
  margin-top: 60px;
  padding: 25px 0;
  font-size: 15px;
}
/* ===========================
RESPONSIVE
=========================== */

@media (max-width: 992px) {
  .apply-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero-container,
  .overview-wrapper,
  .learning-wrapper {
    grid-template-columns: 1fr;
    display: grid;
    text-align: center;
  }

  .hero-image {
    justify-content: center;
  }

  .info-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .choose-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content h2 {
    font-size: 22px;
  }

  .overview-content h2,
  .learning-card h2,
  .career-card h2,
  .section-heading h2,
  .cta h2 {
    font-size: 32px;
  }

  .info-wrapper,
  .choose-wrapper,
  .footer-wrapper {
    grid-template-columns: 1fr;
  }

  .learning-card,
  .career-card,
  .choose-card,
  .info-card {
    padding: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
/* ===== HEADER SCROLL ===== */

.header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ===== MOBILE MENU ===== */

@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 90px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 90px);
    background: aquamarine;
    transition: 0.35s;
    padding: 40px 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.08);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }
}
/* ===========================
DROPDOWN MENU
=========================== */

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;

  min-width: 230px;

  background: #fff;

  border-radius: 10px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);

  opacity: 0;
  visibility: hidden;

  transform: translateY(10px);

  transition: 0.3s;

  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 14px 20px;
  color: #222;
}

.dropdown-menu a:hover {
  background: #0b1f3a;
  color: #fff;
}
