/* =====================================================
   STUDY ABROAD – GOD LEVEL PREMIUM UI
   Uses global color variables
===================================================== */

/* ================= COMMON ================= */

.study-intro,
.global-experience,
.study-services,
.country-section,
.highlights,
.psychometric-section {
  padding: 110px 0;
}

.text-center {
  text-align: center;
}

.section-lead {
  max-width: 820px;
  margin: 18px auto 0;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* =====================================================
   HERO
===================================================== */

.study-hero .banner-text h1 {
  font-size: clamp(40px,4vw,58px);
  font-weight: 900;
  letter-spacing: -0.8px;
}

.study-hero .banner-text p {
  font-size: 18px;
  margin-top: 12px;
}

/* =====================================================
   INTRO
===================================================== */

.study-intro {
  background: linear-gradient(180deg,#ffffff,var(--bg-light));
}

.study-intro h2 {
  font-size: clamp(34px,3vw,46px);
  font-weight: 900;
}

.study-intro h2::after {
  content:"";
  display:block;
  width:80px;
  height:4px;
  margin:18px auto 0;
  border-radius:999px;
  background: linear-gradient(90deg,var(--primary),var(--accent));
}

/* =====================================================
   GLOBAL EXPERIENCE
===================================================== */

.global-experience {
  background: #ffffff;
}

.experience-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 40px;
}

.experience-card {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 45px 140px rgba(0,0,0,.18);
  transition: .35s ease;
}

.experience-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 75px 200px rgba(0,0,0,.25);
}

.experience-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.experience-content {
  padding: 32px;
}

.experience-content h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
}

.experience-content p {
  color: var(--text-muted);
}

/* =====================================================
   SERVICES – CLEAN PREMIUM FIXED UI
===================================================== */

.study-services {
  background: linear-gradient(180deg,#ffffff,#eef2f7);
  padding: 120px 0;
}

.services-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 40px;
}

.service-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 40px 30px;
  text-align: center;
  min-height: 320px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 35px 100px rgba(0,0,0,.12);
  transition: all .35s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 60px 160px rgba(0,0,0,.18);
}

.service-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 18px;
  margin: 0 auto 25px;
  display: block;
}


.service-card h4 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* =====================================================
   DESTINATIONS
===================================================== */

.country-section {
  background: #ffffff;
}

.country-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 36px;
}

.country-card {
  position: relative;
  height: 280px;
  border-radius: 32px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  box-shadow: 0 50px 160px rgba(0,0,0,.25);
  transition: .35s ease;
}

.country-card:hover {
  transform: translateY(-14px) scale(1.02);
}

.country-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.75));
}

.country-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.country-content h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 6px;
}

.country-content p {
  font-size: 15px;
  opacity: .9;
}

/* =====================================================
   ELIGIBILITY & INTAKES – PREMIUM FINAL VERSION
===================================================== */

.highlights {
  background: radial-gradient(circle at top,#ffffff 0%,#eef2f7 65%);
  padding: 120px 0;
}

/* GRID */
.highlight-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 45px;
}

/* CARD */
.highlight-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0,0,0,.10);
  transition: all .4s ease;
}

.highlight-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 60px 180px rgba(0,0,0,.18);
}

/* IMAGE HEADER */
.card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.highlight-card:hover .card-image img {
  transform: scale(1.08);
}

/* CONTENT AREA */
.card-content {
  padding: 40px 35px 45px;
  text-align: center;
}

.card-content h3 {
  font-size: 23px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -.3px;
}

.card-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* INTAKE BADGE */
.intake,
.badge {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  color: #fff;
  letter-spacing: .3px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .highlights {
    padding: 90px 0;
  }

  .card-image {
    height: 200px;
  }

  .card-content {
    padding: 30px 25px 35px;
  }

}


/* =====================================================
   PSYCHOMETRIC
===================================================== */

.psychometric-section {
  background: radial-gradient(circle at top,#ffffff 0%,#eef2f7 70%);
}

.psychometric-layout {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 60px;
  align-items: center;
}

.psychometric-copy h2 {
  font-size: clamp(34px,3vw,48px);
  font-weight: 900;
  margin-bottom: 20px;
}

.psychometric-cta {
  background: #fff;
  border-radius: 36px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 60px 200px rgba(0,0,0,.2);
}

.psychometric-cta img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 992px) {

  .psychometric-layout {
    grid-template-columns: 1fr;
  }

  .study-intro,
  .global-experience,
  .study-services,
  .country-section,
  .highlights,
  .psychometric-section {
    padding: 90px 0;
  }
}

@media (max-width: 576px) {

  .study-hero .banner-text h1 {
    font-size: 32px;
  }

  .study-intro,
  .global-experience,
  .study-services,
  .country-section,
  .highlights,
  .psychometric-section {
    padding: 70px 0;
  }
}
