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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* skip link - ada accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: #2C62FF;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  z-index: 99999;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
}

/* global focus outline for keyboard nav */
:focus-visible {
  outline: 2px solid #2C62FF;
  outline-offset: 3px;
  border-radius: 2px;
}


/* navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.navbar__container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 60px;
  position: relative;
}

/* Logo */
.navbar__logo img {
  height: 52px;
  width: auto;
}

/* Remove Drupal region/block wrappers from flex layout */
.navbar__container > div,
.navbar__container > div > #block-k12academics-main-menu {
  display: contents;
}
 
/* Hide Drupal extras exposed by display:contents */
.navbar__container .visually-hidden,
.navbar__container [data-drupal-messages-fallback],
.navbar__container .navbar__overlay {
  display: none;
}

/* nav menu - centered with absolute positioning */
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.35s ease;
}

/* shift menu left when search opens, desktop only */
@media (min-width: 1025px) {
  .navbar__container.search-open .navbar__menu {
    transform: translateX(calc(-50% - 80px));
  }
}

.footer__col:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.footer__col:nth-child(2) { grid-column: 2; grid-row: 1; }
.footer__col:nth-child(3) { grid-column: 2; grid-row: 2; }
.footer__col:nth-child(4) { grid-column: 3; grid-row: 1; }
.footer__col:nth-child(5) { grid-column: 3; grid-row: 2; }
.footer__col:nth-child(6) { grid-column: 4; grid-row: 1 / 3; }
.footer__col:nth-child(7) { grid-column: 5; grid-row: 1 / 3; }
.footer__col:nth-child(8) { grid-column: 6; grid-row: 1 / 3; }

.navbar__link {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  color: rgba(20, 30, 81, 0.7);
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.navbar__link:hover,
.navbar__link.active {
  color: rgba(20, 30, 81, 1);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2C62FF;
  transition: width 0.3s ease;
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

/* navbar right side - search + buttons */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* navbar search */
.navbar__search {
  position: relative;
  display: flex;
  align-items: center;
}

.navbar__search-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #2C62FF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.navbar__search-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(44, 98, 255, 0.4);
}

.navbar__search-field {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 2px solid #2C62FF;
  border-radius: 100px;
  overflow: hidden;
  width: 0;
  opacity: 0;
  pointer-events: none;
  transition: width 0.35s ease, opacity 0.25s ease;
}

.navbar__search-field.open {
  width: 280px;
  opacity: 1;
  pointer-events: all;
}

.navbar__search-field input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #141E51;
  background: transparent;
}

.navbar__search-field input::placeholder {
  color: rgba(20, 30, 81, 0.4);
}

.navbar__search-close {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* login button */
.navbar__btn--login {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #FFFFFF;
  background: radial-gradient(61.88% 61.88% at 50% 50%, #7198F9 0%, #2564FF 100%);
  padding: 12px 30px;
  border-radius: 100px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.navbar__btn--login:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(37, 100, 255, 0.45);
}

/* sign up button */
.navbar__btn--signup {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #000000;
  background: #FFFFFF;
  border: 1px solid #000000;
  padding: 12px 30px;
  border-radius: 100px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.navbar__btn--signup:hover {
  background: radial-gradient(61.88% 61.88% at 50% 50%, #7198F9 0%, #2564FF 100%);
  color: #FFFFFF;
  border-color: transparent;
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(37, 100, 255, 0.45);
}


/* hamburger menu icon */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  z-index: 1100;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #141E51;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* hamburger turns into X when menu is open */
.navbar__hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}


/* hero section */
.hero {
  position: relative;
  min-height: 80vh;
  background: url('Assets/Hero bg.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(37, 83, 214, 0.65);
  z-index: 1;
}

.hero__container {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* hero search bar - left column */
.hero__search {
  flex: 1;
  max-width: 30%;
  padding-right: 40px;
  position: relative;
}

.hero__search-bar {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border-radius: 4px;
  overflow: hidden;
  padding: 4px;
}

.hero__search-inputs {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 16px;
}

.hero__input {
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  color: #141E51;
  padding: 12px 0;
  width: 100%;
}

.hero__input::placeholder {
  color: rgba(20, 30, 81, 0.55);
}

.hero__input-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.4);
  margin: 0 12px;
  flex-shrink: 0;
}

.hero__input-clear {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  opacity: 0.5;
  transition: opacity 0.2s ease, background 0.2s ease;
  margin-right: 4px;
}

.hero__input-clear:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.06);
}

.hero__search-submit {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #2C62FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__search-submit:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(44, 98, 255, 0.5);
}

/* search wrap anchors the dropdown below the bar */
.hero__search-wrap {
  position: relative;
}

/* category dropdown */
.hero__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  z-index: 100;
  max-height: 260px;
  overflow: hidden;
  display: none;
  flex-direction: column;
}

.hero__dropdown.open {
  display: flex;
}

.hero__dropdown-inner {
  overflow-y: auto;
  max-height: 260px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  /* thin scrollbar so it doesn't look clunky */
  scrollbar-width: thin;
  scrollbar-color: rgba(44, 98, 255, 0.3) transparent;
}

.hero__dropdown-inner::-webkit-scrollbar {
  width: 4px;
}

.hero__dropdown-inner::-webkit-scrollbar-track {
  background: transparent;
}

.hero__dropdown-inner::-webkit-scrollbar-thumb {
  background: rgba(44, 98, 255, 0.3);
  border-radius: 4px;
}

.hero__dropdown-item {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #141E51;
  padding: 12px 20px;
  cursor: pointer;
  border-bottom: 1px solid rgba(20, 30, 81, 0.07);
  transition: background 0.2s ease, color 0.2s ease;
  text-align: left;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
}

.hero__dropdown-item:last-child {
  border-bottom: none;
}

.hero__dropdown-item:hover {
  background: #f0f4ff;
  color: #2C62FF;
}

.hero__dropdown-item mark {
  background: none;
  color: #2C62FF;
  font-weight: 700;
}

.hero__dropdown-empty {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(20, 30, 81, 0.6);
  padding: 16px 20px;
  text-align: center;
}

/* keyword quick links below search */
.hero__keywords {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.hero__keyword {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(20, 30, 81, 0.8);
  background: #FFFFFF;
  padding: 8px 20px;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.hero__keyword:hover,
.hero__keyword--active {
  background: #2C62FF;
  color: #FFFFFF;
}


/* hero content - right column */
.hero__content {
  flex: 1;
  max-width: 50%;
}

.hero__title {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 78px;
  text-transform: capitalize;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.hero__description {
  font-family: 'Lato', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #FFFFFF;
  max-width: 540px;
  margin-bottom: 32px;
}

/* category filter buttons */
.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 14px 20px;
  border-radius: 100px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  flex: 1 1 calc(33.333% - 10px);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__btn--primary {
  background: linear-gradient(0deg, #357CFC, #357CFC);
  color: #FFFFFF;
}

.hero__btn--primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(53, 124, 252, 0.5);
}

.hero__btn--outline {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.hero__btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.hero__btn--active {
  background: linear-gradient(0deg, #357CFC, #357CFC) !important;
  color: #ffffff !important;
  border-color: #357CFC !important;
}


/* explore k12 schools section */
.explore {
  padding: 100px 0;
  background: #FFFFFF;
}

.explore__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* left side - image at 40% */
.explore__left {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  justify-content: center;
}

.explore__image-wrapper {
  width: 100%;
}

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

/* right side - content at 60% */
.explore__right {
  flex: 0 0 calc(60% - 60px);
  max-width: calc(60% - 60px);
  display: flex;
  flex-direction: column;
}

.vendors__subtitle,
.summer__subtitle,
.explore__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  text-transform: capitalize;
  color: #000000;
}

.vendors__title,
.summer__title,
.explore__title {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 56px;
  line-height: 66px;
  text-transform: capitalize;
  color: #2C62FF;
  margin-bottom: 24px;
}

.explore__description {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: rgba(0, 0, 0, 0.59);
  margin-bottom: 40px;
}

/* slider */
.slider-container {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* shadow keeps it visible if it overlaps a card */
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
  cursor: pointer;
  border: none;
}

.slider-nav svg path {
  transition: stroke 0.2s ease;
}

.slider-nav:hover {
  background: #2C62FF;
}

.slider-nav:hover svg path {
  stroke: #FFFFFF;
}

.slider-nav--prev {
  left: -24px;
}

.slider-nav--next {
  right: -24px;
}

.slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* hide scrollbar - firefox */
  padding: 10px 0; /* small vertical padding so cards align with the text above */
  width: 100%;
}

.slider-track::-webkit-scrollbar {
  display: none; /* hide scrollbar - chrome, safari */
}

.slider-card {
  flex: 0 0 100%;
  width: 100%;
  background: #FFFFFF;
  border: 1.5px solid #C7C7C7;
  border-radius: 17px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  scroll-snap-align: start;
}

.slider-card__image {
  flex-shrink: 0;
  width: 220px;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
}

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

.slider-card__content {
  flex: 1;
}

.slider-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.slider-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 26px;
  color: #2C62FF;
}

.slider-card__location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.slider-card__location span {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #555555;
}

.slider-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #666666;
  margin-bottom: 16px;
}

.slider-card__desc a {
  color: #2C62FF;
  font-weight: 500;
}

.slider-card__desc a:hover {
  text-decoration: underline;
}

.slider-card__btn {
  display: inline-flex;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #FFFFFF;
  background: #2C62FF;
  padding: 10px 24px;
  border-radius: 100px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slider-card__btn:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(44, 98, 255, 0.4);
}

/* cta buttons */
.explore__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.explore__btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 100px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.explore__btn--primary {
  background: #2C62FF;
  color: #FFFFFF;
}

.explore__btn--primary:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 14px rgba(44, 98, 255, 0.4);
}

.explore__btn--outline {
  background: #FFFFFF;
  color: #2C62FF;
  border: 1px solid #C7C7C7;
}

.explore__btn--outline:hover {
  border-color: #2C62FF;
  color: #2C62FF;
  background: rgba(44, 98, 255, 0.05);
  transform: scale(1.03);
}


/* choosing the right college section */
.college {
  position: relative;
  padding: 100px 0;
  background: url('Assets/university bg.webp') center center / cover no-repeat;
  overflow: hidden;
}



.college__container {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* left side - text + slider at 60% */
.college__left {
  flex: 0 0 calc(60% - 60px);
  max-width: calc(60% - 60px);
  display: flex;
  flex-direction: column;
}

.international__title,
.college__title {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 56px;
  line-height: 66px;
  text-transform: capitalize;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.college__description {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #FFFFFF;
  margin-bottom: 40px;
}


.slider-card--college {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* right side - image at 40% */
.college__right {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  justify-content: center;
}

.college__image-wrapper {
  width: 100%;
}

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

/* cta buttons */
.college__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.college__btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 100px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.college__btn--white {
  background: #FFFFFF;
  color: #2C62FF;
}

.college__btn--white:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
}

.college__btn--outline {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.college__btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.03);
}


/* picking the right vendors section */
.vendors {
  padding: 100px 0;
  background: #FFFFFF;
}

.vendors__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* left side - image at 40% */
.vendors__left {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  justify-content: center;
}

.vendors__image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.vendors__image {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
}

/* right side - content at 60% */
.vendors__right {
  flex: 0 0 calc(60% - 60px);
  max-width: calc(60% - 60px);
  display: flex;
  flex-direction: column;
}

.vendors__heading {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 60px;
  color: #000000;
  margin-bottom: 24px;
}

.vendors__heading span {
  font-weight: 700;
  font-size: 56px;
  line-height: 66px;
  color: #2C62FF;
  display: block;
}

.vendors__description {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: rgba(0, 0, 0, 0.59);
  margin-bottom: 40px;
}

/* vendor card size tweaks */
.slider-card--vendor {
  align-items: center;
}

.slider-card__image--vendor {
  width: 160px;
  height: 130px;
  border-radius: 10px;
  flex-shrink: 0;
}

/* cta buttons */
.vendors__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vendors__btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 100px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.vendors__btn--primary {
  background: #2C62FF;
  color: #FFFFFF;
}

.vendors__btn--primary:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 14px rgba(44, 98, 255, 0.4);
}

.vendors__btn--outline {
  background: #FFFFFF;
  color: #2C62FF;
  border: 1px solid #C7C7C7;
}

.vendors__btn--outline:hover {
  border-color: #2C62FF;
  background: rgba(44, 98, 255, 0.05);
  transform: scale(1.03);
}


/* summer programs section */
.summer {
  padding: 100px 0;
  background: linear-gradient(180deg, #EBF2FF 0%, #FFFFFF 100%);
}

.summer__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* left side - content at 60% */
.summer__left {
  flex: 0 0 calc(60% - 30px);
  max-width: calc(60% - 30px);
  display: flex;
  flex-direction: column;
}

.summer__heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 60px;
  color: #000000;
  margin-bottom: 24px;
}

.summer__heading span {
  font-weight: 700;
  font-size: 56px;
  line-height: 66px;
  color: #2C62FF;
  display: block;
}

.summer__description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: rgba(0, 0, 0, 0.59);
  margin-bottom: 40px;
}

/* cta buttons */
.summer__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.summer__btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 100px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.summer__btn--primary {
  background: #2C62FF;
  color: #FFFFFF;
}

.summer__btn--primary:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 14px rgba(44, 98, 255, 0.4);
}

.summer__btn--outline {
  background: #FFFFFF;
  color: #2C62FF;
  border: 1px solid #C7C7C7;
}

.summer__btn--outline:hover {
  border-color: #2C62FF;
  background: rgba(44, 98, 255, 0.05);
  transform: scale(1.03);
}

/* right side - image at 40% */
.summer__right {
  flex: 0 0 calc(40% - 30px);
  max-width: calc(40% - 30px);
  display: flex;
  justify-content: center;
}

.summer__image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.summer__image {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
}


/* international programs section */
.international {
  padding: 100px 0;
  background-image: url('Assets/international bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.international__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* left side - image at 40% */
.international__left {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  justify-content: center;
}

.international__image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.international__image {
  width: 100%;
  max-width: 460px;
  height: auto;
  object-fit: contain;
}

/* right side - content at 60% */
.international__right {
  flex: 0 0 calc(60% - 60px);
  max-width: calc(60% - 60px);
  display: flex;
  flex-direction: column;
}

.international__heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.international__description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

/* cta buttons */
.international__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.international__btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 100px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.international__btn--primary {
  background: #2C62FF;
  color: #FFFFFF;
}

.international__btn--primary:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 14px rgba(44, 98, 255, 0.5);
}

.international__btn--outline {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.international__btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.03);
}


/* performers & educational events section */
.performers {
  padding: 100px 0;
  background: #FFFFFF;
}

.performers__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* left side - content at 60% */
.performers__left {
  flex: 0 0 calc(60% - 30px);
  max-width: calc(60% - 30px);
  display: flex;
  flex-direction: column;
}

.performers__title,
.performers__heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  color: #2C62FF;
  margin-bottom: 24px;
}

.performers__description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.59);
  margin-bottom: 40px;
}

/* cta buttons */
.performers__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.performers__btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 100px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.performers__btn--primary {
  background: #2C62FF;
  color: #FFFFFF;
}

.performers__btn--primary:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 14px rgba(44, 98, 255, 0.4);
}

.performers__btn--outline {
  background: #FFFFFF;
  color: #2C62FF;
  border: 1px solid #C7C7C7;
}

.performers__btn--outline:hover {
  border-color: #2C62FF;
  background: rgba(44, 98, 255, 0.05);
  transform: scale(1.03);
}

/* right side - image at 40% */
.performers__right {
  flex: 0 0 calc(40% - 30px);
  max-width: calc(40% - 30px);
  display: flex;
  justify-content: center;
}

.performers__image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.performers__image {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
}


/* about k12 academics section */
.about {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #EBF2FF 0%, #FFFFFF 100%);
}

.about__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about__heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  color: #000000;
  margin-bottom: 24px;
}

.about__heading span {
  color: #2C62FF;
}

.about__description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.6);
  max-width: 640px;
  margin-bottom: 48px;
}

.about__image-wrapper {
  width: 100%;
}

.about__image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}


/* footer */
.footer {
  background: linear-gradient(180deg, #18264E 0%, #183DA6 100%);
  padding: 80px 0 40px;
}

.footer__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
}

.footer__heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 46px;
  color: #FFFFFF;
  margin-bottom: 48px;
  text-align: center;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.footer__col-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer__col-title--spaced {
  margin-top: 32px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 24px;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: #FFFFFF;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer__social-link:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.footer__social-link img {
  display: block;
  border-radius: 50%;
}

.footer__copyright {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.8);
}


/* responsive - tablet (max 1024px) */
@media (max-width: 1024px) {

  /* navbar */
  .navbar__container {
    padding: 12px 30px;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__menu {
    position: fixed;
    top: 0;
    left: auto;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #FFFFFF;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 40px 40px;
    gap: 28px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
    transition: right 0.35s ease;
    z-index: 1050;
    transform: none;
  }

  .navbar__menu.open {
    right: 0;
  }

  .navbar__link {
    font-size: 20px;
  }

  .navbar__actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 16px 30px;
    justify-content: center;
    gap: 12px;
    z-index: 1060;
    transform: translateY(100%);
    transition: transform 0.35s ease;
    flex-wrap: wrap;
  }

  .navbar__menu.open~.navbar__actions,
  .navbar__actions.open {
    transform: translateY(0);
  }

  /* search gets its own row on tablet, keeps the icon size */
  .navbar__search {
    width: 100%;
    order: -1;
    justify-content: center;
  }

  .navbar__search-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
  }

  .navbar__search-field {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 0;
    height: 0;
    opacity: 0;
  }

  .navbar__search-field.open {
    width: 100%;
    height: auto;
    opacity: 1;
  }

  .navbar__search-btn.hidden {
    display: none;
  }

  /* overlay behind the open nav drawer */
  .navbar__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .navbar__overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  /* hero */
  .hero__container {
    flex-direction: column;
    padding: 60px 30px;
    gap: 40px;
    align-items: flex-start;
    text-align: left;
  }

  .hero__search {
    width: 100%;
    max-width: 500px;
    padding-right: 0;
  }

  .hero__content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__title {
    font-size: 56px;
    line-height: 66px;
  }

  .hero__description {
    font-size: 20px;
    line-height: 30px;
    margin-left: 0;
    margin-right: 0;
  }

  .hero__buttons {
    justify-content: flex-start;
  }

  .hero__keywords {
    justify-content: flex-start;
  }

  /* explore */
  .explore {
    padding: 60px 0;
  }

  .explore__container {
    flex-direction: column;
    padding: 0 40px;
    gap: 40px;
  }

  .explore__left,
  .explore__right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .explore__image-wrapper {
    max-width: 320px;
    margin: 0 auto;
  }

  .summer__subtitle,
  .explore__subtitle {
    font-size: 56px;
    line-height: 66px;
  }

  .vendors__subtitle{
    font-size: 56px;
    line-height: 66px;
  }

  .summer__title,
  .vendors__title,
  .explore__title {
    font-size: 64px;
    line-height: 80px;
  }

  .explore__description {
    font-size: 20px;
    line-height: 28px;
  }

  /* about */
  .about {
    padding: 60px 0;
  }

  .about__container {
    padding: 0 40px;
  }

  .about__heading {
    font-size: 38px;
    line-height: 50px;
  }

  .about__description {
    font-size: 16px;
    line-height: 26px;
  }

  .about__image {
    border-radius: 14px;
  }

  /* performers */
  .performers {
    padding: 60px 0;
  }

  .performers__container {
    flex-direction: column;
    padding: 0 40px;
    gap: 40px;
  }

  .performers__left,
  .performers__right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .performers__image {
    max-width: 320px;
  }

  .performers__heading {
    font-size: 36px;
    line-height: 46px;
  }

  .performers__description {
    font-size: 16px;
    line-height: 26px;
  }

  /* international programs */
  .international {
    padding: 60px 0;
  }

  .international__container {
    flex-direction: column;
    padding: 0 40px;
    gap: 40px;
  }

  .international__left,
  .international__right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .international__image {
    max-width: 320px;
  }

  .international__heading {
    font-size: 36px;
    line-height: 46px;
  }

  .international__description {
    font-size: 16px;
    line-height: 26px;
  }

  /* summer programs */
  .summer {
    padding: 60px 0;
  }

  .summer__container {
    flex-direction: column;
    padding: 0 40px;
    gap: 40px;
  }

  .summer__left,
  .summer__right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .summer__image {
    max-width: 320px;
  }

  .summer__heading {
    font-size: 40px;
    line-height: 50px;
  }

  .summer__heading span {
    font-size: 48px;
    line-height: 58px;
  }

  .summer__description {
    font-size: 18px;
    line-height: 28px;
  }

  /* vendors */
  .vendors {
    padding: 60px 0;
  }

  .vendors__container {
    flex-direction: column;
    padding: 0 40px;
    gap: 40px;
  }

  .vendors__left,
  .vendors__right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .vendors__image {
    max-width: 320px;
  }

  /* .vendors__heading {
    font-size: 40px;
    line-height: 50px;
  }

  .vendors__heading span {
    font-size: 48px;
    line-height: 58px;
  } */

  .vendors__description {
    font-size: 18px;
    line-height: 28px;
  }

  /* college */
  .college {
    padding: 60px 0;
  }

  .college__container {
    flex-direction: column;
    padding: 0 40px;
    gap: 40px;
  }

  .college__left {
    flex: 0 0 100%;
    max-width: 100%;
    order: 2; /* text/slider goes below image on tablet */
  }

  .college__right {
    flex: 0 0 100%;
    max-width: 100%;
    order: 1;
  }

  .college__image-wrapper {
    max-width: 320px;
    margin: 0 auto;
  }

  .college__title {
    font-size: 56px;
    line-height: 66px;
  }

  .college__description {
    font-size: 20px;
    line-height: 30px;
  }

  /* footer */
  .footer {
    padding: 60px 0 32px;
  }

  .footer__container {
    padding: 0 40px;
  }

  .footer__heading {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 36px;
  }

  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
  }

  .footer__bottom {
    align-items: center;
    gap: 20px;
  }
}


/* responsive - mobile (max 576px) */
@media (max-width: 576px) {

  /* navbar */
  .navbar__container {
    padding: 10px 20px;
  }

  .navbar__logo img {
    height: 40px;
  }

  .navbar__menu {
    width: 100%;
    right: -100%;
    padding: 90px 30px 30px;
  }

  .navbar__btn--login,
  .navbar__btn--signup {
    padding: 10px 22px;
    font-size: 14px;
  }

  .navbar__search-field.open {
    width: 220px;
  }

  /* hero */
  .hero {
    min-height: 90vh;
  }

  .hero__container {
    padding: 40px 20px;
    gap: 30px;
  }

  .hero__search {
    max-width: 100%;
  }

  .hero__search-inputs {
    padding: 0 10px;
  }

  .hero__input {
    font-size: 14px;
    padding: 10px 0;
  }

  .hero__title {
    font-size: 34px;
    line-height: 42px;
  }

  .hero__description {
    font-size: 14px;
    line-height: 22px;
  }

  .hero__btn {
    padding: 10px 12px;
    font-size: 13px;
    flex: 1 1 calc(33.333% - 10px);
  }

  .hero__buttons {
    gap: 10px;
    justify-content: flex-start;
  }

  /* explore */
  .explore__container {
    padding: 0 20px;
  }

  .explore__image-wrapper {
    max-width: 280px;
  }

  .explore__subtitle {
    font-size: 34px;
    line-height: 42px;
  }

  .explore__title {
    font-size: 34px;
    line-height: 42px;
  }

  .explore__description {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 24px;
  }

  .slider-nav {
    width: 36px;
    height: 36px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    top: 35%; /* align with image area, not title */
  }

  .slider-nav svg {
    width: 18px;
    height: 18px;
  }

  .slider-nav--prev {
    left: -8px;
  }

  .slider-nav--next {
    right: -8px;
  }

  .slider-card {
    flex-direction: column;
    padding: 16px;
    gap: 16px;
  }

  .slider-card__image {
    width: 100%;
    height: 180px;
  }

  .slider-card__title {
    font-size: 20px;
  }
  
  .explore__btn {
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }
  
  .explore__actions {
    flex-direction: column;
    width: 100%;
  }

  /* about */
  .about__container {
    padding: 0 20px;
  }

  .about__heading {
    font-size: 28px;
    line-height: 38px;
  }

  .about__description {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 28px;
  }

  .about__image {
    border-radius: 10px;
  }

  /* performers */
  .performers__container {
    padding: 0 20px;
  }

  .performers__image {
    max-width: 260px;
  }

  .performers__heading {
    font-size: 28px;
    line-height: 38px;
  }

  .performers__description {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 24px;
  }

  .performers__btn {
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }

  .performers__actions {
    flex-direction: column;
    width: 100%;
  }

  /* international programs */
  .international__container {
    padding: 0 20px;
  }

  .international__image {
    max-width: 260px;
  }

  .international__heading {
    font-size: 28px;
    line-height: 38px;
  }

  .international__description {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 24px;
  }

  .international__btn {
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }

  .international__actions {
    flex-direction: column;
    width: 100%;
  }

  /* summer programs */
  .summer__container {
    padding: 0 20px;
  }

  .summer__image {
    max-width: 260px;
  }

  .summer__heading {
    font-size: 28px;
    line-height: 38px;
  }

  .summer__heading span {
    font-size: 34px;
    line-height: 44px;
  }

  .summer__description {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 24px;
  }

  .summer__btn {
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }

  .summer__actions {
    flex-direction: column;
    width: 100%;
  }

  /* vendors */
  .vendors__container {
    padding: 0 20px;
  }

  .vendors__image {
    max-width: 260px;
  }

  .vendors__heading {
    font-size: 28px;
    line-height: 38px;
  }

  .vendors__heading span {
    font-size: 34px;
    line-height: 44px;
  }

  .vendors__description {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 24px;
  }

  .vendors__btn {
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }

  .vendors__actions {
    flex-direction: column;
    width: 100%;
  }

  /* college */
  .college__container {
    padding: 0 20px;
  }

  .college__image-wrapper {
    max-width: 280px;
  }

  .college__title {
    font-size: 34px;
    line-height: 42px;
  }

  .college__description {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 24px;
  }

  .college__btn {
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }

  .college__actions {
    flex-direction: column;
    width: 100%;
  }

  /* footer */
  .footer {
    padding: 48px 0 28px;
  }

  .footer__container {
    padding: 0 20px;
  }

  .footer__heading {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 28px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
  }

  .footer__bottom {
    align-items: center;
    gap: 16px;
  }

  .footer__socials {
    gap: 10px;
  }

  .footer__social-link img {
    width: 38px;
    height: 38px;
  }

  .footer__copyright {
    font-size: 13px;
    text-align: center;
  }
}

.results-body {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.results-sidebar--left {
  width: 100%;
}

.results-main {
  min-width: 0;
}

@media (max-width: 991px) {
  .results-body {
    grid-template-columns: 1fr;
  }
}