:root {
  --navy: #071E45;
  --navy-light: #0f2f68;
  --teal: #007878;
  --teal-light: #009a9a;
  --gold: #A8791E;
  --gold-light: #C9952A;
  --blue-accent: #0E52A0;
  --bg: #ffffff;
  --soft: #EEF5F5;
  --softBlue: #E0EFF5;
  --text: #111827;
  --muted: #4B5563;
  --border: #C2D8D8;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 8px 32px rgba(7, 30, 69, .13);
  --shadow-sm: 0 4px 16px rgba(7, 30, 69, .10);
  --shadow-lg: 0 20px 60px rgba(7, 30, 69, .18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

form input,
.number-cs {
  font-family: 'Nunito', sans-serif;
}

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

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

.icon-img {
  height: 25px;
  width: 25px;
}

.user-tick-icon {
  height: 42px;
  width: 42px;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-header {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 24px;
}

/*  HEADER  */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 120, 120, .18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand img {
  height: 50px;
  width: auto;
  border-radius: 8px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.menu a {
  color: var(--muted);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 10px;
  transition: .2s background, .2s color;
}

.menu a:hover {
  background: var(--softBlue);
  color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  padding: 11px 22px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: .2s transform, .2s box-shadow, .2s background, .2s border-color, .2s color;
  white-space: nowrap;
}

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

.btn-primary {
  background: linear-gradient(90deg, #006060 0%, #004e68 50%, #071428 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 96, 96, .40);
}

.btn-primary:hover {
  background: linear-gradient(90deg, #007272 0%, #005e7a 50%, #091e3a 100%);
  box-shadow: 0 6px 22px rgba(0, 96, 96, .55);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(7, 30, 69, .25);
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--softBlue);
  border-color: var(--navy);
}

/*  HAMBURGER BUTTON  */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  transition: .2s background;
  padding: 0;
  flex-shrink: 0;
}

.hamburger:hover {
  background: var(--softBlue);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 4px;
  transition: .3s transform, .3s opacity, .3s width;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/*  DRAWER OVERLAY  */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 30, 69, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/*  DRAWER  */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 300px;
  max-width: 85vw;
  background: #fff;
  z-index: 400;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(7, 30, 69, .22);
}

.drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}

.drawer-header img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}

.drawer-close {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--soft);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--navy);
  transition: .2s background, .2s transform;
  flex-shrink: 0;
}

.drawer-close:hover {
  background: var(--softBlue);
  transform: rotate(90deg);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px;
}

.drawer-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 8px 6px;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.drawer-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 12px;
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  transition: .2s background, .2s color;
}

.drawer-links a:hover {
  background: var(--softBlue);
  color: var(--navy);
}

.drawer-footer {
  padding: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* position: fixed; */
  width: 100%;
  /* bottom: 0; */
}

.drawer-footer .btn {
  width: 100%;
  padding: 14px 22px;
  font-size: 16px;
  border-radius: 14px;
}

.drawer-footer .contact-mini {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

.drawer-footer .contact-mini a {
  color: var(--teal);
  font-weight: 600;
}

body.drawer-open {
  overflow: hidden;
}

/*  HERO  */
.hero {
  background:
    radial-gradient(ellipse 800px 500px at 5% 10%, rgba(0, 120, 120, .10), transparent 60%),
    radial-gradient(ellipse 700px 400px at 95% 20%, rgba(168, 121, 30, .10), transparent 60%),
    linear-gradient(160deg, #E0EFF5 0%, #ffffff 50%, #EAF2F0 100%);
  border-bottom: 1px solid rgba(0, 120, 120, .15);
  overflow: hidden;
}

.hero-inner {
  padding: 72px 0 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(0, 120, 120, .09);
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 120, 120, .22);
  margin-bottom: 18px;
}

.kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.7);
  }
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  line-height: 1.06;
  color: var(--navy);
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

h1 em {
  font-style: italic;
  color: var(--gold);
}

.subhead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 50ch;
  margin-bottom: 28px;
}

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

.hero-card {
  background: #fff;
  border: 1px solid rgba(0, 120, 120, .18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--blue-accent));
  border-radius: var(--radius) var(--radius) 0 0;
}

.hero-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 16px;
}

.hero-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
}

.hero-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 6px;
  background: rgba(0, 120, 120, .12);
  color: var(--teal);
  font-weight: 900;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/*  SECTIONS  */
section {
  padding: 72px 0;
}

.soft-bg {
  background: var(--soft);
}

.blue-bg {
  background: var(--softBlue);
}

.section-label {
  display: inline-block;
  color: var(--teal);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.section-head-left {
  max-width: 560px;
}

.section-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 6px;
}

/*  KPI STRIP  */
.kpi-strip {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.kpi {
  background: #fff;
  padding: 24px 20px;
  text-align: center;
  transition: .2s background;
}

.kpi:hover {
  background: var(--softBlue);
}

.kpi-val {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.kpi-label {
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

/*  CARDS  */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.card {
  background: #fff;
  border: 1px solid rgba(0, 120, 120, .14);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: .25s transform, .25s box-shadow, .25s border-color;
  height: 100%;
}



.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 120, 120, .32);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 120, 120, .10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(0, 120, 120, .16);
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

/*  WHO WE ARE - SPLIT  */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.note {
  margin-top: 16px;
  background: rgba(168, 121, 30, .09);
  border: 1px solid rgba(168, 121, 30, .25);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: #6a4a10;
  font-size: 16px;
  line-height: 1.6;
}

.note b {
  color: #7a5812;
}

/*  JOURNEY  */
.journey {
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 120, 120, .14);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: .2s transform, .2s border-color;
}

.step:hover {
  transform: translateX(6px);
  border-color: rgba(0, 120, 120, .35);
}

.dot {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex: 0 0 38px;
  /* font-family: 'Playfair Display', serif; */
}

.step-body b {
  display: block;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
}

.step-body span {
  color: var(--muted);
  font-size: 16px;
}

/*  COLLEGES  */
.colleges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.college {
  background: #fff;
  border: 1px solid rgba(0, 120, 120, .14);
  border-radius: var(--radius);
  padding: 15px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: .25s transform, .25s box-shadow;
  cursor: pointer;
}

.college:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.college-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

.college-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
}

.college h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);
  line-height: 1.3;
}

.college p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  flex: 1;
}

.college-link {
  margin-top: 8px;
  color: var(--teal);
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: .2s gap;
}

.college-link:hover {
  gap: 8px;
}

/*  CONTACT  */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: #fff;
  outline: none;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  color: var(--text);
  transition: .2s border-color, .2s box-shadow;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 120, 120, .10);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 120, 120, .14);
  background: #fff;
}

.info-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 10px;
  background: var(--softBlue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.info-item b {
  display: block;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.info-item span {
  color: var(--muted);
  font-size: 16px;
}

/*  FINAL CTA  */
.final {
  background: linear-gradient(135deg, #071E45 0%, #05152e 60%, #040f22 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.final::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(0, 120, 120, .12);
  pointer-events: none;
}

.final::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(168, 121, 30, .10);
  pointer-events: none;
}

.final-inner {
  position: relative;
  z-index: 1;
  padding: 64px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.final h2 {
  color: #fff;
  font-size: 34px;
  margin-bottom: 10px;
}

.final p {
  color: rgba(255, 255, 255, .70);
  font-size: 16px;
  max-width: 56ch;
}

.btn-white {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(168, 121, 30, .35);
}

.btn-white:hover {
  background: linear-gradient(135deg, #d9a530, var(--gold-light));
  box-shadow: 0 12px 32px rgba(168, 121, 30, .50);
}

/*  FOOTER  */
footer {
  background: #060f1e;
  color: rgba(255, 255, 255, .8);
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 120, 120, .14);
}

.footer-brand p {
  color: rgba(255, 255, 255, .50);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 10px;
}

.footer-col-title {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, .65);
  font-size: 16px;
  transition: .2s color;
}

.footer-links a:hover {
  color: var(--teal-light);
}

.copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  color: rgba(255, 255, 255, .35);
  font-size: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

/*  BADGE  */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  color: var(--teal);
  background: rgba(0, 120, 120, .09);
  border: 1px solid rgba(0, 120, 120, .20);
}

/*  SOCIAL Floating  */
.social-float {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  position: fixed;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}

.soacial-icon {
  height: 45px;
  width: 45px;
  background-color: #fff;
  border-radius: 12px;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
  cursor: pointer;
}

.soacial-icon:hover {
  transform: scale(1.18) translateX(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
  background-color: #f0f0f0;
}

.soacial-icon-img {
  height: auto;
  width: auto;
  transition: transform .25s ease;
}

.soacial-icon:hover {
  transform: scale(1.08);
}

.facebook-icon {
  border-radius: 8px;
  padding: 3px;
}

.linkedin-icon-main {
  padding: 2px;
}


.drawer {
  display: none;
}

/*  RESPONSIVE  */
@media (max-width: 1024px) {
  .colleges {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 900px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 48px 0 40px;
  }

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

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

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

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

  .contact-wrap {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 990px) {
  .menu {
    display: none;
  }

  .nav>.btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .drawer {
    display: block !important;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 32px;
  }

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

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

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

  .final-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  section {
    padding: 48px 0;
  }
}

/* preloader  */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #EDF6FA;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity .5s ease, visibility .5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.preloader-logo {
  width: 200px;
  height: auto;
  animation: logoPulse 1.6s ease-in-out infinite;
}

@keyframes logoPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .75;
    transform: scale(.96);
  }
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(37, 150, 190, .15);
  border-radius: 999px;
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #1F6F8B, #2596be, #3CC3C3);
  border-radius: 999px;
  animation: fillBar 1.8s ease-in-out forwards;
}

@keyframes fillBar {
  0% {
    width: 0%;
  }

  60% {
    width: 75%;
  }

  100% {
    width: 100%;
  }
}

.preloader-text {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #2596be;
  animation: fadeInText 1s ease .4s both;
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* contact modal popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(7, 30, 69, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.modal-box {
  background: #fff;
  border-radius: var(--radius, 18px);
  width: 100%;
  max-width: 580px;
  max-height: 92vh;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(7, 30, 69, 0.28);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 120, 120, 0.16);
}

.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-scroll {
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.modal-scroll::-webkit-scrollbar {
  width: 5px;
}

.modal-scroll::-webkit-scrollbar-track {
  background: transparent;
  margin: 18px 0;
}

.modal-scroll::-webkit-scrollbar-thumb {
  background: rgb(84, 84, 84);
  border-radius: 999px;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(0, 120, 120, 0.12);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}

.modal-close {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: none;
  background: var(--soft, #eef5f5);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--navy, #071e45);
  transition:
    0.2s background,
    0.2s transform,
    0.2s color;
  margin-top: 2px;
}

.modal-close:hover {
  background: var(--softBlue, #e0eff5);
  transform: rotate(90deg);
  color: var(--teal, #007878);
}

.modal-body {
  padding: 24px 28px 28px;
}

body.modal-open {
  overflow: hidden;
}

/* @media (max-width: 640px) {
  .modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .modal-box {
    border-radius: 20px 20px 0 0;
    max-height: 70vh;
  }

  .modal-scroll {
    max-height: 70vh;
  }

  .modal-header {
    padding: 20px 20px 16px;
  }

  .modal-body {
    padding: 16px 20px 24px;
  }
} */
@media (max-width: 640px) {
  .modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .modal-box {
    border-radius: 20px 20px 0 0;
    max-height: 85svh;
    max-height: 85dvh;
  }

  .modal-scroll {
    max-height: 85svh;
    max-height: 85dvh;
  }

  .modal-header {
    padding: 20px 20px 16px;
  }

  .modal-body {
    padding: 16px 20px 24px;
  }
}

/*  BACK TO TOP  */
#backToTop {
  position: fixed;
  bottom: 28px;
  right: 15px;
  z-index: 100;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  transform: translateY(-3px);
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 45px;
  border-radius: 12px;
}

.progress-ring-bg {
  fill: #0f2d3e;
  stroke: rgba(0, 120, 120, .20);
  stroke-width: 2.5;
}

.progress-ring-fill {
  fill: none;
  stroke: var(--teal, #007878);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  transition: stroke-dashoffset .1s linear;
}

/* percent shows by default, arrow hidden */
.scroll-percent {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: opacity .2s ease, transform .2s ease;
}

.arrow-icon {
  position: absolute;
  z-index: 1;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .2s ease, transform .2s ease;
}

/* on hover — swap */
#backToTop:hover .scroll-percent {
  opacity: 0;
  transform: translateY(-4px);
}

#backToTop:hover .arrow-icon {
  opacity: 1;
  transform: translateY(0);
}