@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --v2-primary: #0d5fe9;
  --v2-primary-dark: #0a47ae;
  --v2-accent: #ff9d3c;
  --v2-ink: #152034;
  --v2-heading: #152034;
  --v2-text: #4d5f7f;
  --v2-muted: #6a7a95;
  --v2-surface: #ffffff;
  --v2-surface-soft: #f4f8ff;
  --v2-border: #d8e3f4;
  --v2-shadow-soft: 0 10px 24px rgba(20, 44, 92, 0.1);
  --v2-shadow: 0 16px 40px rgba(15, 40, 86, 0.14);
  --v2-shadow-strong: 0 24px 55px rgba(7, 24, 62, 0.22);
  --v2-radius-sm: 12px;
  --v2-radius: 18px;
  --v2-radius-lg: 24px;
  --v2-container: 1240px;
  --v2-space-section: clamp(50px, 6vw, 90px);
  --v2-space-section-tight: clamp(34px, 4vw, 56px);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

body {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--v2-text);
  background: radial-gradient(circle at 8% -10%, #e8f1ff 0%, #f8fbff 34%, #ffffff 72%);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.65em;
  color: var(--v2-heading);
  font-family: 'Manrope', 'Segoe UI', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.015em;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--v2-text);
}

a {
  color: var(--v2-primary);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

a:hover,
a:focus {
  color: var(--v2-primary-dark);
  text-decoration: none;
}

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

.section_gap {
  padding: var(--v2-space-section) 0;
}

.section_gap + .section_gap {
  padding-top: var(--v2-space-section-tight);
}

.main_title {
  margin-bottom: clamp(22px, 3.4vw, 44px);
}

.main_title h2 {
  font-size: clamp(32px, 3.3vw, 50px);
  line-height: 1.15;
  margin-top: 0;
  margin-bottom: 12px;
}

.main_title p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--v2-muted);
  max-width: 740px;
}

.container {
  max-width: var(--v2-container);
}

.header_area {
  position: sticky;
  top: 0;
  z-index: 1200;
}

.header_area .header-top {
  background: linear-gradient(94deg, #0a58ca, #2e89fb);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.header_area .header-top .header-top-left,
.header_area .header-top .header-top-right {
  min-height: 42px;
  display: flex;
  align-items: center;
}

.header_area .header-top .header-top-left {
  gap: 18px;
  flex-wrap: wrap;
}

.header_area .header-top .header-top-left a,
.header_area .header-top .header-top-right a,
.top-hours {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.header_area .header-top .header-top-left .lnr {
  margin-right: 5px;
  font-size: 14px;
}

.header_area .main_menu {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(187, 202, 228, 0.42);
  box-shadow: 0 6px 24px rgba(10, 40, 94, 0.09);
}

.header_area.navbar_fixed .main_menu {
  position: relative;
  top: 0;
  left: auto;
  right: auto;
  width: auto;
  transform: none;
  box-shadow: 0 12px 30px rgba(8, 33, 80, 0.14);
}

.header_area .navbar {
  min-height: 84px;
  padding: 0;
}

.header_area .navbar .navbar-brand img,
.navbar-brand img {
  width: auto;
  max-height: 76px;
}

.header_area .navbar .nav .nav-item {
  margin-right: 24px;
}

.header_area .navbar .nav .nav-item:last-child {
  margin-right: 0;
}

.header_area .navbar .nav .nav-item .nav-link {
  position: relative;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2d3850;
  line-height: 84px;
  padding: 0;
  display: inline-flex;
  align-items: center;
}

.header_area .navbar .nav .nav-item .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 23px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--v2-primary), #59a2ff);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}

.header_area .navbar .nav .nav-item:hover > .nav-link,
.header_area .navbar .nav .nav-item.active > .nav-link,
.header_area .navbar .nav .nav-item .nav-link:focus {
  color: var(--v2-primary);
}

.header_area .navbar .nav .nav-item:hover > .nav-link::after,
.header_area .navbar .nav .nav-item.active > .nav-link::after,
.header_area .navbar .nav .nav-item .nav-link:focus::after {
  transform: scaleX(1);
}

.header_area .navbar .search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--v2-border);
  color: #4d5e7e;
}

.header_area .navbar .search:hover {
  color: #ffffff;
  background: var(--v2-primary);
  border-color: var(--v2-primary);
}

.header_area .navbar .nav .nav-item.submenu {
  position: relative;
}

.header_area .navbar .nav .nav-item.submenu ul {
  border: 1px solid var(--v2-border);
  border-radius: 14px;
  box-shadow: var(--v2-shadow);
  min-width: 245px;
  padding: 8px;
}

.header_area .navbar .nav .nav-item.submenu ul .nav-item {
  margin-right: 0;
}

.header_area .navbar .nav .nav-item.submenu ul .nav-item .nav-link {
  line-height: 1.25;
  padding: 11px 12px;
  border-radius: 10px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 700;
}

.header_area .navbar .nav .nav-item.submenu ul .nav-item .nav-link::after {
  display: none;
}

.header_area .navbar .nav .nav-item.submenu ul .nav-item:hover > .nav-link {
  color: var(--v2-primary-dark);
  background: var(--v2-surface-soft);
}

.navbar-toggler {
  border: 1px solid var(--v2-border);
  border-radius: 10px;
  padding: 8px 10px;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 95, 233, 0.2);
}

.navbar-toggler .icon-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: #35507f;
}

#search_input_box {
  background: linear-gradient(90deg, #0e57c9, #2e90ff);
}

#search_input_box .form-control {
  color: #ffffff;
  font-weight: 600;
}

#search_input_box .form-control::placeholder {
  color: rgba(255, 255, 255, 0.82);
}

.primary-btn,
.search_course_wrap .search_course_btn,
.button1,
.btn.primary-btn,
.search_course_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  color: #ffffff;
  background: linear-gradient(135deg, #0d5fe9 0%, #2d91ff 68%, #ff9d3c 100%);
  box-shadow: 0 12px 26px rgba(13, 95, 233, 0.28);
}

.button1 {
  min-height: 46px;
  padding: 0 22px;
}

.primary-btn:hover,
.search_course_wrap .search_course_btn:hover,
.button1:hover,
.btn.primary-btn:hover,
.search_course_btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(13, 95, 233, 0.33);
}

.primary-btn:focus,
.button1:focus,
.search_course_btn:focus,
.btn.primary-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 157, 60, 0.28);
}

.home_banner_area {
  min-height: clamp(520px, 86vh, 760px);
}

.home_banner_area .banner_inner {
  min-height: inherit;
  display: flex;
  align-items: center;
  background: linear-gradient(103deg, rgba(9, 33, 85, 0.9), rgba(10, 78, 170, 0.53)), url('../img/banner/home-banner.jpg') center center/cover no-repeat;
  position: relative;
}

.home_banner_area .banner_inner::before {
  content: '';
  position: absolute;
  right: -110px;
  bottom: -140px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 157, 60, 0.35) 0%, rgba(255, 157, 60, 0) 70%);
  pointer-events: none;
}

.home_banner_area .banner_inner .banner_content {
  max-width: 690px;
  padding: clamp(24px, 3.2vw, 42px);
  border-radius: var(--v2-radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: var(--v2-shadow-strong);
  backdrop-filter: blur(5px);
}

.home_banner_area .banner_inner .banner_content h2 {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.12;
  margin-bottom: 14px;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.home_banner_area .banner_inner .banner_content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
}

.home-page .hero-trust-list {
  list-style: none;
  margin: 16px 0 6px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-page .hero-trust-list li {
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.search_course_wrap {
  margin-top: 22px;
}

.services {
  max-width: 1260px;
  margin: 0 auto;
  padding: 34px 20px;
  border-radius: var(--v2-radius-lg);
  border: 1px solid #deebfb;
  background: linear-gradient(180deg, #f8fbff 0%, #eff6ff 100%);
}

.services h1 {
  font-size: clamp(34px, 3.5vw, 48px);
  margin-bottom: 10px;
  text-align: center;
}

.services .services-intro {
  max-width: 720px;
  text-align: center;
  margin: 0 auto 28px;
}

.services .cen {
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: visible;
}

.cen {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service,
.card,
.single_event,
.single_feature,
.single_fact,
.register_form,
.info-card,
.panel-card,
.timeline-card,
.testimonial-card {
  background: var(--v2-surface);
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  box-shadow: var(--v2-shadow-soft);
}

.service,
.card,
.single_event,
.info-card,
.panel-card,
.timeline-card,
.testimonial-card {
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.service:hover,
.card:hover,
.single_event:hover,
.info-card:hover,
.panel-card:hover,
.timeline-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--v2-shadow);
  border-color: #cdddf5;
}

.service {
  display: block;
  width: auto;
  margin: 0;
  box-sizing: border-box;
  cursor: default;
  padding: 26px;
  text-align: left;
  min-height: 252px;
}

.service i {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--v2-primary);
  background: #e9f2ff;
}

.service h2 {
  font-size: clamp(21px, 2vw, 25px);
  line-height: 1.25;
  margin-bottom: 10px;
}

.service p {
  margin-bottom: 0;
}

.home-page .Tours,
.Tours {
  margin-top: clamp(36px, 4.8vw, 50px);
}

.titlepage h2 {
  font-size: clamp(33px, 3vw, 46px);
  text-align: center;
  margin-bottom: 18px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.country-card {
  overflow: hidden;
}

.country-card .content {
  padding: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.country-card .content img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
}

.country-card .content h4 {
  margin: 0;
  font-size: 22px;
}

.country-card .content p {
  margin: 0;
  flex-grow: 1;
}

.country-card .button1 {
  align-self: flex-start;
}

.testimonial_area {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.single_testimonial {
  padding: 26px;
  border-radius: var(--v2-radius);
  border: 1px solid var(--v2-border);
  background: #ffffff;
  box-shadow: var(--v2-shadow-soft);
}

.single_testimonial .testimonial_head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.single_testimonial .testimonial_head h4 {
  margin-bottom: 0;
  font-size: 20px;
}

.single_testimonial .testimonial_head img {
  width: 28px;
  height: 28px;
}

.single_testimonial .review i {
  color: #ffc24c;
  margin-right: 2px;
  font-size: 13px;
}

.single_testimonial .testimonial_content p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.75;
}

.owl-thumbs {
  margin-top: 24px;
  gap: 12px;
}

.owl-thumb-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--v2-border);
  cursor: pointer;
}

.owl-thumb-item img {
  width: 78px;
  height: 78px;
  object-fit: cover;
}

.registration_area {
  background: linear-gradient(130deg, #0e3c93, #0d65d8);
}

.consultation_highlights {
  background: rgba(255, 255, 255, 0.09);
  border-radius: var(--v2-radius);
  border: 1px solid rgba(255, 255, 255, 0.26);
  padding: 28px;
}

.consultation_intro h1 {
  color: #ffffff;
  margin-bottom: 10px;
}

.consultation_intro p {
  color: rgba(255, 255, 255, 0.9);
}

.highlight_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.highlight_item {
  text-align: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 14px 10px;
}

.highlight_item h3 {
  margin-bottom: 2px;
  color: #ffffff;
  font-size: 30px;
}

.highlight_item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
}

.register_form {
  padding: 26px;
}

.register_form h3 {
  margin-bottom: 4px;
}

.register_form p {
  margin-bottom: 16px;
}

.register_form input,
.form-control,
textarea {
  border: 1px solid var(--v2-border);
  border-radius: 11px;
  background: #ffffff;
  color: var(--v2-heading);
  font-size: 15px;
  min-height: 46px;
  padding: 10px 14px;
}

textarea.form-control {
  min-height: 170px;
}

.register_form input:focus,
.form-control:focus,
textarea:focus {
  outline: none;
  border-color: #8cb8ff;
  box-shadow: 0 0 0 4px rgba(13, 95, 233, 0.12);
}

.events_area,
.department_area,
.registration_area,
.Tours {
  position: relative;
  z-index: 2;
  scroll-margin-top: 120px;
}

.home-page .events_area {
  padding: clamp(66px, 7vw, 82px) 0 clamp(54px, 6vw, 70px);
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.home-page .events_area .main_title {
  margin-bottom: clamp(28px, 3vw, 38px);
}

.home-page .events_area .main_title p {
  margin-left: auto;
  margin-right: auto;
}

.home-page .events_area .single_event {
  overflow: hidden;
  border-radius: var(--v2-radius);
  margin-bottom: 20px;
}

.home-page .events_area .single_event .row {
  margin-right: 0;
  margin-left: 0;
}

.home-page .events_area .single_event [class*='col-'] {
  padding-right: 0;
  padding-left: 0;
}

.home-page .events_area .event_thumb,
.home-page .events_area .event_thumb img {
  height: 100%;
}

.home-page .events_area .event_thumb img {
  width: 100%;
  min-height: 225px;
  object-fit: cover;
}

.home-page .events_area .event_details {
  min-height: 225px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-page .events_area .event_details p {
  margin-bottom: 9px;
  color: var(--v2-text);
}

.home-page .events_area .event_details p:first-child {
  color: var(--v2-primary-dark);
  font-size: 17px;
  font-weight: 700;
}

.home-page .events_area .event_details h4 {
  margin-bottom: 8px;
  line-height: 1.28;
  font-size: clamp(26px, 2.1vw, 36px);
}

.home-page .events_area .event_details h4 a {
  color: var(--v2-heading);
}

.home-page .events_area .event_details h4 a:hover {
  color: var(--v2-primary);
}

.inner-page .navbar-brand img {
  width: auto;
  max-height: 76px;
}

.banner_area.inner-banner {
  min-height: 0;
  background: none;
}

.inner-banner .banner_inner {
  min-height: 390px;
  background: linear-gradient(105deg, rgba(8, 35, 94, 0.88), rgba(6, 75, 148, 0.56)), url('../img/banner/banner.jpg') center center/cover no-repeat;
}

.inner-banner .banner_content {
  max-width: 760px;
  margin: 0 auto;
}

.inner-banner .banner_content h1 {
  color: #ffffff;
  font-size: clamp(34px, 4.2vw, 56px);
  margin-bottom: 10px;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.inner-banner .banner_content p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
}

.page_link {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page_link a {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page_link a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
}

.study-hero .banner_inner {
  min-height: 410px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.study-canada-hero .banner_inner {
  background-image: linear-gradient(112deg, rgba(10, 37, 97, 0.82), rgba(174, 27, 53, 0.34)), url('../img/hero-study-canada.png');
}

.study-uk-hero .banner_inner {
  background-image: linear-gradient(112deg, rgba(7, 30, 86, 0.86), rgba(37, 77, 164, 0.34)), url('../img/hero-study-uk.png');
}

.study-australia-hero .banner_inner {
  background-image: linear-gradient(112deg, rgba(8, 32, 93, 0.82), rgba(195, 132, 36, 0.34)), url('../img/hero-study-australia.png');
}

.study-newzealand-hero .banner_inner {
  background-image: linear-gradient(112deg, rgba(9, 33, 95, 0.82), rgba(12, 81, 152, 0.36)), url('../img/hero-study-newzealand.png');
}

.study-usa-hero .banner_inner {
  background-image: linear-gradient(112deg, rgba(8, 30, 89, 0.84), rgba(155, 29, 52, 0.35)), url('../img/hero-study-usa.png');
}

.study-hero .banner_content {
  padding: 30px 26px;
  border-radius: var(--v2-radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 18px 36px rgba(3, 25, 76, 0.28);
  backdrop-filter: blur(4px);
}

.study-hero .banner_content h1 {
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

.study-hero .hero-pill-list {
  list-style: none;
  margin: 16px 0 12px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.study-hero .hero-pill-list li {
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.study-hero .page_link a {
  color: rgba(255, 255, 255, 0.92);
}

.study-hero .page_link a:hover {
  color: #ffffff;
}

.page-section {
  position: relative;
}

.page-section > .container > .row {
  row-gap: 20px;
}

.section-soft {
  background: linear-gradient(180deg, #f8fbff 0%, #edf5ff 100%);
}

.section-title {
  font-size: clamp(30px, 3vw, 44px);
  margin-bottom: 15px;
}

.section-intro {
  font-size: 17px;
  line-height: 1.8;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.info-card {
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.info-card img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 14px;
}

.info-card h4 {
  font-size: 21px;
  margin-bottom: 8px;
}

.info-card p {
  margin-bottom: 0;
}

.info-card .button1 {
  margin-top: auto;
}

.panel-card {
  padding: 22px;
}

.panel-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.panel-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-top: 14px;
  margin-bottom: 5px;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--v2-text);
}

.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: var(--v2-primary);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline-card {
  padding: 20px;
}

.timeline-card span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  background: var(--v2-primary);
  margin-bottom: 10px;
}

.timeline-card h4 {
  margin-bottom: 6px;
  font-size: 20px;
}

.timeline-card p {
  margin-bottom: 0;
}

.cta-band {
  padding-bottom: clamp(44px, 5.4vw, 74px);
}

.cta-shell {
  text-align: center;
  background: linear-gradient(122deg, rgba(7, 33, 92, 0.95), rgba(13, 95, 233, 0.88));
  border-radius: 22px;
  padding: clamp(28px, 4vw, 44px) 24px;
  box-shadow: 0 20px 42px rgba(7, 30, 86, 0.31);
}

.cta-shell h3 {
  color: #ffffff;
  font-size: clamp(30px, 3vw, 42px);
  margin-bottom: 8px;
}

.cta-shell p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 720px;
  margin: 0 auto 18px;
}

.rounded-card {
  border-radius: var(--v2-radius);
  box-shadow: var(--v2-shadow);
}

.google-maps iframe {
  width: 100%;
  border-radius: var(--v2-radius);
  border: 1px solid var(--v2-border);
  min-height: 380px;
}

.contact_form.panel-card {
  padding: 24px 24px 14px;
}

.contact_form .form-group {
  margin-bottom: 14px;
}

.contact_form .btn.primary-btn {
  min-width: 190px;
}

.site-footer {
  margin-top: 0;
  background: linear-gradient(180deg, #122643 0%, #0b1a30 100%);
  padding-top: 52px;
}

.contact_area {
  margin-bottom: 0 !important;
}

.site-footer h6 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 16px;
}

.site-footer p,
.site-footer li,
.site-footer a,
.site-footer .copyright-text {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-logo {
  width: auto;
  max-height: 80px;
  margin-bottom: 12px;
}

.footer-about {
  max-width: 520px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}

.footer-contact-list li i {
  margin-top: 4px;
  color: #d6e6ff;
}

.site-footer hr {
  border-color: rgba(255, 255, 255, 0.14);
}

.copyright-text {
  margin-bottom: 0;
}

.social-icons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.social-icons a:hover {
  background: #ffffff;
  color: #0d57cc;
}

.overlay1 {
  z-index: 3000;
}

.popup {
  border-radius: var(--v2-radius);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1199px) {
  .header_area .navbar .nav .nav-item {
    margin-right: 16px;
  }

  .header_area .navbar .nav .nav-item .nav-link {
    font-size: 12px;
    letter-spacing: 0.03em;
  }

  .section-title {
    font-size: clamp(28px, 3vw, 38px);
  }
}

@media (max-width: 991px) {
  .section_gap {
    padding: clamp(46px, 8.2vw, 64px) 0;
  }

  .section_gap + .section_gap {
    padding-top: clamp(28px, 5.4vw, 42px);
  }

  .header_area .header-top {
    display: none;
  }

  .header_area .navbar {
    min-height: 72px;
    padding: 8px 0;
  }

  .header_area .navbar .navbar-brand img,
  .navbar-brand img {
    max-height: 56px;
  }

  .header_area .navbar .nav .nav-item,
  .header_area .navbar .nav .nav-item:last-child {
    margin-right: 0;
  }

  .header_area .navbar .nav .nav-item .nav-link {
    width: 100%;
    line-height: 1.45;
    padding: 11px 0;
  }

  .header_area .navbar .nav .nav-item .nav-link::after {
    bottom: 6px;
  }

  .header_area.navbar_fixed .main_menu .navbar .nav .nav-item .nav-link {
    line-height: 1.45;
  }

  .navbar-collapse {
    margin-top: 10px;
    padding: 10px 16px;
    border-radius: 14px;
    border: 1px solid var(--v2-border);
    background: #ffffff;
    box-shadow: var(--v2-shadow);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .header_area .navbar .nav .nav-item.submenu ul {
    position: static;
    border: 0;
    box-shadow: none;
    margin-top: 2px;
    padding: 4px 0 4px 12px;
    min-width: 100%;
  }

  .header_area .navbar .nav .nav-item.submenu ul .nav-item .nav-link {
    font-size: 13px;
    padding: 9px 0;
  }

  .home_banner_area {
    min-height: 560px;
  }

  .home_banner_area .banner_inner .banner_content {
    padding: 26px 20px;
  }

  .home_banner_area .banner_inner .banner_content h2 {
    font-size: clamp(30px, 7vw, 46px);
  }

  .services {
    padding: 24px 14px;
  }

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

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

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

  .home-page .events_area {
    padding: 58px 0 48px;
  }

  .home-page .events_area .main_title {
    margin-bottom: 32px;
  }

  .home-page .events_area .event_thumb img,
  .home-page .events_area .event_details {
    min-height: 205px;
  }

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

  .study-hero .banner_inner {
    min-height: 340px;
  }

  .social-icons {
    justify-content: flex-start;
    margin-top: 12px;
  }
}

@media (max-width: 575px) {
  body {
    font-size: 15px;
  }

  .main_title h2 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .main_title p,
  .section-intro {
    font-size: 15px;
  }

  .primary-btn,
  .search_course_wrap .search_course_btn,
  .button1,
  .btn.primary-btn,
  .search_course_btn {
    width: 100%;
  }

  .home-page .hero-trust-list li,
  .study-hero .hero-pill-list li {
    width: 100%;
    text-align: center;
  }

  .cen,
  .grid-container,
  .info-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .service,
  .register_form,
  .info-card,
  .panel-card,
  .timeline-card {
    padding: 18px;
  }

  .home-page .events_area .single_event {
    border-radius: 16px;
  }

  .home-page .events_area .event_thumb img {
    min-height: 210px;
  }

  .home-page .events_area .event_details {
    min-height: 0;
    padding: 18px;
  }

  .inner-banner .banner_inner {
    min-height: 280px;
  }

  .study-hero .banner_inner {
    min-height: 310px;
  }

  .google-maps iframe {
    min-height: 250px;
  }

  .site-footer {
    text-align: left;
  }
}
