/* ==========================================
   ROOT VARIABLES
========================================== */

:root {
  --primary-blue: #003b95;
  --dark-blue: #001e5a;
  --gold: #f5b400;
  --gold-dark: #c88700;
  --white: #ffffff;
  --light-bg: #f7faff;
  --text-dark: #1b2430;
  --text-muted: #667085;
}

/* ==========================================
   GLOBAL STYLES
========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background: var(--light-bg);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ==========================================
   HEADER
========================================== */

/* Top Bar */
.top-bar {
  background: var(--dark-blue);
  color: var(--white);
  font-size: 14px;
  padding: 10px 0;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 35px rgba(0, 30, 90, 0.08);
}

.nav-wrapper {
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 58px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 16px;
  position: relative;
  transition: 0.3s ease;
}

.main-nav a:hover {
  transform: translateY(-2px);
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--primary-blue);
}

.main-nav a::after {
  content: "";
  width: 0;
  height: 3px;
  background: var(--gold);
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: 0.3s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-btn {
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: var(--white);
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.35s ease;
  box-shadow: 0 12px 25px rgba(0, 59, 149, 0.25);
}

.nav-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(0, 59, 149, 0.35);
}

/* Premium Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 38px;
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 25px 60px rgba(0, 30, 90, 0.15);
  display: none;
  z-index: 999;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: #f7faff;
  transform: none;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-wide {
  min-width: 360px;
}

.dropdown-soon {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
  cursor: not-allowed;
  opacity: 0.75;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-btn,
.menu-toggle {
  border: none;
  background: #f7faff;
  color: var(--dark-blue);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  font-weight: 800;
}

.menu-toggle {
  display: none;
}

/* ==========================================
   HERO SECTION
========================================== */

/* Hero */
.hero-section {
  min-height: calc(100vh - 130px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(
      circle at top right,
      rgba(245, 180, 0, 0.18),
      transparent 35%
    ),
    linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 50px;
}

.hero-tag {
  display: inline-block;
  background: rgba(0, 59, 149, 0.08);
  color: var(--primary-blue);
  padding: 10px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 30px;
  font-weight: 800;
  margin-bottom: 22px;
}

.hero-content h1 {
  font-size: 64px;
  line-height: 1.08;
  color: var(--dark-blue);
  margin-bottom: 16px;
  font-weight: 900;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 40px;
  font-weight: 800;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 59, 149, 0.28);
}

.btn-secondary {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  background: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark-blue);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: var(--white);
}

/* Hero Image */
.hero-image {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #f3f7ff);
  padding: 26px;
  border-radius: 34px;
  box-shadow: 0 35px 80px rgba(0, 30, 90, 0.16);
  border: 1px solid rgba(0, 59, 149, 0.1);
  overflow: hidden;
  animation: floatCard 6s ease-in-out infinite;
}

.hero-image img {
  width: 100%;
  display: block;
  border-radius: 22px;
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: scale(1.03);
}

.hero-image::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(245, 180, 0, 0.18);
  border-radius: 50%;
  top: -55px;
  right: -55px;
}

.hero-image::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  background: rgba(0, 59, 149, 0.1);
  border-radius: 50%;
  bottom: -45px;
  left: -45px;
}

@keyframes floatCard {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }

  100% {
    transform: translateY(0);
  }
}

.hero-slogan {
  font-size: 24px;
  color: var(--dark-blue);
  margin-bottom: 22px;
  font-weight: 700;
}

.hero-slogan span {
  color: var(--gold);
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-points span {
  background: var(--white);
  color: var(--dark-blue);
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 30, 90, 0.08);
}

/* ==========================================
   STATISTICS
========================================== */

.stats-section {
  margin-top: -40px;
  position: relative;
  z-index: 5;
  margin-bottom: 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: #fff;
  border-radius: 22px;
  padding: 35px 20px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0, 30, 90, 0.08);
  transition: all 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 30, 90, 0.14);
}

.stat-icon {
  font-size: 38px;
  margin-bottom: 15px;
}

.stat-card h3 {
  font-size: 36px;
  color: var(--primary-blue);
  font-weight: 800;
  margin-bottom: 8px;
}

.stat-card p {
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================
   WHY CHOOSE US
========================================== */

.why-section {
  padding: 90px 0;
  background: #f7faff;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-heading span {
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: 46px;
  color: var(--dark-blue);
  margin: 12px 0 18px;
}

.section-heading p {
  color: var(--text-muted);
  line-height: 1.8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.why-card {
  background: #fff;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 20px 45px rgba(0, 30, 90, 0.08);
  transition: all 0.35s ease;
  border-top: 5px solid transparent;
}

.why-card:hover {
  transform: translateY(-10px);
  border-top-color: var(--gold);
  box-shadow: 0 30px 60px rgba(0, 30, 90, 0.14);
}

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(0, 59, 149, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 34px;
  margin-bottom: 25px;
}

.why-card h3 {
  color: var(--dark-blue);
  margin-bottom: 14px;
  font-size: 24px;
}

.why-card p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* ==========================================
   UNIVERSITIES SECTION
========================================== */

.universities-section {
  padding: 90px 0;
  background: #ffffff;
}

.universities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.university-card {
  background: #fff;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 20px 45px rgba(0, 30, 90, 0.08);
  transition: 0.35s;
  border-top: 5px solid transparent;
}

.university-card:hover {
  transform: translateY(-10px);
  border-top: 5px solid var(--gold);
  box-shadow: 0 30px 60px rgba(0, 30, 90, 0.14);
}

.university-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(0, 59, 149, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 25px;
}

.university-card h3 {
  color: var(--dark-blue);
  font-size: 24px;
  margin-bottom: 10px;
}

.university-card p {
  color: var(--text-muted);
  margin-bottom: 22px;
}

.university-link {
  display: inline-block;
  text-decoration: none;
  color: var(--primary-blue);
  font-weight: 700;
  transition: 0.3s;
}

.university-link:hover {
  color: var(--gold-dark);
}

/* ==========================================
   UNIVERSITY ABOUT SECTION
========================================== */

.about-university-section {
  padding: 90px 0;
  background: #ffffff;
}

.about-university-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  background: #f7faff;
  padding: 40px;
  border-radius: 28px;
  box-shadow: 0 20px 45px rgba(0, 30, 90, 0.08);
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 320px;
  display: block;
  margin: auto;
}

.about-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 17px;
}

.about-list {
  list-style: none;
  margin-top: 25px;
}

.about-list li {
  background: #f7faff;
  margin-bottom: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  color: var(--dark-blue);
  font-weight: 600;
}

/* ==========================================
   UNIVERSITY QUICK FACTS
========================================== */

.university-facts-section {
  padding: 90px 0;
  background: #f7faff;
}

.university-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fact-box {
  background: #ffffff;
  padding: 35px 20px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0, 30, 90, 0.08);
  transition: all 0.35s ease;
}

.fact-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 30, 90, 0.14);
}

.fact-box h3 {
  font-size: 34px;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.fact-box p {
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================
   UNIVERSITY OVERVIEW
========================================== */

.overview-section {
  padding: 90px 0;
  background: #ffffff;
}

.overview-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;

  gap: 50px;

  background: linear-gradient(135deg, #003b95, #001e5a);

  border-radius: 30px;

  padding: 60px;

  color: white;

  box-shadow: 0 30px 80px rgba(0, 30, 90, 0.2);
}

.overview-country {
  display: inline-block;

  padding: 8px 18px;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.15);

  font-weight: 700;

  margin-bottom: 18px;
}

.overview-left h2 {
  font-size: 52px;

  margin-bottom: 20px;
}

.overview-left p {
  line-height: 1.9;

  opacity: 0.92;

  margin-bottom: 35px;
}

.overview-buttons {
  display: flex;

  gap: 18px;

  flex-wrap: wrap;
}

.overview-right {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;
}

.overview-stat {
  background: rgba(255, 255, 255, 0.12);

  padding: 30px;

  border-radius: 20px;

  text-align: center;

  backdrop-filter: blur(12px);

  transition: 0.3s;
}

.overview-stat:hover {
  transform: translateY(-6px);

  background: rgba(255, 255, 255, 0.18);
}

.overview-stat h3 {
  font-size: 34px;

  margin-bottom: 8px;

  color: #ffd54a;
}

.overview-stat span {
  font-size: 15px;

  opacity: 0.9;
}

/* ==========================================
   POPULAR PROGRAMS
========================================== */

.programs-section {
  padding: 90px 0;
  background: #f7faff;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.program-card {
  background: white;
  border-radius: 28px;
  padding: 32px;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 45px rgba(0, 30, 90, 0.08);
  transition: 0.35s;
  border-top: 5px solid transparent;
}

.program-card:hover {
  transform: translateY(-10px);

  border-top-color: var(--gold);

  box-shadow: 0 30px 70px rgba(0, 30, 90, 0.15);
}

.program-icon {
  width: 75px;
  height: 75px;

  border-radius: 20px;

  background: rgba(0, 59, 149, 0.08);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 38px;

  margin-bottom: 25px;
}

.program-card h3 {
  color: var(--dark-blue);

  font-size: 25px;

  margin-bottom: 20px;
}

.program-card ul {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.program-card li {
  margin-bottom: 12px;

  color: var(--text-muted);
}

.program-card li::before {
  content: "✔ ";

  color: green;

  font-weight: bold;
}

.program-btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 40px;
  background: var(--primary-blue);
  color: white;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;

  margin-top: auto; /* <-- Add this */
}

.program-btn:hover {
  background: var(--gold);

  color: var(--dark-blue);
}

/* ==========================================
   ADMISSION REQUIREMENTS
========================================== */

.requirements-section {
  padding: 90px 0;
  background: #ffffff;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.requirement-card {
  background: #f7faff;
  border-radius: 28px;
  padding: 35px;
  box-shadow: 0 20px 45px rgba(0, 30, 90, 0.08);
  transition: 0.35s;
  border-left: 5px solid transparent;
}

.requirement-card:hover {
  transform: translateY(-8px);
  border-left-color: var(--gold);
  box-shadow: 0 30px 60px rgba(0, 30, 90, 0.14);
}

.requirement-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(0, 59, 149, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 24px;
}

.requirement-card h3 {
  color: var(--dark-blue);
  font-size: 24px;
  margin-bottom: 20px;
}

.requirement-card ul {
  list-style: none;
}

.requirement-card li {
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.7;
}

.requirement-card li::before {
  content: "✔ ";
  color: green;
  font-weight: bold;
}

/* ==========================================
   TUITION SECTION
========================================== */

.tuition-section {
  padding: 90px 0;
  background: #ffffff;
}

.tuition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tuition-card {
  background: white;
  padding: 35px;
  border-radius: 28px;
  box-shadow: 0 20px 45px rgba(0, 30, 90, 0.08);
  transition: 0.35s;
  border-top: 5px solid transparent;
}

.tuition-card:hover {
  transform: translateY(-10px);
  border-top-color: var(--gold);
  box-shadow: 0 30px 70px rgba(0, 30, 90, 0.15);
}

.tuition-icon {
  width: 75px;
  height: 75px;
  border-radius: 20px;
  background: rgba(0, 59, 149, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 38px;
  margin-bottom: 25px;
}

.tuition-card h3 {
  color: var(--dark-blue);
  margin-bottom: 20px;
  font-size: 24px;
}

.tuition-card h2 {
  color: var(--primary-blue);
  font-size: 38px;
  margin-bottom: 15px;
}

.tuition-card ul {
  list-style: none;
}

.tuition-card li {
  margin-bottom: 12px;
  color: var(--text-muted);
}

.tuition-card li::before {
  content: "✔ ";
  color: green;
  font-weight: bold;
}

.tuition-card p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* ==========================================
   SCHOLARSHIPS
========================================== */

.scholarships-section {
  padding: 90px 0;
  background: #ffffff;
}

.scholarships-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.scholarship-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0, 30, 90, 0.08);
  transition: 0.35s;
  border-top: 5px solid transparent;
}

.scholarship-card:hover {
  transform: translateY(-10px);
  border-top-color: var(--gold);
  box-shadow: 0 30px 70px rgba(0, 30, 90, 0.15);
}

.scholarship-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 25px;
  border-radius: 20px;
  background: rgba(0, 59, 149, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
}

.scholarship-card h3 {
  font-size: 24px;
  color: var(--dark-blue);
  margin-bottom: 18px;
}

.scholarship-card p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* ==========================================
   CAMPUS LIFE
========================================== */

.campus-section {
  padding: 90px 0;
  background: #ffffff;
}

.campus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.campus-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0, 30, 90, 0.08);
  transition: all 0.35s ease;
  border-top: 5px solid transparent;
}

.campus-card:hover {
  transform: translateY(-10px);
  border-top-color: var(--gold);
  box-shadow: 0 30px 70px rgba(0, 30, 90, 0.15);
}

.campus-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 25px;
  border-radius: 20px;
  background: rgba(0, 59, 149, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 38px;
}

.campus-card h3 {
  font-size: 24px;
  color: var(--dark-blue);
  margin-bottom: 18px;
}

.campus-card p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* ==========================================
   GALLERY
========================================== */

.gallery-section {
  padding: 90px 0;
  background: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 24px;
}

.gallery-item {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 30, 90, 0.08);
  background: #f7faff;
}

.gallery-large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* ==========================================
   STUDENT PARK CTA
========================================== */

.cta-section {
  padding: 100px 0;
  background: #f7faff;
}

.cta-card {
  background: linear-gradient(135deg, #003b95, #001e5a);
  color: #ffffff;
  text-align: center;
  padding: 70px 60px;
  border-radius: 35px;
  box-shadow: 0 35px 80px rgba(0, 30, 90, 0.22);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  top: -120px;
  right: -80px;
}

.cta-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(245, 180, 0, 0.12);
  border-radius: 50%;
  bottom: -100px;
  left: -80px;
}

.cta-tag {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 700;
  margin-bottom: 24px;
}

.cta-card h2 {
  font-size: 48px;
  margin-bottom: 22px;
  line-height: 1.2;
}

.cta-card p {
  max-width: 760px;
  margin: auto;
  line-height: 1.9;
  opacity: 0.92;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-features span {
  background: rgba(255, 255, 255, 0.12);
  padding: 12px 20px;
  border-radius: 40px;
  font-weight: 600;
}

/* ==========================================
   FOOTER
========================================== */

.site-footer {
  background: var(--dark-blue);
  color: #ffffff;
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand img {
  width: 180px;
  background: #ffffff;
  padding: 10px;
  border-radius: 14px;
  margin-bottom: 22px;
}

.footer-brand p {
  line-height: 1.8;
  opacity: 0.85;
}

.footer-links h3,
.footer-contact h3 {
  color: var(--gold);
  margin-bottom: 22px;
  font-size: 22px;
}

.footer-links a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 12px;
  opacity: 0.85;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
  opacity: 1;
  transform: translateX(5px);
}

.footer-contact p {
  margin-bottom: 12px;
  opacity: 0.85;
  line-height: 1.6;
}

.footer-soon {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
  opacity: 0.55;
  font-weight: 600;
  cursor: not-allowed;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 900px) {
  .top-bar-content,
  .nav-wrapper {
    flex-direction: column;
    height: auto;
    padding: 14px 0;
    text-align: center;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .brand img {
    height: 50px;
    width: auto;
  }

  .stats-grid,
  .why-grid,
  .universities-grid {
    grid-template-columns: 1fr;
  }

  .about-university-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .university-facts-grid {
    grid-template-columns: 1fr;
  }

  .overview-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .overview-right {
    grid-template-columns: repeat(2, 1fr);
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .tuition-grid {
    grid-template-columns: 1fr;
  }

  .scholarships-grid {
    grid-template-columns: 1fr;
  }

  .campus-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-large {
    grid-row: span 1;
  }

  .cta-card {
    padding: 50px 30px;
  }

  .cta-card h2 {
    font-size: 34px;
  }

  .cta-features {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links a:hover {
    transform: none;
  }
}

/* ==========================================
   ADMIN-MANAGED UNIVERSITY LOGOS
========================================== */

.university-logo-card {
  display: flex;
  flex-direction: column;
}

.university-logo-wrap {
  width: 100%;
  height: 120px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 59, 149, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  margin-bottom: 24px;
  box-shadow: 0 10px 24px rgba(0, 30, 90, 0.05);
}

.university-logo-wrap img {
  max-width: 100%;
  max-height: 86px;
  object-fit: contain;
  display: block;
}

.compact-hero {
  min-height: auto;
}

/* ==========================================
   COUNTRY VISUAL SECTIONS
========================================== */

.country-visual-section {
  padding: 90px 0;
  background: #ffffff;
}

.country-visual-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
  background: #f7faff;
  border-radius: 32px;
  padding: 35px;
  box-shadow: 0 25px 60px rgba(0, 30, 90, 0.1);
}

.country-visual-image {
  border-radius: 26px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 20px 45px rgba(0, 30, 90, 0.12);
}

.country-visual-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: 0.45s ease;
}

.country-visual-card:hover .country-visual-image img {
  transform: scale(1.04);
}

.country-visual-content span {
  color: var(--gold-dark);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.country-visual-content h2 {
  color: var(--dark-blue);
  font-size: 42px;
  line-height: 1.2;
  margin: 14px 0 18px;
}

.country-visual-content p {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 17px;
}

/* ==========================================
   SERVICES PAGE
========================================== */

.services-section {
  padding: 90px 0;
  background: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 20px 45px rgba(0, 30, 90, 0.08);
  transition: 0.35s ease;
  border-top: 5px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-top-color: var(--gold);
  box-shadow: 0 30px 70px rgba(0, 30, 90, 0.15);
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 24px;
  background: #f7faff;
}

.service-card h3 {
  color: var(--dark-blue);
  font-size: 24px;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .country-visual-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .country-visual-content h2 {
    font-size: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   DESTINATION FLAGS
========================================== */
.destination-flag-icon {
  overflow: hidden;
}

.destination-flag-img {
  width: 66px;
  height: 44px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(0, 30, 90, 0.12);
  box-shadow: 0 8px 18px rgba(0, 30, 90, 0.12);
  display: block;
}

/* ==========================================
   CONTACT PAGE
========================================== */
.contact-section {
  padding: 90px 0;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: stretch;
}

.contact-card,
.map-card {
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0, 30, 90, 0.09);
  overflow: hidden;
}

.contact-card {
  padding: 38px;
}

.section-kicker,
.modal-tag {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.contact-card h2 {
  color: var(--dark-blue);
  font-size: 34px;
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--text-muted);
  line-height: 1.8;
}

.contact-list {
  margin: 24px 0;
}

.contact-list p {
  margin-bottom: 12px;
}

.contact-actions,
.contact-socials,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.contact-socials a,
.footer-socials a {
  text-decoration: none;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  padding: 9px 14px;
  border-radius: 30px;
  font-weight: 700;
}

.contact-card .contact-socials a {
  color: var(--primary-blue);
  background: #eef4ff;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}

/* ==========================================
   APPLY POPUP + WHATSAPP
========================================== */
body.modal-open {
  overflow: hidden;
}

.apply-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.apply-modal.active {
  display: flex;
}

.apply-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 18, 55, 0.62);
  backdrop-filter: blur(8px);
}

.apply-modal-card {
  position: relative;
  width: 760px;
  max-width: 96vw;
  max-height: 92vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 30px;
  padding: 38px;
  box-shadow: 0 40px 90px rgba(0, 30, 90, 0.28);
}

.apply-modal-card h2 {
  color: var(--dark-blue);
  font-size: 34px;
  margin-bottom: 10px;
}

.apply-modal-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.apply-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #eef4ff;
  color: var(--dark-blue);
  font-size: 26px;
  cursor: pointer;
}

.apply-form label {
  display: block;
  color: var(--dark-blue);
  font-weight: 800;
  margin-bottom: 16px;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #d7e0ef;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(0, 59, 149, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9998;
  text-decoration: none;
  background: #25d366;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.22);
}

@media (max-width: 900px) {
  .contact-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .map-card iframe {
    min-height: 360px;
  }

  .apply-modal-card {
    padding: 28px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

.notice-section { padding: 30px 0 0; background: #ffffff; }
.success-notice, .error-notice {
  padding: 16px 20px;
  border-radius: 18px;
  font-weight: 700;
  text-align: center;
}
.success-notice { background: #ecfdf3; color: #07823f; }
.error-notice { background: #fff1f0; color: #d92d20; }

/* ==========================================================
   PRIVACY POLICY
========================================================== */

.page-banner {
    background: linear-gradient(135deg, #0a2d73, #164fb3);
    color: #fff;
    padding: 90px 0 70px;
    text-align: center;
}

.page-banner h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 18px;
    opacity: 0.9;
}

.privacy-section {
    background: #f8f9fc;
    padding: 70px 0;
}

.policy-card {
    max-width: 950px;
    margin: auto;
    background: #fff;
    padding: 50px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.policy-card p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.policy-card h2 {
    margin-top: 35px;
    margin-bottom: 15px;
    color: #0a2d73;
    font-size: 26px;
    font-weight: 700;
    border-left: 5px solid #f5b400;
    padding-left: 15px;
}

.policy-card ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

.policy-card li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #555;
}

@media (max-width: 768px) {

    .page-banner{
        padding:70px 20px 50px;
    }

    .page-banner h1{
        font-size:34px;
    }

    .policy-card{
        padding:30px 22px;
    }

    .policy-card h2{
        font-size:22px;
    }

}   /* <-- CLOSE THE MEDIA QUERY HERE */


/* ==========================================================
   FOOTER BOTTOM
========================================================== */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    margin-top:50px;
    padding:25px 20px;
    text-align:center;
}

.footer-bottom p{
    margin:0;
    color:#ffffff;
    font-size:15px;
    line-height:1.8;
}

/* ===== Footer Bottom Link ===== */

.site-footer .footer-bottom p a,
.site-footer .footer-bottom p a:link,
.site-footer .footer-bottom p a:visited,
.site-footer .footer-bottom p a:active{
    color:#f5b400 !important;
    text-decoration:none !important;
    font-weight:600;
    transition:all .3s ease;
}

.site-footer .footer-bottom p a:hover,
.site-footer .footer-bottom p a:focus{
    color:#ffffff !important;
    text-decoration:underline !important;
}

.site-footer .footer-divider{
    color:rgba(255,255,255,.55);
    margin:0 14px;
}