* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

:root {
  --premium-bg: #f6f1e8;
  --premium-bg-soft: #fbf8f2;
  --premium-surface: #ffffff;
  --premium-surface-alt: #efe7da;
  --premium-ink: #122033;
  --premium-ink-soft: #516172;
  --premium-navy: #14263a;
  --premium-navy-deep: #0d1b2a;
  --premium-gold: #c8a05a;
  --premium-gold-strong: #b38841;
  --premium-gold-soft: rgba(200, 160, 90, 0.16);
  --premium-border: rgba(18, 32, 51, 0.10);
  --premium-shadow: rgba(15, 26, 42, 0.10);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: #dbdbdb;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 999;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 60px;
}

/* Nav */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links li {
  position: relative;
}

.nav-links li.dropdown {
  padding-bottom: 10px;
  margin-bottom: -10px;
}

.nav-links a {
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}

.nav-links a svg {
  display: block;
  flex-shrink: 0;
}

.nav-links a:hover {
  color: #860303;
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  min-width: 180px;
  display: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  border-radius: 5px;
}

.dropdown-menu li {
  padding: 10px 15px;
}

.dropdown-menu li a {
  color: #000000;
}

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

.dropdown.active .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

/*mobile menu toggle*/
.menu-toggle{
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Apply Button */
.apply-btn {
  background: #000000;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 5px;
}

.apply-btn:hover{
  background: #14075c;
}

/*NEWS & UPDATES*/
.news-section {
  padding: 20px 0;
  background: #f5f7fa;
}

.news-container {
  overflow: hidden;
  background: #002147;
  padding: 15px 0;
}

/* INFINITE GALLERY */
.news-track {
  display: flex;
  width: max-content;
  animation: scrollGallery 185s linear infinite;
}

/* IMAGE */
.news-track img {
  width: 200px;
  height: 145px;
  object-fit: cover;
  margin-right: 14px;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.5s ease, filter 0.5s ease;
}

/* HOVER EFFECT */
.news-track img:hover {
  transform: scale(1.15);
  filter: brightness(1.2);
  z-index: 2;
  border-radius: 5px;
}

/* AUTO SCROLL */
@keyframes scrollGallery {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* LIGHTBOX */
.newslightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.newslightbox-img {
  max-width: 60vw;
  max-height: 60vh;
  object-fit: contain;
}

.newslightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}

/* LIGHTBOX ARROWS */
.newslightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

.newslightbox-nav.prev { left: 30px; }
.newslightbox-nav.next { right: 30px; }

.newslightbox-nav:hover {
  background: rgba(0,0,0,0.85);
}

/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Popup Box */
.popup-box {
  background: #fff;
  width: 90%;
  max-width: 400px;
  padding: 25px;
  border-radius: 8px;
  position: relative;
}

.popup-box h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* Form */
.popup-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.popup-box input,
.popup-box select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Submit Button */
.popup-box button {
  background: #000000;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
}

.popup-box button:hover {
  background: #595a5a;
}


.study-overlay-section {
  position: relative;
  width: 100%;
  min-height: 620px;
  padding: 70px 8px;
  background-image: linear-gradient(120deg, rgba(16, 26, 39, 0.78), rgba(34, 58, 84, 0.45)), url("Images/body 2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.study-overlay-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(245, 191, 84, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(9, 18, 29, 0.7), rgba(9, 18, 29, 0.18));
}

.overlay-content {
  position: relative;
  width: min(1560px, calc(100% - 12px));
  max-width: 1560px;
  padding: 66px 56px;
  color: #fff;
  background: rgba(12, 22, 34, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(6px);
}

.overlay-layout {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(780px, 1.42fr);
  gap: 36px;
  align-items: stretch;
}

.overlay-heading-box,
.overlay-copy {
  padding: 30px 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
}

.overlay-heading-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  background: rgba(8, 18, 30, 0.5);
}

.overlay-copy {
  margin: 0;
  background: rgba(255, 255, 255, 0.07);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7b5b10;
  background: rgba(245, 191, 84, 0.18);
  border: 1px solid rgba(165, 120, 24, 0.18);
  margin-bottom: 18px;
}

.hero-eyebrow {
  color: #f5d892;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.overlay-content h1 {
  font-size: clamp(2.45rem, 3.7vw, 4.2rem);
  line-height: 1.06;
  margin-bottom: 18px;
}

.overlay-content h1 svg {
  flex-shrink: 0;
}

.overlay-content h2 {
  font-size: clamp(1.18rem, 1.8vw, 1.7rem);
  max-width: 460px;
  margin: 0;
  color: #f8efe0;
  font-weight: 500;
}

.overlay-copy {
  max-width: none;
}

.overlay-content p,
.overlay-copy p {
  max-width: none;
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.9;
  opacity: 0.96;
  text-align: left;
  color: rgba(255, 255, 255, 0.9);
}

.overlay-copy p:last-child {
  margin-bottom: 0;
}

.hero-points,
.hero-metrics,
.destination-highlights,
.destination-actions {
  display: flex;
  flex-wrap: wrap;
}

.hero-points {
  justify-content: center;
  gap: 12px;
  margin: 28px 0 24px;
}

.hero-points span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.hero-actions,
.destination-actions {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn-primary {
  background: #f5bf54;
  color: #1b2430;
  box-shadow: 0 14px 30px rgba(245, 191, 84, 0.22);
}

.hero-btn-primary:hover {
  background: #ffd278;
  color: #101923;
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-metrics {
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}

.hero-metric {
  min-width: 180px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-metric strong {
  display: block;
  font-size: 30px;
  margin-bottom: 6px;
}

.hero-metric span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 1199px) {
  .overlay-content {
    width: min(1280px, calc(100% - 20px));
    padding: 52px 34px;
  }

  .overlay-layout {
    grid-template-columns: minmax(360px, 0.95fr) minmax(520px, 1.12fr);
    gap: 24px;
  }

  .overlay-heading-box,
  .overlay-copy {
    padding: 28px 24px;
  }

  .overlay-content h1 {
    font-size: clamp(2.3rem, 4vw, 3.5rem);
  }
}

@media (max-width: 991px) {
  .overlay-content {
    width: min(100%, calc(100% - 28px));
    padding: 38px 22px;
  }

  .overlay-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .overlay-heading-box,
  .overlay-copy {
    padding: 24px 20px;
  }

  .overlay-heading-box {
    align-items: center;
    text-align: center;
  }

  .overlay-content h1,
  .overlay-content h2 {
    max-width: none;
    text-align: center;
  }

  .overlay-content p,
  .overlay-copy p {
    text-align: left;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .study-overlay-section {
    min-height: auto;
    padding: 44px 12px;
  }

  .overlay-content {
    width: calc(100% - 8px);
    padding: 26px 14px;
    border-radius: 24px;
  }

  .overlay-layout {
    gap: 16px;
  }

  .overlay-heading-box,
  .overlay-copy {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .overlay-content h1 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
    line-height: 1.08;
  }

  .overlay-content h2 {
    font-size: 1.1rem;
  }

  .overlay-content p,
  .overlay-copy p {
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
  }

  .hero-actions {
    margin-top: 22px;
    gap: 12px;
  }

  .hero-btn {
    min-width: 100%;
    padding: 13px 18px;
  }
}

.universities-section {
  padding: 84px 20px;
  background: linear-gradient(180deg, #f6f2ea 0%, #faf8f4 100%);
  text-align: center;
}

.universities-section h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 14px;
  color: #1d2732;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 40px;
  font-size: 17px;
  line-height: 1.75;
  color: #5e6670;
}

/* Slider container */
.logo-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Gradient fade (left & right) */
.logo-slider.premium::before,
.logo-slider.premium::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-slider.premium::before {
  left: 0;
  background: linear-gradient(to right, #f8f9fb 0%, transparent 100%);
}

.logo-slider.premium::after {
  right: 0;
  background: linear-gradient(to left, #f8f9fb 0%, transparent 100%);
}

/* Track */
.logo-track {
  display: flex;
  width: max-content;
  animation: premiumScroll 28s linear infinite;
}

/* Logos */
.logo-track img {
  width: 220px;
  margin: 0 34px;
  object-fit: contain;
  transition: transform 0.3s ease;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.logo-track img:hover {
  transform: translateY(-4px) scale(1.03);
}

/* Infinite animation */
@keyframes premiumScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.destination-section,
.desination-section {
  padding: 88px 20px;
  background: linear-gradient(180deg, #f2f4f8 0%, #edf0f5 100%);
}

.destination-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.destination-left {
  margin-right: 0;
  margin-top: 0;
  padding: 36px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(18, 29, 39, 0.08);
}

.destination-left h1 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.12;
  margin-bottom: 14px;
  color: #18222d;
}

.destination-left p {
  font-size: 17px;
  line-height: 1.85;
  color: #505965;
  text-align: left;
  margin-top: 12px;
}

.destination-highlights {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  gap: 12px;
  flex-direction: column;
}

.destination-highlights li {
  position: relative;
  padding: 14px 16px 14px 46px;
  border-radius: 18px;
  background: #f6f8fb;
  color: #253241;
  font-weight: 500;
}

.destination-highlights li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f5bf54;
  box-shadow: 0 0 0 6px rgba(245, 191, 84, 0.18);
}

.destination-actions {
  justify-content: flex-start;
  margin-top: 26px;
}

.destination-right {
  position: relative;
  margin-top: 0;
}

.destination-slider-controls {
  display: none;
}

.destination-slider-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.destination-slider-arrow:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.72);
}

.destination-slider-arrow:focus-visible {
  outline: 2px solid rgba(245, 191, 84, 0.9);
  outline-offset: 3px;
}

.slider {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 30px;
  touch-action: pan-y;
  box-shadow: 0 24px 50px rgba(22, 31, 43, 0.16);
}

/* Slides */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  overflow: hidden;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-overlay {
  position: absolute;
  text-align: left;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 15, 25, 0.08) 0%, rgba(8, 15, 25, 0.92) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 32px 32px 36px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(22px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.country-overlay h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  letter-spacing: 0.04em;
}

.country-overlay p {
  margin: 0;
  max-width: 92%;
  font-size: 16px;
  line-height: 1.55;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.38);
}

.slide:hover .country-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (hover: none) {
  .slide.active .country-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.slider-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.22);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.slider-dot:hover {
  background: rgba(0, 0, 0, 0.4);
  transform: scale(1.1);
}

.slider-dot.active {
  background: #f5bf54;
  box-shadow: 0 0 0 3px rgba(245, 191, 84, 0.28);
  transform: scale(1.15);
}

/*achievements*/

.stats-heading {
  text-align: center;
  max-width: 700px;
  margin: 84px auto 24px;
}

.stats-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 12px;
  color: #18222d;
}

.stats-heading p {
  font-size: 17px;
  line-height: 1.75;
  color: #626c76;
}

.stats-section {
  padding: 30px 20px 86px;
  background: linear-gradient(180deg, #faf8f4 0%, #f2f5f9 100%);
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.stat-box {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  padding: 38px 24px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(32, 53, 76, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stat-link:hover .stat-box,
.stat-link:focus-visible .stat-box {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(20, 34, 48, 0.12);
  border-color: rgba(29, 79, 145, 0.18);
}

.stat-link:focus-visible {
  outline: none;
}

.stat-icon {
  font-size: 60px;
  margin-bottom: 10px;
}

.stat-icon-cap i {
  background: linear-gradient(135deg, #1d4f91 0%, #4f86d9 45%, #f4c35a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 10px 18px rgba(29, 79, 145, 0.18));
}

.stat-icon-award i {
  background: linear-gradient(135deg, #f4c35a 0%, #f0a63a 38%, #1d4f91 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 10px 18px rgba(240, 166, 58, 0.22));
}

.stat-icon-university i {
  background: linear-gradient(135deg, #163d75 0%, #2f7f95 52%, #9fd6d2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 10px 18px rgba(22, 61, 117, 0.2));
}

.stat-icon-course i {
  background: linear-gradient(135deg, #1b7f6b 0%, #2a9d8f 45%, #88d4c5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 10px 18px rgba(27, 127, 107, 0.2));
}

.stat-box h3 {
  font-size: 38px;
  color: #1d4f91;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 16px;
  color: #56606b;
}

/*gallery carousel*/
/* SECTION */
.gallery-section {
  padding: 80px 0;
  background: #e0e0e0;
  text-align: center;
}

.gallery-title {
  font-size: 32px;
  margin-bottom: 40px;
}

/* INFINITE GALLERY */
.infinite-gallery {
  overflow: hidden;
  width: 100%;
}

.gallery-track {
  display: flex;
  width: max-content;
  animation: scrollGallery 55s linear infinite;
}

/* IMAGE */
.gallery-track img {
  width: 300px;
  height: 220px;
  object-fit: cover;
  margin-right: 20px;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.5s ease, filter 0.5s ease;
}

/* HOVER EFFECT */
.gallery-track img:hover {
  transform: scale(1.15);
  filter: brightness(1.2);
  z-index: 2;
  border-radius: 5px;
}

/* AUTO SCROLL */
@keyframes scrollGallery {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox-img {
  max-width: 95vw;
  max-height: 95vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}

/* LIGHTBOX ARROWS */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

.lightbox-nav.prev { left: 30px; }
.lightbox-nav.next { right: 30px; }

.lightbox-nav:hover {
  background: rgba(0,0,0,0.85);
}

/* FADE EDGES CONTAINER */
.fade-edges {
  position: relative;
  overflow: hidden;
}

/* LEFT & RIGHT GRADIENT */
.fade-edges::before,
.fade-edges::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;              /* fade width */
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

/* LEFT FADE */
.fade-edges::before {
  left: 0;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    rgba(255,255,255,0) 100%
  );
}

/* RIGHT FADE */
.fade-edges::after {
  right: 0;
  background: linear-gradient(
    to left,
    #ffffff 0%,
    rgba(255,255,255,0) 100%
  );
}

/*whatsapp popup*/
/* WHATSAPP FLOATING */
.whatsapp-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10001;
}

/* BUTTON */
.whatsapp-btn {
  width: 68px;
  height: 68px;
  background: #4ce45c;
  color: #ffffff;
  border: 0;
  outline: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  -webkit-tap-highlight-color: transparent;
}

.whatsapp-btn img,
.whatsapp-btn svg {
  width: 38px;
  height: 38px;
  display: block;
  flex-shrink: 0;
}

/* POPUP */
.whatsapp-popup {
  position: absolute;
  right: 75px;
  bottom: 0;
  width: 260px;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.whatsapp-popup h4 {
  margin: 0 0 6px;
  font-size: 8px;
}

.whatsapp-popup p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.whatsapp-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* CHAT BUTTON */
.whatsapp-chat-btn {
  display: block;
  background: #25d366;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

/* HOVER EFFECT */
.whatsapp-widget:hover .whatsapp-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*STUDENTS PREVIEW SECTION*/
.students-preview-section {
    padding: 84px 8%;
    background:
        linear-gradient(135deg, rgba(24, 34, 45, 0.96), rgba(18, 52, 86, 0.94)),
        #18222d;
    color: #ffffff;
}

.students-preview-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.students-preview-copy {
    max-width: 760px;
}

.students-preview-kicker {
    margin: 0 0 10px;
    color: #f5bf54;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.students-preview-copy h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.15;
}

.students-preview-copy p {
    margin: 0;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.students-preview-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.students-discover-btn {
    border-color: rgba(255, 255, 255, 0.2);
}

.students-preview-grid {
    display: grid;
    grid-template-columns: repeat(6, 180px);
    justify-content: center;
    gap: 16px;
}

.students-preview-card {
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.students-preview-image {
    aspect-ratio: 4 / 3.1;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

.students-preview-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.students-preview-body {
    padding: 14px 14px 16px;
}

.students-preview-country {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(245, 191, 84, 0.16);
    color: #ffd56a;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.students-preview-body h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: #ffffff;
}

.students-preview-body p {
    margin: 0;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
}

/*TESTIMONIALS SECTION*/
.testimonial-section {
    padding: 84px 8%;
    background: #ffffff;
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.left-text h2 {
    color: #18222d;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.15;
    margin: 0;
}

.know-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 22px;
    border-radius: 999px;
    background: #f5bf54;
    color: #111827;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(245, 191, 84, 0.28);
    transition: 0.3s ease;
}

.know-more:hover {
    background: #18222d;
    color: #ffffff;
    transform: translateY(-2px);
}

.testimonial-wrapper {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.6fr);
    gap: 34px;
    align-items: stretch;
}

.testimonial-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 34px;
    border-radius: 8px;
    background: #f6f4ef;
    color: #4f5d6b;
    line-height: 1.8;
}

.testimonial-left p {
    margin: 0;
    font-size: 16px;
}

.inline-cap-icon {
    width: 46px;
    height: 46px;
    margin-left: 8px;
    vertical-align: middle;
}

.testimonial-right {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
}

.testimonial-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px 2px 18px;
}

.testimonial-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 min(360px, 86vw);
    display: flex;
    flex-direction: column;
    min-height: 430px;
    padding: 24px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(24, 34, 45, 0.08);
    color: #2d3946;
    scroll-snap-align: start;
}

.stars::before {
    content: "★★★★★";
    display: block;
    color: #f5bf54;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonial-card p {
    flex: 1;
    margin: 0;
    color: #52606d;
    font-size: 14px;
    line-height: 1.75;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(24, 34, 45, 0.1);
}

.client-flag {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-flag svg {
    width: 46px;
    height: 46px;
    display: block;
}

.client-info h4 {
    margin: 0 0 4px;
    color: #18222d;
    font-size: 16px;
}

.client-info span {
    color: #697787;
    font-size: 14px;
}

.testimonial-prev,
.testimonial-next {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #18222d;
    color: #ffffff;
    cursor: pointer;
    transform: translateY(-50%);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
}

.testimonial-prev {
    left: -18px;
}

.testimonial-next {
    right: -18px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #f5bf54;
    color: #111827;
}

/*SERVICES SECTION*/
.services {
    padding: 84px 8%;
    background: #f6f4ef;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 40px;
    font-weight: bold;
    color: #18222d;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.service-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    color: #253241;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 14px 32px rgba(19, 32, 45, 0.08);
    text-align: left;
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.service-content h3 {
    margin: 10px 0;
    color: #1d2732;
    width: 100%;
}

.service-content p {
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
    color: #5a6470;
    display: block;
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.btn {
    display: inline-block;
    margin-top: auto;
    align-self: center;
    padding: 10px 18px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 999px;
    transition: 0.3s;
}

.btn:hover {
    background: #f5bf54;
    color: #000;
}

.service-card:hover {
    transform: translateY(-8px);
}

@media (max-width: 1100px) {
    .service-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .service-container {
        grid-template-columns: 1fr;
    }
}

/*UPCOMING EVENTS*/
/* Popup Background */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup Box */
.popup-content {
    background: #f2f2f2;
    width: 600px;
    max-height: 90vh;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    text-align: center;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}

/* Scrollable Container */
.event-container {
    margin-top: 20px;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}

/* Event Card */
.event-card {
    background: #968f8f;
    color: #000000;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-card h3 {
    margin: 15px 0 10px;
}

a button {
  background: #4c4e4d;   /* WhatsApp Green */
  color: #fff;
  padding: 8px 25px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 10px;
}

/* Hover Effect */
a button:hover {
  background: #18201b;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Remove link underline */
a {
  text-decoration: none;
}

/*FOOTER*/
.footer {
  background: #f5f5f5;
  padding-top: 28px;
  font-family: Arial, sans-serif;
}

.footer-container {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-box img {
  width: 84px;
  margin-bottom: 10px;
}

.footer-col h3,.footer-col-add h4 {
  margin-bottom: 14px;
  font-weight: 600;
  font-size: 17px;
}

.footer-col h3{
  margin-left: 28px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.55;
  color: #333;
  text-align: justify;
}

.footer-col-add p1 {
  font-size: 14px;
  line-height: 1.45;
  color: #333;
  text-align: justify;
  margin-top: 4px;
  margin-bottom: 4px;
}

.footer-col-add p {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  text-align: justify;
  margin-top: 6px;
  margin-bottom: 4px;
}

.footer-col-add p:last-of-type {
  white-space: nowrap;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: 0.3s;
  margin-left: 28px;
}

.footer-col ul li a:hover {
  color: #007bff;
}

.map iframe {
  border-radius: 10px;
}

.footer-bottom {
  margin-top: 22px;
  padding: 10px;
  text-align: center;
  background: #e0e0e0;
  font-size: 16px;
}

.menu-toggle {
  cursor: pointer;
  display: none;
}
.line {
  stroke: #333;
  stroke-width: 2;
  transition: 0.3s;
}

/* active state */
.menu-toggle.active .top {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle.active .middle {
  opacity: 0;
}
.menu-toggle.active .bottom {
  transform: translateY(-6px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 767px) {
  body {
    overflow-x: hidden;
  }

  .study-overlay-section {
    min-height: auto;
    padding: 48px 16px;
  }

  .overlay-content {
    padding: 32px 20px;
    border-radius: 24px;
  }

  .overlay-content h1 {
    flex-direction: column;
    font-size: 2.2rem;
  }

  .overlay-content h1 svg {
    width: 34px;
    height: 34px;
  }

  .overlay-content p,
  .overlay-copy p,
  .section-intro,
  .stats-heading p {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-points,
  .hero-metrics,
  .destination-actions {
    gap: 10px;
  }

  .hero-btn {
    width: 100%;
    min-width: 0;
  }

  .hero-metric {
    width: 100%;
    min-width: 0;
  }

  .universities-section,
  .desination-section,
  .students-preview-section,
  .testimonial-section,
  .services {
    padding-left: 16px;
    padding-right: 16px;
  }

  .students-preview-section,
  .testimonial-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .students-preview-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .students-preview-actions {
    width: 100%;
  }

  .students-preview-actions .know-more,
  .students-preview-actions .students-discover-btn {
    width: 100%;
  }

  .students-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .testimonial-wrapper {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .testimonial-left {
    padding: 24px 20px;
  }

  .testimonial-card {
    min-height: 420px;
    padding: 22px;
  }

  .testimonial-prev,
  .testimonial-next {
    top: auto;
    bottom: -34px;
    transform: none;
  }

  .testimonial-prev {
    left: calc(50% - 52px);
  }

  .testimonial-next {
    right: calc(50% - 52px);
  }

  .testimonial-container {
    padding-bottom: 58px;
  }

  .destination-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .destination-left {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .destination-right {
    width: 100%;
    margin-top: 0;
  }

  .destination-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .destination-slider-arrow {
    width: 42px;
    height: 42px;
    pointer-events: auto;
    box-shadow: 0 10px 24px rgba(12, 18, 28, 0.18);
  }

  .destination-left h1 {
    font-size: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .slider {
    height: 420px;
    border-radius: 24px;
  }

  .slider {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 16px;
    padding: 0 2px 6px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }

  .slider::-webkit-scrollbar {
    display: none;
  }

  .slide,
  .slide.active {
    position: relative;
    inset: auto;
    opacity: 1;
    z-index: auto;
    flex: 0 0 100%;
    min-width: 100%;
    border-radius: 24px;
    overflow: hidden;
    scroll-snap-align: start;
  }

  .slider-dots {
    display: none;
  }

  .country-overlay {
    padding: 24px 20px;
  }

  .country-overlay p {
    font-size: 14px;
    line-height: 1.6;
  }

  .container {
    padding: 12px 16px;
    position: relative;
  }

  .logo img {
    height: 48px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #dbdbdb;
    padding: 0 16px 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    display: none;
  }

  .nav.active {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    padding-top: 10px;
  }

  .nav-links li,
  .nav-links a,
  .nav-links button {
    width: 100%;
  }

  .nav-links a,
  .nav-links button {
    display: block;
    padding: 10px 0;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 100%;
    margin-top: 8px;
    box-shadow: none;
    background: #f4f4f4;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .apply-btn {
    width: 100%;
    text-align: center;
    border: none;
  }

  .popup-box {
    width: calc(100% - 24px);
    padding: 20px;
  }

  .news-section h2,
  .stats-section h2,
  .about-us h2,
  .services h2,
  .gallery-section h2 {
    font-size: 1.8rem;
  }

  .news-track img {
    width: 220px;
    height: 160px;
    margin-right: 12px;
  }

  .stats-heading {
    max-width: calc(100% - 32px);
    margin: 36px auto 20px;
  }

  .stats-heading h2 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .stats-section {
    padding: 40px 16px;
  }

  .stats-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .stat-box {
    padding: 24px 14px;
  }

  .stat-box h3 {
    font-size: 2.1rem;
  }

  .newslightbox-close {
    top: 12px;
    right: 18px;
    font-size: 28px;
  }

  .newslightbox-nav {
    width: 42px;
    height: 42px;
  }

  .newslightbox-nav.prev {
    left: 12px;
  }

  .newslightbox-nav.next {
    right: 12px;
  }

  .popup-content {
    width: calc(100% - 24px);
    padding: 18px;
  }

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

  .whatsapp-popup {
    right: 0;
    bottom: 68px;
    width: 220px;
  }

  .footer-container {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .logo-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-col h2,
  .footer-col h3,
  .footer-col ul li a {
    margin-left: 0;
    text-align: left;
  }

  .footer-col p,
  .footer-col-add p,
  .footer-col-add p1,
  .footer-col ul li a {
    font-size: 16px;
  }

  .map iframe {
    width: 100%;
    height: 240px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .overlay-content {
    padding: 40px 28px;
  }

  .overlay-content h1 {
    font-size: 3rem;
  }

  .hero-metrics {
    gap: 12px;
  }

  .hero-metric {
    min-width: calc(33.333% - 8px);
  }

  .destination-container {
    display: grid;
    grid-template-columns: 1fr;
  }

  .destination-left,
  .destination-right {
    width: 100%;
  }

  .slider {
    height: 480px;
  }

  .container {
    max-width: 100%;
    padding: 14px 24px;
    gap: 16px;
  }

  .nav {
    flex: 1;
  }

  .nav-links {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .stats-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-container {
    width: calc(100% - 48px);
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-col h2,
  .footer-col h3,
  .footer-col ul li a {
    margin-left: 0;
  }

  .map iframe {
    width: 100%;
    height: 260px;
  }
}

@media (min-width: 1024px) and (max-width: 1399px) {
  .container {
    max-width: 96%;
    padding: 15px 24px;
  }

  .nav-links {
    gap: 18px;
  }

  .footer-container {
    width: 94%;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1280px;
  }

  .footer-container {
    max-width: 1280px;
    width: 100%;
  }
}

/* Premium Motion Enhancements */
body {
  background-image:
    radial-gradient(circle at 14% 18%, rgba(245, 191, 84, 0.08), transparent 18%),
    radial-gradient(circle at 86% 10%, rgba(87, 138, 255, 0.08), transparent 22%);
  background-attachment: fixed;
}

.header {
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.nav-links a,
.apply-btn,
.footer-col ul li a,
.btn,
button {
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

.nav-links a:hover,
.footer-col ul li a:hover {
  transform: translateY(-1px);
}

.apply-btn:hover,
.btn:hover,
.popup-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
}

.hero-image img,
:is(a, div, article, section)[class*="card"],
:is(div, section)[class*="box"] {
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.hero-image img {
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(17, 24, 39, 0.14);
}

.hero-image:hover img {
  transform: translateY(-6px) scale(1.01);
}

:is(a, div, article, section)[class*="card"]:hover,
:is(div, section)[class*="box"]:not(.popup-box):hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.whatsapp-btn {
  animation: premiumFloat 3.6s ease-in-out infinite;
  box-shadow: 0 16px 34px rgba(25, 117, 70, 0.28);
}

.popup-box,
.footer,
.overlay-content,
.destination-left,
.testimonial-card,
.service-card,
.country-card {
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
}

@keyframes premiumFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Premium Theme Refresh */
body {
  color: var(--premium-ink);
  background-color: var(--premium-bg);
  background-image:
    radial-gradient(circle at 12% 16%, rgba(200, 160, 90, 0.10), transparent 18%),
    radial-gradient(circle at 88% 8%, rgba(20, 38, 58, 0.08), transparent 20%),
    linear-gradient(180deg, #fbf8f2 0%, #f4ede3 100%);
}

.header {
  background: rgba(251, 248, 242, 0.92);
  border-bottom: 1px solid rgba(20, 38, 58, 0.08);
}

.nav-links a {
  color: var(--premium-ink);
}

.nav-links a:hover,
.dropdown-menu li a:hover,
.footer-col ul li a:hover {
  color: var(--premium-gold-strong);
}

.dropdown-menu {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--premium-border);
  box-shadow: 0 18px 34px rgba(15, 26, 42, 0.10);
}

.apply-btn,
.popup-box button,
.btn {
  background: linear-gradient(135deg, var(--premium-navy) 0%, #1d3855 100%);
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(20, 38, 58, 0.18);
}

.apply-btn:hover,
.popup-box button:hover,
.btn:hover {
  background: linear-gradient(135deg, var(--premium-gold-strong) 0%, #d4b06f 100%);
  color: var(--premium-navy-deep) !important;
}

.news-section,
.gallery-section {
  background: linear-gradient(180deg, #f7f2ea 0%, #efe5d7 100%);
}

.news-container {
  background: linear-gradient(135deg, var(--premium-navy-deep) 0%, #1d3650 100%);
}

.study-overlay-section::before {
  background:
    radial-gradient(circle at top right, rgba(200, 160, 90, 0.26), transparent 36%),
    linear-gradient(135deg, rgba(10, 20, 32, 0.74), rgba(14, 31, 48, 0.22));
}

.hero-btn-primary,
.know-more {
  background: linear-gradient(135deg, var(--premium-gold) 0%, #e0bf82 100%);
  color: var(--premium-navy-deep);
  box-shadow: 0 16px 28px rgba(200, 160, 90, 0.24);
}

.hero-btn-primary:hover,
.know-more:hover {
  background: linear-gradient(135deg, var(--premium-navy) 0%, #24415f 100%);
  color: #fff;
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.22);
}

.universities-section,
.stats-section,
.services,
.testimonial-section {
  background: linear-gradient(180deg, #fbf8f2 0%, #f3ecdf 100%);
}

.desination-section,
.destination-section {
  background: linear-gradient(180deg, #f4ede3 0%, #eee3d3 100%);
}

.students-preview-section {
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.98), rgba(28, 49, 73, 0.96)),
    var(--premium-navy-deep);
}

.universities-section h2,
.destination-left h1,
.stats-heading h2,
.gallery-title,
.left-text h2,
.section-title,
.footer-col h2,
.footer-col h3,
.footer-col-add h4 {
  color: var(--premium-ink);
}

.section-intro,
.destination-left p,
.stats-heading p,
.stat-box p,
.service-content p,
.testimonial-left p,
.testimonial-card p,
.footer-col p,
.footer-col-add p,
.footer-col-add p1 {
  color: var(--premium-ink-soft);
}

.destination-left,
.stat-box,
.service-card,
.testimonial-card,
.testimonial-left,
.footer,
.popup-box,
.whatsapp-popup {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--premium-border);
  box-shadow: 0 18px 40px var(--premium-shadow);
}

.destination-highlights li {
  background: #f8f2e8;
  color: var(--premium-ink);
}

.destination-highlights li::before,
.slider-dot.active {
  background: var(--premium-gold);
}

.students-preview-country {
  background: var(--premium-gold-soft);
  color: #f3d9a2;
}

.stars::before {
  color: var(--premium-gold);
}

.slider-dot.active {
  box-shadow: 0 0 0 3px rgba(200, 160, 90, 0.24);
}

.stat-box h3,
.client-info h4,
.service-content h3 {
  color: var(--premium-ink);
}

.stat-link:hover .stat-box,
.stat-link:focus-visible .stat-box,
.service-card:hover,
:is(a, div, article, section)[class*="card"]:hover,
:is(div, section)[class*="box"]:not(.popup-box):hover {
  box-shadow: 0 22px 42px rgba(15, 26, 42, 0.14);
}

.gallery-track img,
.news-track img,
.students-preview-card,
.testimonial-card,
.service-card {
  border: 1px solid rgba(18, 32, 51, 0.08);
}

.fade-edges::before {
  background: linear-gradient(to right, #f7f2ea 0%, rgba(247, 242, 234, 0) 100%);
}

.fade-edges::after {
  background: linear-gradient(to left, #f7f2ea 0%, rgba(247, 242, 234, 0) 100%);
}

.testimonial-prev,
.testimonial-next {
  background: linear-gradient(135deg, var(--premium-navy) 0%, #294767 100%);
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: linear-gradient(135deg, var(--premium-gold) 0%, #e0bf82 100%);
  color: var(--premium-navy-deep);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #1d8f5f 0%, #2db977 100%);
}

.whatsapp-popup h4 {
  color: var(--premium-ink);
}

.whatsapp-popup p {
  color: var(--premium-ink-soft);
}

.footer {
  background: linear-gradient(180deg, #f2eadf 0%, #e8dcc8 100%);
}

.footer-col ul li a {
  color: var(--premium-ink-soft);
}

.footer-bottom {
  background: linear-gradient(135deg, var(--premium-navy-deep) 0%, #1c3249 100%);
  color: rgba(255, 255, 255, 0.82);
}

.line {
  stroke: var(--premium-ink);
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-btn {
    animation: none;
  }

  .hero-image img,
  :is(a, div, article, section)[class*="card"],
  :is(div, section)[class*="box"],
  .nav-links a,
  .apply-btn,
  .btn,
  button {
    transition: none;
    animation: none;
  }
}

/* Footer Layout Refresh */
.footer { padding: 26px 0 0; background: linear-gradient(180deg, #f1e7d9 0%, #eadfce 100%); }
.footer-container { max-width: 1180px; width: calc(100% - 48px); grid-template-columns: 1.45fr 0.8fr 1fr 1.15fr; gap: 34px; }
.logo-box { align-items: flex-start; gap: 0; }
.logo-box img { width: 92px; margin-bottom: 8px; }
.footer-col h3, .footer-col-add h4 { margin: 0 0 12px; font-size: 17px; color: #122033; }
.footer-col h3, .footer-col ul li a { margin-left: 0; }
.footer-col p, .footer-col-add p, .footer-col-add p1 { font-size: 14px; line-height: 1.65; text-align: left; }
.footer-col ul li { margin-bottom: 5px; }
.footer-col ul li a { font-size: 14px; line-height: 1.6; }
.footer-col-add .office-address { line-height: 1.65; }
.map iframe { width: 100%; height: 225px; border: 0; border-radius: 18px; box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10); }
.footer-bottom { margin-top: 18px; padding: 8px; font-size: 14px; }
@media (max-width: 1023px) { .footer-container { grid-template-columns: 1fr 1fr; width: calc(100% - 36px); gap: 24px; } }
@media (max-width: 767px) { .footer { padding-top: 22px; } .footer-container { grid-template-columns: 1fr; width: calc(100% - 28px); gap: 18px; } .map iframe { height: 210px; } }
