/* =========================================================
   UNIPULSE - FULL STYLESHEET
   ========================================================= */

:root {
  --navy: #19375a;
  --navy-dark: #152f4f;
  --rose: #6D2E46;
  --rose-dark: #5c0000;
  --blush: #fbeaec;
  --mist: #f7f8fa;
  --ink: #19375a;
  --body: #617083;
  --line: #e5e9ee;
  --white: #ffffff;
  --max: 1180px;
  --ease: cubic-bezier(.23, 1, .32, 1);
}

/* :root { */
  /* Main logo blue — use for headings, buttons, and navigation */
  /* --aawe-blue: #1685A3; */

  /* Bright sky blue — use for backgrounds, hover states, and highlights */
  /* --aawe-sky: #58C6D7;

  --aawe-light-sky: #b4e8f0; */

  /* Earth green — use for success messages, accents, and campus sections */
  /* --aawe-green: #2F8C4B; */

  /* Globe yellow — use sparingly for highlights and badges */
  /* --aawe-yellow: #D9A936; */

  /* Logo outline and strong text */
  /* --aawe-black: #050708; */

  /* Soft page background */
  /* --aawe-light: #F3FAFC; */

  /* Main body text */
  /* --aawe-text: #244454; */

  /* White */
  /* --aawe-white: #FFFFFF; */
  
/* } */


/* =========================================================
   RESET
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  color: var(--body);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all .2s var(--ease);
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}

/* =========================================================
   UTILITY / TOP BAR
   ========================================================= */

.utility-bar {
  height: 38px;
  background: #1685A3;
  color: #c6d2df;
  font-size: 12px;
  border-bottom: none;
}

.utility-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #cbd5e1;
}

.contact-info a:hover {
  color: #fff;
}

.contact-info i {
  color: var(--rose);
  font-size: 13px;
}

.phone {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: 22px;
}

.phone i {
  color: var(--rose);
  font-size: 13px;
}

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

.social-links a {
  color: #aebdcd;
  font-size: 13px;
}

.social-links a:hover {
  color: #fff;
}

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */

.site-header {
  position: relative;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
  /* color: var(--navy); */
}

.nav-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================================================
   HEADER LOGO
   ========================================================= */

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 60px;
  
  /* Removed padding, background, and box-shadow to match the clean image style */
  padding: 0;
  margin: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;

  transition: all .25s ease;
}

.logo img {
  display: block;
  width: auto;
  max-width: 160px;
  height: 44px;
  object-fit: contain;
}

.logo:hover {
  transform: translateY(-2px);
  background: transparent;
}

@media (max-width: 800px) {

  .logo {
    min-height: 52px;
    /* padding: 6px 11px;
    border-radius: 7px; */
  }

  .logo img {
    max-width: 135px;
    height: 38px;
  }

}

/* MENU */

.main-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}

.main-menu > a {
  position: relative;
  color: #737b87;
  white-space: nowrap;
  font-weight: 600;
  /* text-transform: uppercase;  */
  /* letter-spacing: 0.5px;
  padding-bottom: 5px;  */
}

.main-menu > a:hover {
  color: #095d66;;
}

/* ACTIVE MENU */

.main-menu > a.active {
  color: #095d66;;
}

.main-menu > a.active::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--rose);
}

/* DROPDOWN */

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #e6edf5;
  font-size: 14px;
}

.dropdown-toggle:hover {
  color: #fff;
}

.dropdown-toggle span {
  font-size: 13px;
}

/* Dropdown menu */

.dropdown-menu {
  display: none;
  position: absolute;
  top: 32px;
  right: -20px;
  min-width: 180px;
  padding: 8px;
  background: #fff;
  color: var(--ink);
  border-radius: 9px;
  box-shadow: 0 15px 35px rgba(15, 37, 64, .15);
}

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

.dropdown-menu a {
  display: block;
  padding: 8px 11px;
  color: var(--ink);
  border-radius: 5px;
  font-size: 13px;
}

.dropdown-menu a:hover {
  background: var(--blush);
  color: var(--rose);
}

/* =========================================================
   BUTTONS
   ========================================================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border: 0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s var(--ease);
}

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

.button:active {
  transform: scale(.97);
}

.button-primary {
  background: var(--rose);
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(197, 57, 85, .18);
}

.button-primary:hover {
  background: var(--rose);
}

.main-menu .button-primary {
  padding: 14px 30px;
  border-radius: 25px;
  box-shadow: none;
}

.button-light {
  background: #fff;
  color: var(--rose);
}

.button-light:hover {
  background: #fff5f6;
}

/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: #333333;
  font-size: 28px;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  padding: 85px 0 70px;
  background: #f0f4f8;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

/* EYEBROW */

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
}

.eyebrow {
  padding: 7px 14px;
  background: var( --blush);
  border-radius: 22px;
}

/* HERO TITLE */

.hero h1 {
  margin: 20px 0;
  color: var(--navy);
  font-size: 46px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero h1 em {
  color: var(--rose);
  font-style: normal;
}

/* HERO DESCRIPTION */

.hero p {
  max-width: 600px;
  margin: 0;
  color: #617083;
  font-size: 16px;
  line-height: 1.8;
}


/* ================================
   METRICS / TRACK RECORD
================================ */

.metrics-section {
  padding: 90px 0;
  background: #f7f9fc;
}

.metrics-heading {
  margin-bottom: 45px;
}

.metrics-heading h2 {
  margin-bottom: 12px;
}

.metrics-heading p {
  max-width: 550px;
  margin-left: auto;
}


/* Metrics Grid */

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}


/* Metric Card */

.metric-card {
  position: relative;
  padding: 30px 26px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
}


/* Icon */

.metric-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 22px;
  font-size: 24px;
}


/* Label */

.metric-card small {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #6b7280;
}


/* Number */

.metric-card strong {
  display: block;
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 18px;
}


/* Description */

.metric-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
}


/* Metric Colours */

.metric-green .metric-icon {
  background: #e8f7ef;
  color: #159957;
}

.metric-green strong {
  color: #159957;
}


.metric-blue .metric-icon {
  background: #eaf2ff;
  color: #2563eb;
}

.metric-blue strong {
  color: #2563eb;
}


.metric-orange .metric-icon {
  background: #fff2e5;
  color: #f97316;
}

.metric-orange strong {
  color: #f97316;
}


.metric-purple .metric-icon {
  background: #f2eaff;
  color: #8b5cf6;
}

.metric-purple strong {
  color: #8b5cf6;
}


/* ================================
   RESPONSIVE
================================ */

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

@media (max-width: 600px) {
  .metrics-section {
    padding: 65px 0;
  }

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

  .metric-card {
    padding: 26px 22px;
  }

  .metric-card strong {
    font-size: 36px;
  }

  .metrics-heading p {
    margin-left: 0;
  }
}

/* ================================
   AREAS OF EXPERIENCE
================================ */

.experience-section {
  padding: 80px 0;
  background: #ffffff;
}

.experience-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr;
  gap: 70px;
  align-items: center;
}

.experience-heading h2 {
  margin-top: 12px;
  max-width: 380px;
  font-size: 38px;
  line-height: 1.2;
}

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

.experience-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #f7f9fc;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  font-weight: 600;
  color: #1f2937;
  transition: all 0.3s ease;
}

.experience-item i {
  font-size: 21px;
  color: #153975;
  flex-shrink: 0;
}

.experience-item:hover {
  transform: translateY(-3px);
  border-color: #153975;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}


/* Mobile */

@media (max-width: 768px) {

  .experience-section {
    padding: 60px 0;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .experience-heading h2 {
    font-size: 32px;
  }

  .experience-content {
    grid-template-columns: 1fr;
  }

}

/* =========================================================
   HERO ACTIONS
   ========================================================= */

.hero-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-actions .button-primary {
  padding: 16px 30px;
  border-radius: 8px;
}

.video-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background: #fff;
  border-radius: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 7px 20px rgba(23, 46, 77, .08);
}

.video-link:hover {
  transform: translateY(-2px);
}

.play {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border-radius: 50%;
  color: var(--rose);
  font-size: 20px;
}

/* =========================================================
   HERO IMAGE
   ========================================================= */

.hero-visual {
  position: relative;
  padding: 0 0 13px 10px;
}

.hero-visual img {
  width: 100%;
  height: 505px;
  object-fit: cover;
  border-radius: 17px;
  /* box-shadow: 17px 20px 0 #f8e8ea; */
}

/* ACCREDITATION BADGE */

.trust-badge {
  position: absolute;
  left: -7px;
  bottom: 40px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 11px;
  border-left: 3px solid var(--rose);
  box-shadow: 0 12px 25px rgba(23, 46, 77, .15);
  color: var(--rose);
}

.trust-badge::before {
  font-size: 40px;
  line-height: 1;
  flex-shrink: 0;
}

.trust-badge > b {
  font-size: 24px;
  line-height: 1;
}

.trust-badge b,
.trust-badge small {
  display: block;
}

.trust-badge b {
  color: var(--navy);
  font-size: 15px;
}

.trust-badge small {
  margin-top: 2px;
  color: #7c8790;
  font-size: 13px;
}

/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
  padding: 88px 0;
}

.section h2 {
  margin: 10px 0 17px;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0px;
}

.pale {
  background: var(--mist);
}

/* =========================================================
   FEATURES
   ========================================================= */

.features {
  padding-top: 25px;
}

.features .section-heading {
  display: block;
  text-align: center;
  margin-bottom: 45px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.card {
  position: relative;
  min-height: 315px;
  padding: 44px 36px 32px;
  background: #fff;
  border: 1px solid #ebedf0;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(24, 49, 77, .04);
  box-sizing: border-box;
}

.featured-card {
  border-color: #e3a0a8;
  box-shadow: 0 5px 0 var(--rose);
}

.card-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  font-size: 28px;
  margin-bottom: 26px;
  color: var(--rose);
}

.featured-card .card-icon {
  background: var(--rose);
  color: #fff;
}

.card-number {
  position: absolute;
  top: 27px;
  right: 24px;
  font-size: 48px;
  font-weight: 800;
  color: #f0f1f3;
  line-height: 1;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.35;
  color: var(--navy-dark);
}

.card p {
  margin: 0 0 26px;
  font-size: 16px;
  line-height: 1.65;
}

.card a {
  font-size: 15px;
  font-weight: 700;
  color: var(--rose);
}

/* =========================================================
   EVENTS
   ========================================================= */

.event-wrap {
  padding-top: 0;
}

.event-banner {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 28px 32px;
  background: var(--rose);
  color: #fff;
  border-radius: 15px;
  box-shadow: 0 12px 24px rgba(197, 57, 85, .14);
}

.event-date {
  padding-right: 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.35);
}

.event-date b,
.event-date strong {
  display: block;
}

.event-date b {
  font-size: 11px;
  letter-spacing: .15em;
}

.event-date strong {
  font-size: 36px;
  line-height: 1.1;
}

.event-banner .eyebrow {
  padding: 0;
  background: transparent;
  color: #f9d8de;
}

.event-banner h2 {
  margin: 5px 0 7px;
  color: #fff;
  font-size: 23px;
  line-height: 1.2;
}

.event-banner p {
  margin: 0;
  color: #f9d8de;
  font-size: 12px;
  line-height: 1.6;
}

.event-action {
  text-align: right;
}

.event-action small {
  display: block;
  margin-top: 10px;
  color: #f8d7dc;
  font-size: 10px;
}

/* =========================================================
   ABOUT / SPLIT SECTIONS
   ========================================================= */

.about-section {
  padding: 80px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: 52px;
  align-items: center;
}


/* IMAGE */

.image-wrap {
  position: relative;
  width: 100%;
}

.image-wrap > img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 15px;
}


/* YEARS BADGE */

.years-badge {
  position: absolute;
  left: 26px;
  bottom: 26px;
  width: 233px;
  height: 116px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--rose);
  color: #fff;
  border-radius: 12px;
  text-align: center;
}

.years-badge b {
  display: block;
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
}

.years-badge small {
  display: block;
  margin-top: 7px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
}


/* RIGHT CONTENT */

.about-content {
  padding-left: 0;
}

.kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.0px;
}

.kicker::before {
  content: "";
  width: 30px;
  height: 3px;
  background: var(--rose);
  display: block;
}

.about-content h2 {
  max-width: 800px;
  margin: 0 0 24px;
  color: var(--navy);
  font-size: 38px;
  line-height: 1.25;
  font-weight: 700;
}

.about-intro {
  max-width: 800px;
  margin: 0 0 46px;
  color: #66758a;
  font-size: 16px;
  line-height: 1.85;
}


/* MISSION / APPROACH CARDS */

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  padding-top: 0;
  border-top: none;
}

.mission-card {
  min-height: 228px;
  padding: 30px 26px 25px;
  background: #fff;
  border: 1px solid #edf0f3;
  border-top: 3px solid var(--rose);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(24, 49, 77, .06);
}

.mission-icon {
  margin-bottom: 22px;
  color: var(--rose);
  font-size: 32px;
  line-height: 1;
}

.mission-card h4 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.3;
}

.mission-card p {
  margin: 0;
  color: #68778b;
  font-size: 12px;
  line-height: 1.7;
}

/* =========================================================
   ABOUT - READ MORE BUTTON
   ========================================================= */

.about-read-more {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 11px 24px;

    background: var(--rose);
    color: #ffffff;

    border: 1px solid var(--rose);
    border-radius: 5px;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #19375a;
    border-color: #19375a;
    color: #ffffff;
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

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

  .image-wrap > img {
    height: 480px;
  }

  .about-content h2 {
    font-size: 34px;
  }
}


@media (max-width: 767px) {

  .about-section {
    padding: 60px 0;
  }

  .image-wrap > img {
    height: 400px;
  }

  .years-badge {
    left: 18px;
    bottom: 18px;
    width: 190px;
    height: 100px;
  }

  .years-badge b {
    font-size: 40px;
  }

  .years-badge small {
    font-size: 11px;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .about-intro {
    font-size: 15px;
    margin-bottom: 35px;
  }

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

/* =========================================================
   KEY MILESTONES
   ========================================================= */

.milestones-section {
  padding: 80px 0 65px;
  background: #fff;
}

.milestones-title {
  text-align: center;
  margin-bottom: 42px;
}

.milestones-title h2 {
  margin: 0;
  color: var(--navy);
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
}


/* =========================
   TIMELINE
   ========================= */

.milestones-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 92px;
  padding-top: 4px;
}

.milestones-timeline::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 2%;
  right: 2%;
  height: 2px;
  background: #efc5ca;
}

.milestone {
  position: relative;
  text-align: center;
  padding: 0 18px;
}

.milestone-dot {
  position: relative;
  z-index: 2;
  width: 20px;
  height: 20px;
  margin: -4px auto 36px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #e8a0aa;
  box-shadow: 0 0 0 2px #f9e2e5;
}

.milestone-year {
  margin-bottom: 3px;
  color: var(--rose);
  font-size: 45px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
}

.milestone h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 700;
}

.milestone p {
  max-width: 280px;
  margin: 0 auto;
  color: #7a8796;
  font-size: 13px;
  line-height: 1.75;
}


/* =========================
   MILESTONE CARDS
   ========================= */

.milestone-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.milestone-card {
  min-height: 180px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 25px;
  background: #fff;
  border-left: 3px solid #e8a0aa;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(24, 49, 77, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.milestone-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(24, 49, 77, 0.10);
}

.milestone-number {
  flex-shrink: 0;
  color: #df969f;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
}

.milestone-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.3;
}

.milestone-card p {
  margin: 0;
  color: #69788b;
  font-size: 13px;
  line-height: 1.75;
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1100px) {

  .milestone-year {
    font-size: 38px;
  }

  .milestone {
    padding: 0 10px;
  }

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

}


@media (max-width: 767px) {

  .milestones-section {
    padding: 60px 0;
  }

  .milestones-title {
    margin-bottom: 35px;
  }

  .milestones-title h2 {
    font-size: 30px;
  }

  /* Timeline becomes vertical */
  .milestones-timeline {
    display: block;
    margin-bottom: 50px;
    padding-left: 30px;
  }

  .milestones-timeline::before {
    top: 0;
    bottom: 0;
    left: 9px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .milestone {
    text-align: left;
    padding: 0 0 40px 35px;
  }

  .milestone:last-child {
    padding-bottom: 0;
  }

  .milestone-dot {
    position: absolute;
    top: 0;
    left: -30px;
    margin: 0;
  }

  .milestone-year {
    font-size: 36px;
  }

  .milestone p {
    margin: 0;
    max-width: 100%;
  }

  .milestone-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .milestone-card {
    min-height: auto;
  }

}

/* =========================================================
   CLIENTS & PARTNERS
   ========================================================= */

.clients-partners-section {
  padding: 80px 0 85px;
  background: #fff;
}


/* =========================
   CLIENT HEADING
   ========================= */

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

.clients-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.0px;
}

/* .clients-kicker::before {
  content: "";
  width: 30px;
  height: 3px;
  background: var(--rose);
  display: block;
} */

.clients-heading h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 32px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -.4px;
}

.clients-heading p {
  max-width: 650px;
  margin: 0 auto;
  color: #737b87;
  font-size: 14px;
  line-height: 1.7;
}


/* =========================
   CLIENT TABS
   ========================= */

.clients-tabs {
  display: flex;
  width: fit-content;
  margin: 25px auto 24px;
  padding: 3px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .03);
}

.client-tab {
  min-width: 120px;
  padding: 9px 20px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #222;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
}

.client-tab:hover {
  color: var(--navy-dark);
}

.client-tab.active {
  background: var(--navy-dark);
  color: #fff;
  box-shadow: 0 3px 8px rgba(63, 130, 220, .2);
}


/* =========================
   CLIENT TAB CONTENT
   ========================= */

.client-tab-content {
  display: none;
  animation: clientFade .3s ease;
}

.client-tab-content.active {
  display: block;
}

@keyframes clientFade {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

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


/* =========================
   CLIENT DESCRIPTION
   ========================= */

.client-description {
  margin: 0 0 20px;
  text-align: center;
  color: #737b87;
  font-size: 13px;
}


/* =========================
   LIENR LOGO GRID
   ========================= */

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


/* =========================
    CLIENT LOGO CARD
   ========================= */

.client-logo-card {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: #fff;
  border: 1px solid #e7e9ed;
  border-radius: 11px;
  transition: all .25s ease;
}

.client-logo-card:hover {
  transform: translateY(-3px);
  border-color: #d9e2f0;
  box-shadow: 0 8px 20px rgba(30, 55, 85, .07);
}


/* =========================
   CLIENT LOGO PLACEHOLDER
   ========================= */


.logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}


/* =========================
   CLIENT / PARTNER NAME
   ========================= */

.client-logo-card h3 {
  margin: 0;
  color: #42464d;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--navy);
  font-size: 25px;
}


/* =========================
   CLIENT FOOTER NOTE
   ========================= */

.client-footer-note {
  margin: 25px 0 0;
  text-align: center;
  color: #777f89;
  font-size: 12px;
  line-height: 1.6;
}

/* =========================================================
   CLIENTS - VIEW MORE BUTTON
   ========================================================= */

.clients-view-more {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 11px 24px;

    background: var(--rose);
    color: #ffffff;

    border: 1px solid var(--rose);
    border-radius: 5px;

    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background: #19375a;
    border-color: #19375a;
    color: #ffffff;
}

.view-more-btn i {
    transition: transform 0.3s ease;
}

.view-more-btn:hover i {
    transform: translateX(4px);
}

/* =========================
   CLIENT TABLET
   ========================= */

@media (max-width: 900px) {

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

}


/* =========================
   CLIENT MOBILE
   ========================= */

@media (max-width: 600px) {

  .clients-partners-section {
    padding: 60px 0;
  }

  .clients-heading h2 {
    font-size: 25px;
  }

  .clients-heading p {
    font-size: 13px;
  }

  .clients-tabs {
    width: 100%;
    max-width: 300px;
  }

  .client-tab {
    flex: 1;
    min-width: 0;
    padding: 9px 12px;
    font-size: 12px;
  }

  .client-logo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .client-logo-card {
    min-height: 135px;
    padding: 15px 10px;
  }

  .logo-placeholder {
    width: 90px;
    height: 90px;
  }

}

/* =========================================================
   SECTION HEADING
   ========================================================= */

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-heading p {
  max-width: 370px;
  margin: 0;
  font-size: 12px;
}


/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonials-section {
  padding: 80px 0 45px;
  background: #f7f9fc;
}


/* =========================================================
   HEADING
   ========================================================= */

.testimonials-heading {
  text-align: center;
  margin-bottom: 65px;
}

.testimonials-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 34px;
  font-weight: 700;
}

.testimonial-heading-line {
  position: relative;
  width: 175px;
  height: 1px;
  margin: 24px auto 25px;
  background: #adb5bd;
}

.testimonial-heading-line span {
  position: absolute;
  left: 50%;
  top: 50%;

  width: 65px;
  height: 3px;

  transform: translate(-50%, -50%);

  background: var(--rose);
}

.testimonials-heading p {
  margin: 0;
  color: #344b68;
  font-size: 15px;
}


/* =========================================================
   SLIDER
   ========================================================= */

.testimonials-slider {
  width: 100%;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 32px;

  transition: transform 0.6s ease;

  will-change: transform;
}


/* =========================================================
   SLIDE
   ========================================================= */

/* .testimonial-slide {
  flex: 0 0 100%;
  width: 100%;

  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 32px;

  box-sizing: border-box;
} */


/* =========================================================
   TESTIMONIAL CARD
   ========================================================= */

.testimonial-card {
  position: relative;

  flex: 0 0 calc((100% - 32px) / 2);

  display: flex;
  align-items: center;

  gap: 35px;

  min-height: 255px;

  padding: 28px 32px;

  box-sizing: border-box;

  background: #fff;

  border: 1px solid #e1e5ea;

  border-left: 4px solid var(--rose);

  border-radius: 16px;

  box-shadow: 0 5px 20px rgba(23, 46, 77, 0.04);
}


/* =========================================================
   IMAGE
   ========================================================= */

.testimonial-image {
  flex: 0 0 125px;

  width: 125px;
  height: 125px;

  overflow: hidden;

  border-radius: 15px;

  box-shadow:
    0 8px 20px rgba(23, 46, 77, 0.12);
}

.testimonial-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* =========================================================
   CONTENT
   ========================================================= */

.testimonial-content {
  position: relative;

  flex: 1;

  min-width: 0;
}

.testimonial-content p {
  position: relative;
  z-index: 2;

  margin: 0 10px 18px 0;

  color: #5f6f82;

  font-size: 15px;
  line-height: 1.7;
}


/* =========================================================
   QUOTE
   ========================================================= */

.testimonial-quote {
  position: absolute;

  right: 0;
  top: -28px;

  color: #f5dfe3;

  font-size: 62px;
  line-height: 1;

  z-index: 1;
}

.testimonial-quote i {
  font-style: normal;
}


/* =========================================================
   NAME
   ========================================================= */

.testimonial-content h3 {
  margin: 0 0 4px;

  color: var(--navy);

  font-size: 18px;
  font-weight: 700;
}

.testimonial-content > span {
  color: var(--rose);

  font-size: 13px;
}


/* =========================================================
   STARS
   ========================================================= */

.testimonial-stars {
  display: flex;

  gap: 3px;

  margin-top: 13px;

  color: #f5a623;

  font-size: 15px;
}


/* =========================================================
   DOTS
   ========================================================= */

.testimonial-dots {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 10px;

  margin-top: 45px;
}

.testimonial-dots span {
  display: block;

  width: 11px;
  height: 11px;

  border-radius: 50%;

  background: #c8ced5;

  cursor: pointer;

  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.testimonial-dots span.active {
  width: 32px;

  border-radius: 8px;

  background: var(--rose);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .testimonial-card {
    gap: 25px;

    padding: 25px;
  }

  .testimonial-image {
    flex: 0 0 105px;

    width: 105px;
    height: 105px;
  }

}


/* =========================================================
   TESTIMONIALS - MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .testimonials-section {
    padding: 60px 0 45px;
    overflow: hidden;
  }

  /* HEADING */

  .testimonials-heading {
    margin-bottom: 38px;
    padding: 0 10px;
  }

  .testimonials-heading h2 {
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: -0.5px;
  }

  .testimonial-heading-line {
    width: 130px;
    margin: 18px auto 20px;
  }

  .testimonial-heading-line span {
    width: 50px;
  }

  .testimonials-heading p {
    padding: 0 5px;
    color: #617083;
    font-size: 13px;
    line-height: 1.65;
  }


  /* SLIDER */

  .testimonials-slider {
    width: 100%;
    overflow: hidden;
  }

  .testimonials-track {
    gap: 16px;
  }


  /* TESTIMONIAL CARD */

  .testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    min-height: 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 18px;

    padding: 30px 22px 25px;

    background: #fff;

    border: 1px solid #e5e9ee;
    border-left: 4px solid var(--rose);
    border-radius: 15px;

    box-shadow: 0 8px 25px rgba(23, 46, 77, 0.06);
  }


  /* IMAGE */

  .testimonial-image {
    flex: 0 0 auto;

    width: 82px;
    height: 82px;

    border-radius: 50%;

    box-shadow:
      0 6px 16px rgba(23, 46, 77, 0.12);

    border: 3px solid #fff;
  }


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


  /* CONTENT */

  .testimonial-content {
    width: 100%;
    text-align: center;
  }


  /* QUOTE */

  .testimonial-quote {
    position: absolute;

    top: -12px;
    right: 0;

    color: #f7e5e8;

    font-size: 48px;
    line-height: 1;

    z-index: 1;
  }


  /* TEXT */

  .testimonial-content p {
    position: relative;
    z-index: 2;

    margin: 0 0 17px;

    color: #5f6f82;

    font-size: 14px;
    line-height: 1.75;
  }


  /* NAME */

  .testimonial-content h3 {
    margin: 0 0 3px;

    color: var(--navy);

    font-size: 17px;
    line-height: 1.3;
  }


  /* POSITION */

  .testimonial-content > span {
    display: block;

    color: var(--rose);

    font-size: 12px;
    line-height: 1.5;
  }


  /* STARS */

  .testimonial-stars {
    justify-content: center;

    gap: 3px;

    margin-top: 11px;

    font-size: 14px;
  }


  /* DOTS */

  .testimonial-dots {
    gap: 8px;
    margin-top: 28px;
  }

  .testimonial-dots span {
    width: 8px;
    height: 8px;
  }

  .testimonial-dots span.active {
    width: 25px;
    height: 8px;
  }

}



/* =========================================================
   CORPORATE PROPOSAL CONTACT SECTION
   UNIQUE PREFIX: corp-
   ========================================================= */

.corp-contact-section {
  padding: 100px 0;
  background: #f7f9fc;
}


/* =========================================================
   HEADER
   ========================================================= */

.corp-contact-header {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.corp-contact-header h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 44px;
  line-height: 1.15;
  font-weight: 700;
}

.corp-contact-header p {
  margin: 0 auto;
  max-width: 680px;
  color: #657386;
  font-size: 17px;
  line-height: 1.8;
}


/* =========================================================
   CONTACT GRID
   ========================================================= */

.corp-contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 45px;
  align-items: start;
}


/* =========================================================
   LEFT CONTACT INFORMATION
   ========================================================= */

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

.corp-contact-info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(25, 55, 90, 0.08);
  box-shadow: 0 12px 35px rgba(25, 55, 90, 0.07);

  display: flex;
  gap: 20px;
}


/* ICON */

.corp-contact-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;

  border-radius: 50%;

  background: var(--blush);
  color: var(--rose);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
}


/* CONTENT */

.corp-contact-info-content {
  flex: 1;
}

.corp-contact-info-content h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.35;
}

.corp-contact-info-content p {
  margin: 0 0 20px;
  color: #68778a;
  font-size: 15px;
  line-height: 1.7;
}


/* =========================================================
   WHATSAPP BUTTON
   ========================================================= */

.corp-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  background: var(--rose);
  color: #ffffff !important;

  padding: 13px 18px;

  border-radius: 8px;

  text-decoration: none;

  font-size: 14px;
  font-weight: 600;

  transition: all 0.3s ease;
}

.corp-btn-whatsapp i,
.corp-btn-whatsapp span {
  color: #ffffff !important;
}

.corp-btn-whatsapp:hover {
  background: var(--rose-dark);
  color: #ffffff !important;

  transform: translateY(-2px);
}

.corp-btn-whatsapp:hover i,
.corp-btn-whatsapp:hover span {
  color: #ffffff !important;
}


/* =========================================================
   FORM WRAPPER
   ========================================================= */

.corp-contact-form-wrap {
  background: #ffffff;

  padding: 42px;

  border-radius: 18px;

  box-shadow:
    0 15px 45px rgba(25, 55, 90, 0.08);
}


/* =========================================================
   FORM HEADING
   ========================================================= */

.corp-form-heading {
  margin-bottom: 28px;
}

.corp-form-kicker {
  display: inline-block;

  margin-bottom: 8px;

  color: var(--rose);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 1px;
}

.corp-form-heading h3 {
  margin: 5px 0 8px;

  color: var(--navy);

  font-size: 30px;
  line-height: 1.3;
}

.corp-form-heading p {
  margin: 0;

  color: #6b7788;

  line-height: 1.7;

  font-size: 15px;
}


/* =========================================================
   FORM ROW
   ========================================================= */

.corp-form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px;
}


/* =========================================================
   FORM GROUP
   ========================================================= */

.corp-form-group {
  margin-bottom: 20px;
}

.corp-form-group label {
  display: block;

  margin-bottom: 8px;

  color: var(--navy);

  font-size: 14px;
  font-weight: 600;
}

.corp-form-group label span {
  color: var(--rose);
}


/* =========================================================
   FORM INPUTS
   ========================================================= */

.corp-contact-form input,
.corp-contact-form select,
.corp-contact-form textarea {
  width: 100%;

  box-sizing: border-box;

  border: 1px solid #dce2e8;

  background: #ffffff;

  border-radius: 8px;

  padding: 13px 15px;

  color: var(--navy);

  font-family: inherit;

  font-size: 14px;

  outline: none;

  transition: all 0.25s ease;
}


/* INPUT HEIGHT */

.corp-contact-form input,
.corp-contact-form select {
  height: 48px;
}


/* TEXTAREA */

.corp-contact-form textarea {
  min-height: 125px;

  resize: vertical;

  line-height: 1.6;
}


/* PLACEHOLDER */

.corp-contact-form input::placeholder,
.corp-contact-form textarea::placeholder {
  color: #9aa5b2;
}


/* FOCUS */

.corp-contact-form input:focus,
.corp-contact-form select:focus,
.corp-contact-form textarea:focus {
  border-color: var(--rose);

  box-shadow:
    0 0 0 3px rgba(207, 59, 82, 0.08);
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.corp-btn-submit {
  width: 100%;

  border: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  background: var(--navy);
  color: #ffffff;

  padding: 15px 22px;

  border-radius: 8px;

  font-family: inherit;

  font-size: 15px;
  font-weight: 600;

  cursor: pointer;

  transition: all 0.3s ease;
}

.corp-btn-submit span,
.corp-btn-submit i {
  color: #ffffff;
}

.corp-btn-submit:hover {
  background: var(--navy-dark);

  color: #ffffff;

  transform: translateY(-2px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

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

  .corp-contact-header h2 {
    font-size: 38px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .corp-contact-section {
    padding: 70px 0;
    background: #f7f9fc;
  }

  .corp-contact-header {
    margin-bottom: 35px;
  }

  .corp-contact-header h2 {
    font-size: 32px;
  }

  .corp-contact-header p {
    font-size: 15px;
  }

  .corp-contact-form-wrap {
    padding: 25px 20px;
  }

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

  .corp-contact-info-card {
    padding: 24px 20px;
  }

  .corp-contact-info-content h3 {
    font-size: 19px;
  }

  .corp-btn-whatsapp {
    width: 100%;
  }

}

/* =========================================================
   CONTACT CTA
   ========================================================= */

.contact-section {
  padding: 62px 0;
  background: #f7f9fc !important;;
  color: #fff;
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-inner h2 {
  color: #fff;
}

.light-kicker {
  color: #f3b7c1;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  padding: 65px 0 0;
  background: #ffffff; /* Changed from dark navy to white */
  color: #617083; /* Dark grey text */
  border-top: 1px solid #e5e9ee; /* Adds a clean line at the top */
}


/* =========================================================
   FOOTER GRID
   ========================================================= */

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.35fr 1fr 1.25fr;
  gap: 45px;
  padding-bottom: 60px;
  align-items: start;
}


/* =========================================================
   FOOTER ABOUT / LOGO
   ========================================================= */

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


/* Logo container */

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  margin-bottom: 20px;

  /* Removed padding, background, and shadow for a clean look */
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;

  transition: all .25s ease;
}


/* Logo image */

.footer-logo img {
  display: block;
  width: auto;
  max-width: 190px;
  height: 52px;
  object-fit: contain;
}


/* Logo hover */

.footer-logo:hover {
  transform: translateY(-2px);
  background: #ffffff;
}


/* About text */

.footer-about p {
  max-width: 350px;
  margin: 0;
  color: #617083; /* Changed to dark grey */
  font-size: 14px;
  line-height: 1.75;
}


/* =========================================================
   FOOTER HEADINGS
   ========================================================= */

.footer h4 {
  margin: 0 0 20px;
  color: var(--navy); /* Changed to Very Dark Teal */
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}


/* Footer Contact Items */

.footer-contact-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px;
  margin: 0 0 15px !important;
}

.footer-contact-item i {
  display: inline-flex;
  flex: 0 0 18px;
  width: 18px;
  color: var(--rose);
  font-size: 15px;
  line-height: 1;
}

.footer-contact-item a {
  display: inline-block;
  color: #617083; /* Changed to dark grey */
  text-decoration: none;
  line-height: 1.5;
}

.footer-contact-item a:hover {
  color: var(--rose);
}


/* =========================================================
   FOOTER LINKS
   ========================================================= */

.footer-links a {
  display: block;
  margin: 0 0 12px;
  color: #617083; /* Changed to dark grey */
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
  transition: all .25s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}


/* =========================================================
   FOOTER CONTACT
   ========================================================= */

.footer-contact p {
  margin: 0 0 15px;
  color: #617083; /* Changed to dark grey */
  font-size: 13px;
  line-height: 1.7;
}


.footer-contact a {
  color: #617083; /* Changed to dark grey */
  text-decoration: none;
  transition: color .25s ease;
}


.footer-contact a:hover {
  color: var(--rose);
}


/* =========================================================
   SOCIAL ICONS
   ========================================================= */

.footer-social {
  display: flex;
  gap: 9px;
  margin-top: 25px;
}


.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  
  border: 1px solid #dce2e8; /* Light grey border */
  border-radius: 50%;
  color: var(--navy); /* Dark teal icons */
  
  font-size: 16px;
  text-decoration: none;
  transition: all .25s ease;
}


.footer-social a:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: #ffffff;
  transform: translateY(-2px);
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
  min-height: 80px;

  padding: 20px;

  background: var(--navy);;

  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(255, 255, 255, 0.75);

  font-size: 13px;

  text-align: center;
}


.footer-bottom strong {
  margin-left: 3px;
  color: #ffffff;
}


.footer-bottom span {
  color: var(--rose);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 35px;
  }

  .footer-about {
    grid-column: span 4;
    max-width: 600px;
    margin-bottom: 15px;
  }

}


/* =========================================================
   MOBILE / TABLET
   ========================================================= */

@media (max-width: 800px) {

  .footer {
    padding-top: 50px;
  }

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

  .footer-about {
    grid-column: span 2;
    max-width: 600px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 550px) {

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

  .footer-about {
    grid-column: span 1;
  }

  .footer-logo {
    min-height: 62px;
    padding: 8px 15px;
  }

  .footer-logo img {
    max-width: 170px;
    height: 46px;
  }

  .footer-bottom {
    padding: 20px 15px;
    line-height: 1.6;
  }

}

/* =========================================================
   DESKTOP FOOTER ADJUSTMENTS ONLY
   ========================================================= */

@media (min-width: 1101px) {

  .footer-grid {
    /* More space for the link columns */
    grid-template-columns: 1.55fr 1.25fr 1.55fr 1.15fr 1.35fr;
    gap: 35px;
  }

  /* Keep Corporate Solutions heading on one line */
  .footer-grid > .footer-links:nth-child(2) h4 {
    white-space: nowrap;
  }

  /* Move all footer link columns slightly to the right */
  .footer-grid > .footer-links:nth-child(2),
  .footer-grid > .footer-links:nth-child(3),
  .footer-grid > .footer-links:nth-child(4),
  .footer-grid > .footer-contact {
    transform: translateX(80px);
  }

}


/* =========================================================
   BACK TO TOP
   ========================================================= */

.back-to-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 99;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  background: var(--rose);
  color: #ffffff;

  border-radius: 5px;

  font-size: 18px;

  opacity: 1;
  transition: all .25s ease;
}

.back-to-top:hover {
  background: #b82f45;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 800px) {

.footer {
  padding-top: 45px;
}

.footer-grid {
  grid-template-columns: 1fr 1fr;
  gap: 40px 30px;
  padding-bottom: 45px;
}

.footer-about {
  grid-column: span 2;
}

.footer-about p {
  max-width: 100%;
}

.footer-contact {
  grid-column: span 2;
}

.footer-bottom {
  min-height: 100px;
  padding: 22px 15px;
}

}

@media (max-width: 480px) {

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

  .footer-about,
  .footer-contact {
    grid-column: auto;
  }

  .footer-logo {
    font-size: 27px;
  }

  .footer-bottom {
    font-size: 12px;
  }

}

/* =========================================================
   MODAL
   ========================================================= */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(16, 36, 63, .8);
}

.modal.open {
  display: flex;
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: 32px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(16, 36, 63, .25);
}

.modal-box h2 {
  margin: 8px 0;
  color: var(--navy);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 15px;
  border: 0;
  background: none;
  color: var(--body);
  font-size: 26px;
}

.modal-form {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.modal-form input {
  flex: 1;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form-message {
  color: var(--rose);
  font-size: 12px;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .main-menu {
    gap: 18px;
    font-size: 13px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-visual img {
    height: 450px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

  .container {
    width: calc(100% - 36px);
  }

  /* TOP BAR */

  .utility-bar {
    height: auto;
    min-height: 38px;
    padding: 7px 0;
  }

  .utility-inner {
    flex-wrap: wrap;
    gap: 6px;
  }

  .contact-info {
    font-size: 11px;
  }

  .phone {
    margin-left: 10px;
  }

  .social-links {
    display: none;
  }

  /* HEADER */

  .nav-inner {
    min-height: 72px;
  }

  .logo {
    font-size: 25px;
  }

  .menu-toggle {
    display: block;
  }

  .main-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 100;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: var(--navy);
    box-shadow: 0 15px 25px rgba(13, 32, 58, .25);
  }

  .main-menu.open {
    display: flex;
  }

  .main-menu > a,
  .dropdown-toggle {
    padding: 11px 0;
  }

  .main-menu > a.active::after {
    display: none;
  }

  .main-menu .button-primary {
    margin-top: 10px;
    text-align: center;
  }

  .dropdown-menu {
    position: static;
    min-width: 100%;
    background: #10243f;
    box-shadow: none;
  }

  .dropdown-menu a {
    color: #cbd6e1;
  }

  /* HERO */

  .hero {
    padding: 55px 0 45px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .hero h1 {
    font-size: 42px;
    letter-spacing: -2px;
  }

  .hero p {
    font-size: 14px;
  }

  .metrics {
    max-width: 100%;
  }

  .metrics strong {
    font-size: 24px;
  }

  .hero-visual {
    padding-left: 0;
  }

  .hero-visual img {
    height: 310px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .trust-badge {
    left: 0;
  }

  /* SECTIONS */

  .section {
    padding: 60px 0;
  }

  .section h2 {
    font-size: 31px;
  }

  .feature-grid,
  .program-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  /* EVENT */

  .event-banner {
    grid-template-columns: 58px 1fr;
    padding: 22px 18px;
  }

  .event-action {
    grid-column: 2;
    text-align: left;
  }

  .event-date {
    padding-right: 13px;
  }

  /* SPLIT */

  .split-grid,
  .alumni-grid,
  .featured-program {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .image-wrap > img {
    height: 320px;
  }

  .years-badge {
    right: 0;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* SECTION HEADING */

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 15px;
  }

  /* PROGRAM */

  .featured-program > img {
    height: 230px;
  }

  .featured-program > div {
    padding: 25px;
  }

  /* STUDENT */

  .student-visual > img {
    height: 320px;
  }

  .quote {
    left: 0;
    width: 230px;
  }

  /* CONTACT */

  .contact-inner {
    display: block;
  }

  .contact-inner .button {
    margin-top: 18px;
  }

  /* FOOTER */

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

  .footer-grid > div:first-child {
    grid-column: span 2;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin: 5px 0;
  }

  /* MODAL */

  .modal-form {
    display: block;
  }

  .modal-form button {
    width: 100%;
    margin-top: 10px;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .container {
    width: calc(100% - 28px);
  }

  .utility-inner {
    justify-content: center;
  }

  .contact-info {
    width: 100%;
    justify-content: center;
  }

  .phone {
    margin-left: 8px;
  }

  .hero {
    padding-top: 40px;
  }

  .hero h1 {
    font-size: 35px;
    line-height: 1.12;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .video-link {
    width: 100%;
    justify-content: center;
  }

  .metrics {
    flex-direction: column;
    gap: 15px;
  }

  .metrics div + div::before {
    display: none;
  }

  .hero-visual img {
    height: 260px;
  }

  .trust-badge {
    padding: 11px 13px;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }
}



/* =========================================================
   CAMPUS & FACILITIES PAGE
   ========================================================= */

:root {
  --navy: #064047; /* Very Dark Teal for headings and main elements */
  --navy-dark: #042a2f; /* Even darker teal for hover states */
  --rose: #800000; /* Maroon to replace the bright red/rose */
  --rose-dark: #5c0000; /* Darker maroon for hover states */
  --blush: #fbeaec;
  --mist: #f7f8fa;
  --ink: #064047; /* Matched to Very Dark Teal */
  --body: #617083;
  --line: #e5e9ee;
  --white: #ffffff;
  --max: 1180px;
  --ease: cubic-bezier(.23, 1, .32, 1);
}


/* =========================================================
   Training page-PAGE HEADER
   ========================================================= */

.page-header {
  background: #f6f8fb;
  border-top: 1px solid var(--campus-navy);
  padding: 27px 0;
}

.page-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-header h1 {
  margin: 0;
  color: var(--campus-navy);
  font-size: 25px;
  font-weight: 700;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--campus-rose);
  text-decoration: none;
}

.breadcrumb span:last-child {
  color: var(--campus-navy);
}


/* =========================================================
   Training page-COMMON
   ========================================================= */

.section {
  padding: 80px 0;
}

.campus-kicker {
  display: inline-block;
  color: var(--campus-rose);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1.5;
  position: relative;
  padding-bottom: 9px;
}

.campus-kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--campus-rose);
}

.campus-content h2,
.section-heading h2,
.experience-content h2 {
  color: var(--campus-navy);
  font-size: 42px;
  line-height: 1.18;
  font-weight: 800;
  margin: 24px 0 22px;
}

.campus-content h2 span,
.section-heading h2 span,
.experience-content h2 span {
  color: var(--campus-rose);
}

.campus-content p,
.experience-content p {
  color: var(--campus-text);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 15px;
}


/* =========================================================
   Training page-MAIN CAMPUS CARD
   ========================================================= */

.campus-main-card {
  position: relative;
  background: #ffffff;
  border-left: 5px solid var(--campus-rose);
  border-radius: 15px;
  padding: 42px 38px 40px;
  box-shadow: 0 15px 40px rgba(25, 55, 90, 0.08);

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.campus-content {
  padding-left: 20px;
}

.campus-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 18px;
  padding: 13px 22px;

  background: var(--campus-rose);
  color: #ffffff;

  border-radius: 6px;
  text-decoration: none;

  font-size: 14px;
  font-weight: 700;

  transition: 0.3s ease;
}

.campus-button:hover {
  background: var(--campus-navy);
  color: #ffffff;
  transform: translateY(-2px);
}


/* =========================================================
   Training page-MAIN IMAGE
   ========================================================= */

.campus-main-image {
  position: relative;
  height: 355px;
}

.campus-main-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 12px;

  display: block;
}


/* IMAGE BADGE */

.campus-image-badge {
  position: absolute;

  top: 17px;
  left: 17px;

  display: flex;
  align-items: center;
  gap: 11px;

  background: var(--campus-rose);
  color: #ffffff;

  padding: 11px 17px;

  border-radius: 8px;

  box-shadow: 0 8px 20px rgba(207, 59, 82, 0.25);
}

.badge-icon {
  font-size: 19px;
}

.campus-image-badge strong,
.campus-image-badge span {
  display: block;
}

.campus-image-badge strong {
  font-size: 14px;
}

.campus-image-badge span {
  font-size: 11px;
  opacity: 0.9;
  margin-top: 2px;
}


/* =========================================================
   Training page-STATISTICS
   ========================================================= */

.campus-stats {
  grid-column: 1 / -1;

  border-top: 1px solid #e5e7eb;

  padding-top: 28px;
  margin-top: -3px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.campus-stat {
  background: #fcf0f2;
  border-radius: 11px;

  padding: 16px;

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

.stat-icon {
  width: 56px;
  height: 56px;

  flex: 0 0 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  color: var(--campus-rose);

  border-radius: 10px;

  font-size: 23px;

  box-shadow: 0 5px 12px rgba(25, 55, 90, 0.08);
}

.campus-stat strong {
  display: block;

  color: var(--campus-navy);

  font-size: 23px;
  font-weight: 800;

  line-height: 1.1;
}

.campus-stat small {
  display: block;

  color: #8993a0;

  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;

  margin-top: 6px;
}


/* =========================================================
   Training page-FACILITIES SECTION
   ========================================================= */

.facilities-section {
  background: var(--campus-mist);
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading .campus-kicker::after {
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
}

.section-heading h2 {
  margin-top: 21px;
  margin-bottom: 15px;
}

.section-heading p {
  color: var(--campus-text);
  font-size: 16px;
  line-height: 1.8;
}


/* =========================================================
   Training page-FACILITIES GRID
   ========================================================= */

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}


/* =========================================================
   Training page- FACILITY CARD
   ========================================================= */

.facility-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;

  box-shadow: 0 10px 30px rgba(25, 55, 90, 0.07);

  transition: transform 0.3s ease,
              box-shadow 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-7px);

  box-shadow: 0 18px 40px rgba(25, 55, 90, 0.13);
}


/* IMAGE */

.facility-image {
  position: relative;
  height: 225px;
  overflow: hidden;
}

.facility-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 0.5s ease;
}

.facility-card:hover .facility-image img {
  transform: scale(1.05);
}


/* NUMBER */

.facility-number {
  position: absolute;

  right: 15px;
  top: 15px;

  width: 43px;
  height: 43px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--campus-rose);
  color: #ffffff;

  border-radius: 50%;

  font-size: 13px;
  font-weight: 800;
}


/* CONTENT */

.facility-content {
  position: relative;
  padding: 28px 25px 30px;
}

.facility-icon {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;

  top: -25px;
  right: 25px;

  background: #ffffff;
  color: var(--campus-rose);

  border-radius: 10px;

  font-size: 21px;

  box-shadow: 0 7px 20px rgba(25, 55, 90, 0.13);
}

.facility-content h3 {
  color: var(--campus-navy);

  font-size: 20px;
  font-weight: 750;

  margin: 0 0 11px;
}

.facility-content p {
  color: var(--campus-text);

  font-size: 14px;
  line-height: 1.75;

  margin: 0;
}


/* =========================================================
   Training page- CAMPUS EXPERIENCE
   ========================================================= */

.campus-experience {
  background: #ffffff;
}

.experience-grid {
  display: grid;

  grid-template-columns: 0.95fr 1.05fr;

  gap: 70px;

  align-items: center;
}

.experience-image {
  position: relative;
  padding: 0 0 13px 10px;
}

.experience-image img {
  width: 100%;
  height: 470px;

  object-fit: cover;

  display: block;

  border-radius: 14px;

  position: relative;
  z-index: 2;

  box-shadow: 15px 18px 0 #f8e8ea;
}

.experience-accent {
  position: absolute;

  width: 130px;
  height: 130px;

  left: -15px;
  bottom: -12px;

  border-radius: 50%;

  background: var(--campus-rose);

  opacity: 0.12;
}

.experience-content {
  padding-right: 25px;
}

.experience-content h2 {
  margin-top: 22px;
}

.experience-list {
  margin-top: 25px;
}

.experience-list div {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 15px;

  color: var(--campus-navy);

  font-size: 15px;
  font-weight: 600;
}

.experience-list i {
  color: var(--campus-rose);
  font-size: 18px;
}


/* =========================================================
   Training page- CTA
   ========================================================= */

.campus-cta {
  background: var(--campus-navy);
  padding: 70px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;
}

.cta-inner .campus-kicker {
  color: #ffffff;
}

.cta-inner .campus-kicker::after {
  background: var(--campus-rose);
}

.cta-inner h2 {
  color: #ffffff;

  font-size: 38px;
  font-weight: 800;

  margin: 18px 0 10px;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.72);

  max-width: 650px;

  font-size: 15px;
  line-height: 1.8;

  margin: 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  flex-shrink: 0;

  padding: 14px 25px;

  background: var(--campus-rose);
  color: #ffffff;

  border-radius: 6px;

  text-decoration: none;

  font-size: 14px;
  font-weight: 700;

  transition: 0.3s ease;
}

.cta-button:hover {
  background: #ffffff;
  color: var(--campus-navy);
}


/* =========================================================
    Training page- TABLET
   ========================================================= */

@media (max-width: 991px) {

  .campus-main-card {
    grid-template-columns: 1fr;
  }

  .campus-content {
    padding-left: 10px;
  }

  .campus-main-image {
    height: 380px;
  }

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

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .experience-content {
    padding-right: 0;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

}


/* =========================================================
    Training page- MOBILE
   ========================================================= */

@media (max-width: 767px) {

  .page-header {
    padding: 22px 0;
  }

  .page-header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .page-header h1 {
    font-size: 22px;
  }

  .breadcrumb {
    font-size: 13px;
  }

  .section {
    padding: 60px 0;
  }

  .campus-main-card {
    padding: 30px 22px;
    border-left-width: 4px;
    gap: 30px;
  }

  .campus-content {
    padding-left: 0;
  }

  .campus-content h2,
  .section-heading h2,
  .experience-content h2 {
    font-size: 31px;
  }

  .campus-main-image {
    height: 280px;
  }

  .campus-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .campus-stat {
    padding: 14px;
  }

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

  .facility-image {
    height: 230px;
  }

  .experience-image img {
    height: 350px;
  }

  .cta-inner h2 {
    font-size: 31px;
  }

}


/* =========================================================
   Training page- SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .campus-main-image {
    height: 230px;
  }

  .campus-image-badge {
    padding: 9px 12px;
  }

  .campus-image-badge strong {
    font-size: 12px;
  }

  .campus-image-badge span {
    font-size: 10px;
  }

  .campus-content h2,
  .section-heading h2,
  .experience-content h2 {
    font-size: 28px;
  }

  .experience-image {
    padding-left: 5px;
  }

  .experience-image img {
    height: 280px;
  }

}

/* =========================================================
   AAWE FEATURED PROGRAMMES
   ISOLATED COMPONENT
   ========================================================= */

.aawe-featured-section {
  padding: 72px 0 80px;
  background: #f7f9fc;
}

.aawe-featured-container {
  width: min(100% - 40px, 1140px);
  margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.aawe-featured-heading {
  max-width: 760px;
  margin: 0 auto 22px;
  text-align: center;
}

.aawe-featured-heading h2 {
  margin: 0 0 8px;
  color: #102f59;
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.aawe-featured-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: #5b6470;
  font-size: 14px;
  line-height: 1.55;
}


/* =========================================================
   GRID
   ========================================================= */

.aawe-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}


/* =========================================================
   CARD
   ========================================================= */

.aawe-featured-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;

  padding: 14px;

  background: #ffffff;

  border: 1px solid #bfc9da;
  border-radius: 10px;

  overflow: hidden;

  box-sizing: border-box;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.aawe-featured-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(25, 55, 90, 0.08);
}


/* =========================================================
   TOP AREA
   ========================================================= */

.aawe-featured-card-top {
  display: grid;

  grid-template-columns: minmax(0, 1.18fr) minmax(155px, 0.82fr);

  gap: 15px;

  align-items: center;

  min-height: 290px;
}


/* =========================================================
   CONTENT
   ========================================================= */

.aawe-featured-content {
  min-width: 0;
}


/* =========================================================
   LABEL
   ========================================================= */

.aawe-featured-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-bottom: 15px;

  padding: 6px 9px;

  border: 1px solid #b8cae5;
  border-radius: 7px;

  background: #f3f7fd;

  color: #1455ad;

  font-size: 11px;
  line-height: 1;
  font-weight: 700;

  white-space: nowrap;
}

.aawe-featured-label i {
  font-size: 13px;
}


/* =========================================================
   PERKESO LABEL
   ========================================================= */

.aawe-featured-eis .aawe-featured-label {
  color: #7030a8;
  border-color: #d2bee4;
  background: #faf5fd;
}

@media (min-width: 992px) {
    .aawe-perkeso {
        transform: translateY(-40px);
    }
    .aawe-perkeso-img{
    transform: translateY(-60px);
    }
}

/* =========================================================
   TITLE
   ========================================================= */

.aawe-featured-content h3 {
  margin: 0 0 10px;

  color: #0757bd;

  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;

  letter-spacing: -0.3px;
}

.aawe-featured-eis .aawe-featured-content h3 {
  color: #7030a8;
}


/* =========================================================
   SUBTITLE
   ========================================================= */

.aawe-featured-content h4 {
  margin: 0 0 10px;

  color: #1959a8;

  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.aawe-featured-content p {
  margin: 0;

  color: #3f4854;

  font-size: 12px;
  line-height: 1.7;
}


/* =========================================================
   IMAGE
   ========================================================= */

.aawe-featured-image {
  width: 100%;
  height: 205px;

  overflow: hidden;

  border-radius: 8px;

  align-self: center;
}

.aawe-featured-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;

  transition: transform 0.35s ease;
}

.aawe-featured-card:hover .aawe-featured-image img {
  transform: scale(1.025);
}


/* =========================================================
   SUITABLE FOR
   ========================================================= */

.aawe-featured-suitable {
  display: flex;
  align-items: flex-start;

  gap: 9px;

  margin-top: 18px;
}

.aawe-featured-suitable > i {
  flex: 0 0 auto;

  margin-top: 2px;

  color: #0757bd;

  font-size: 18px;
}

.aawe-featured-suitable div {
  display: flex;
  flex-direction: column;

  gap: 2px;
}

.aawe-featured-suitable strong {
  color: #0757bd;

  font-size: 11px;
  line-height: 1.3;
  font-weight: 800;
}

.aawe-featured-suitable span {
  color: #4b5563;

  font-size: 11px;
  line-height: 1.45;
}


/* =========================================================
   EXPAND BUTTON
   ========================================================= */

.aawe-featured-expand {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 12px;

  margin-top: 9px;

  padding: 9px 13px;

  border: 1px solid #b9cae0;
  border-radius: 7px;

  background: #ffffff;

  color: #0757bd;

  cursor: pointer;

  font-family: inherit;
  font-size: 12px;
  font-weight: 700;

  text-align: left;

  box-sizing: border-box;

  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.aawe-featured-expand:hover {
  background: #f5f9ff;
}

.aawe-featured-expand i {
  font-size: 17px;

  transition: transform 0.25s ease;
}

.aawe-featured-expand[aria-expanded="true"] i {
  transform: rotate(45deg);
}


/* PERKESO */

.aawe-featured-eis .aawe-featured-expand {
  color: #7030a8;
  border-color: #cbb8dc;
}

.aawe-featured-eis .aawe-featured-expand:hover {
  background: #faf6fd;
}


/* =========================================================
   EXPANDABLE DETAILS
   ========================================================= */

.aawe-featured-details {
  display: grid;

  grid-template-rows: 0fr;

  opacity: 0;

  overflow: hidden;

  transition:
    grid-template-rows 0.3s ease,
    opacity 0.25s ease,
    padding 0.3s ease;
}

.aawe-featured-details > div {
  min-height: 0;
  overflow: hidden;
}

.aawe-featured-details.open {
  grid-template-rows: 1fr;

  opacity: 1;

  padding: 14px 7px 3px;
}

.aawe-featured-details p {
  margin: 0 0 10px;

  color: #4a5563;

  font-size: 12px;
  line-height: 1.65;
}

.aawe-featured-details h4 {
  margin: 0 0 7px;

  color: #102f59;

  font-size: 14px;
  font-weight: 800;
}

.aawe-featured-details ul {
  margin: 0;
  padding-left: 18px;
}

.aawe-featured-details li {
  margin-bottom: 4px;

  color: #4a5563;

  font-size: 12px;
  line-height: 1.5;
}


/* =========================================================
   ACTION AREA
   ========================================================= */

.aawe-featured-actions {
  display: flex;

  width: 100%;

  margin-top: 15px;

  box-sizing: border-box;
}


/* =========================================================
   BLUE PRIMARY BUTTON
   ========================================================= */

.aawe-featured-primary {
  width: 100%;

  min-height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 7px 15px;

  border: 1px solid #0757d8;
  border-radius: 7px;

  background: #0757d8;

  color: #ffffff;

  text-decoration: none;

  font-size: 12px;
  font-weight: 700;

  box-sizing: border-box;

  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.aawe-featured-primary:hover {
  background: #0649b7;
  border-color: #0649b7;
  color: #ffffff;
}


/* =========================================================
   WHATSAPP
   ========================================================= */

.aawe-featured-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 4px;

  margin-top: 8px;

  color: #333f4e;

  font-size: 11px;

  text-decoration: none;
}

.aawe-featured-whatsapp i {
  color: #25a95b;

  font-size: 18px;
}

.aawe-featured-whatsapp strong {
  color: #0757bd;
  font-weight: 800;
}

.aawe-featured-whatsapp:hover {
  color: #333f4e;
}


/* =========================================================
   PERKESO TWO BUTTONS
   ========================================================= */

.aawe-featured-two-actions {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 12px;
}


/* OUTLINE */

.aawe-featured-outline,
.aawe-featured-red {
  min-height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 8px 12px;

  border-radius: 7px;

  text-align: center;
  text-decoration: none;

  font-size: 11px;
  font-weight: 700;

  box-sizing: border-box;

  transition: all 0.2s ease;
}

.aawe-featured-outline {
  color: #7030a8;

  border: 1px solid #7030a8;

  background: #ffffff;
}

.aawe-featured-outline:hover {
  color: #ffffff;
  background: #7030a8;
}


/* RED */

.aawe-featured-red {
  color: #ffffff;

  border: 1px solid #d92535;

  background: #d92535;
}

.aawe-featured-red:hover {
  color: #ffffff;

  border-color: #b91f2d;

  background: #b91f2d;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

  .aawe-featured-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .aawe-featured-card-top {
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

  .aawe-featured-section {
    padding: 60px 0;
  }

  .aawe-featured-container {
    width: min(100% - 28px, 570px);
  }

  .aawe-featured-heading {
    margin-bottom: 25px;
  }

  .aawe-featured-heading h2 {
    font-size: 32px;
  }

  .aawe-featured-heading p {
    font-size: 13px;
  }

  .aawe-featured-grid {
    grid-template-columns: 1fr;
  }

  .aawe-featured-card {
    padding: 12px;
  }

  .aawe-featured-card-top {
    display: flex;

    flex-direction: column;

    gap: 15px;

    min-height: 0;
  }

  .aawe-featured-content {
    width: 100%;
  }

  .aawe-featured-image {
    width: 100%;
    height: 210px;

    order: 2;
  }

  .aawe-featured-content h3 {
    font-size: 21px;
  }

  .aawe-featured-two-actions {
    grid-template-columns: 1fr;
    gap: 9px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {

  .aawe-featured-image {
    height: 190px;
  }

  .aawe-featured-content h3 {
    font-size: 20px;
  }

  .aawe-featured-label {
    font-size: 10px;
  }

}

/* =========================================================
   AAWE - EXPLORE OUR TRAINING AREAS
   Isolated component
   ========================================================= */

.aawe-departments-section {
  padding: 82px 0 88px;
  background: #ffffff;
}

.aawe-departments-container {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.aawe-departments-heading {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.aawe-departments-heading h2 {
  margin: 0;

  color: #19375a;

  font-size: clamp(30px, 3.5vw, 38px);
  line-height: 1.2;

  font-weight: 700;

  letter-spacing: -0.5px;
}


/* RED UNDERLINE */

.aawe-departments-heading-line {
  display: block;

  width: 55px;
  height: 3px;

  margin: 8px auto 19px;

  background: var(--rose);
}


/* DESCRIPTION */

.aawe-departments-heading p {
  max-width: 720px;

  margin: 0 auto;

  color: #65738a;

  font-size: 15px;
  line-height: 1.7;
}


/* =========================================================
   CATEGORY TABS
   ========================================================= */

.aawe-departments-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; /* This allows the tabs to drop to a new line */
  row-gap: 15px; /* This adds a neat vertical gap between the rows */
  width: 100%;
  margin-bottom: 44px;
  border-bottom: 1px solid #d9dde3;
}

.aawe-department-tab {
  position: relative;

  min-width: 145px;

  padding: 0 24px 15px;

  border: 0;

  background: transparent;

  color: #66758a;

  font-family: inherit;

  font-size: 14px;
  font-weight: 600;

  cursor: pointer;

  white-space: nowrap;

  transition:
    color 0.25s ease,
    background 0.25s ease;
}


/* ACTIVE TAB */

.aawe-department-tab.active {
  color: var(--rose);
}


/* ACTIVE RED LINE */

.aawe-department-tab.active::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;

  bottom: -1px;

  height: 2px;

  background: var(--rose);
}


/* HOVER */

.aawe-department-tab:hover {
  color: var(--rose);
}


/* =========================================================
   CARD GRID
   ========================================================= */

.aawe-departments-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 26px;

  align-items: stretch;
}


/* =========================================================
   CARD
   ========================================================= */

.aawe-department-card {
  min-width: 0;

  display: flex;
  flex-direction: column;

  background: #ffffff;

  border: 1px solid #dce1e7;

  overflow: hidden;

  box-sizing: border-box;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.aawe-department-card:hover {
  transform: translateY(-4px);

  box-shadow: 0 14px 30px rgba(25, 55, 90, 0.10);
}


/* =========================================================
   IMAGE
   ========================================================= */

.aawe-department-image {
  position: relative;

  width: 100%;

  height: 232px;

  overflow: hidden;

  border-top: 3px solid var(--rose);
}

.aawe-department-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;

  transition: transform 0.4s ease;
}

.aawe-department-card:hover
.aawe-department-image img {
  transform: scale(1.04);
}


/* =========================================================
   CATEGORY LABEL
   ========================================================= */

.aawe-department-category {
  position: absolute;

  left: 14px;
  bottom: 14px;

  display: inline-flex;
  align-items: center;

  min-height: 31px;

  padding: 6px 12px;

  background: rgba(25, 55, 90, 0.88);

  color: #ffffff;

  font-size: 11px;

  line-height: 1;

  font-weight: 800;

  letter-spacing: 0.2px;
}


/* =========================================================
   CARD BODY
   ========================================================= */

.aawe-department-body {
  display: flex;
  flex-direction: column;

  flex: 1;

  padding: 25px 26px 23px;
}


/* =========================================================
   CARD TITLE
   ========================================================= */

.aawe-department-body h3 {
  margin: 0 0 14px;

  color: #19375a;

  font-size: 19px;

  line-height: 1.35;

  font-weight: 700;
}


/* =========================================================
   CARD DESCRIPTION
   ========================================================= */

.aawe-department-body p {
  margin: 0 0 18px;

  color: #68778c;

  font-size: 13px;

  line-height: 1.7;
}


/* =========================================================
   VIEW DETAILS BUTTON
   ========================================================= */

.aawe-department-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  width: fit-content;

  margin: 2px 0 10px;
  padding: 0;

  border: 0;
  background: transparent;

  color: var(--rose);

  font-family: inherit;
  font-size: 13px;
  font-weight: 700;

  cursor: pointer;

  transition: color 0.2s ease;
}

.aawe-department-toggle:hover {
  color: #b82f45;
}

.aawe-department-toggle i {
  font-size: 11px;

  transition: transform 0.3s ease;
}


/* =========================================================
   DETAILS CLOSED
   ========================================================= */

.aawe-department-details {
  display: none;
}


/* =========================================================
   DETAILS OPEN
   ========================================================= */

.aawe-department-card.details-open
.aawe-department-details {
  display: block;

  margin-top: 22px;
  padding-top: 20px;

  border-top: 1px solid #e2e6eb;
}


/* CHEVRON */

.aawe-department-card.details-open
.aawe-department-toggle i {
  transform: rotate(180deg);
}


/* =========================================================
   OVERVIEW
   ========================================================= */

.aawe-detail-overview {
  margin: 0 0 20px !important;

  color: #5f6f84;

  font-size: 13px;
  line-height: 1.7;
}


/* =========================================================
   DETAIL HEADINGS
   ========================================================= */

.aawe-department-details h4 {
  margin: 0 0 8px;

  color: #19375a;

  font-size: 13px;
  font-weight: 700;
}


/* =========================================================
   KEY FOCUS AREAS
   ========================================================= */

.aawe-department-details ul {
  margin: 0 0 20px;
  padding: 0;

  list-style: none;
}

.aawe-department-details li {
  position: relative;

  margin-bottom: 7px;
  padding-left: 16px;

  color: #68778c;

  font-size: 12.5px;
  line-height: 1.6;
}

.aawe-department-details li::before {
  content: "";

  position: absolute;

  left: 0;
  top: 8px;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--rose);
}


/* =========================================================
   DETAIL PARAGRAPHS
   ========================================================= */

.aawe-department-details h4 + p {
  margin: 0 0 20px;

  color: #68778c;

  font-size: 12.5px;
  line-height: 1.65;
}


/* =========================================================
   CORPORATE PROPOSAL
   ALWAYS VISIBLE
   ========================================================= */

.aawe-detail-cta {
  display: inline-flex;

  align-items: center;
  gap: 7px;

  width: fit-content;

  margin-top: 18px;
}

.aawe-detail-cta i {
  font-size: 12px;
}

/* =========================================================
   DISCOVER LINK
   ========================================================= */

.aawe-department-link {
  display: inline-flex;

  align-items: center;

  gap: 6px;

  width: fit-content;

  color: var(--rose);

  text-decoration: none;

  font-size: 13px;

  font-weight: 700;

  transition:
    gap 0.2s ease,
    color 0.2s ease;
}

.aawe-department-link i {
  font-size: 12px;

  transition: transform 0.2s ease;
}

.aawe-department-link:hover {
  color: #b82f45;

  gap: 9px;
}

.aawe-department-link:hover i {
  transform: translateX(2px);
}


/* =========================================================
   FILTER ANIMATION
   ========================================================= */

.aawe-department-card.aawe-department-hidden {
  display: none;
}


/* =========================================================
   EMPTY MESSAGE
   ========================================================= */

.aawe-departments-empty {
  display: none;

  padding: 35px 20px;

  color: #68778c;

  text-align: center;

  font-size: 14px;
}

.aawe-departments-empty.aawe-show-empty {
  display: block;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

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

    gap: 20px;
  }

  .aawe-department-image {
    height: 220px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .aawe-departments-section {
    padding: 65px 0 70px;
  }

  .aawe-departments-container {
    width: min(100% - 28px, 600px);
  }

  .aawe-departments-heading {
    margin-bottom: 35px;
  }

  .aawe-departments-heading h2 {
    font-size: 30px;
  }

  .aawe-departments-heading p {
    font-size: 13px;
  }


  /* Horizontal scroll tabs */

  .aawe-departments-tabs {
    justify-content: flex-start;

    overflow-x: auto;

    margin-bottom: 30px;

    scrollbar-width: none;
  }

  .aawe-departments-tabs::-webkit-scrollbar {
    display: none;
  }

  .aawe-department-tab {
    flex: 0 0 auto;

    min-width: auto;

    padding-left: 17px;
    padding-right: 17px;

    font-size: 13px;
  }


  .aawe-departments-grid {
    grid-template-columns: 1fr;

    gap: 20px;
  }


  .aawe-department-image {
    height: 220px;
  }


  .aawe-department-body {
    padding: 22px 20px 21px;
  }


  .aawe-department-body h3 {
    font-size: 19px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 450px) {

  .aawe-department-image {
    height: 200px;
  }

  .aawe-department-body {
    padding: 20px 17px;
  }

  .aawe-department-category {
    left: 11px;
    bottom: 11px;

    font-size: 10px;
  }

  .aawe-department-meta {
    gap: 12px;
  }

}

/* =========================================================
   AOS / SCROLL TRANSITIONS
   ========================================================= */

[data-aos] {
  pointer-events: auto;
}


/* Prevent horizontal movement from animations */

html,
body {
  overflow-x: hidden;
}


/* Respect reduced-motion accessibility preference */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

}


/* =========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================= */

.floating-whatsapp {
    position: fixed;
    left: 25px;
    bottom: 25px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 18px;

    background: #25D366;
    color: #ffffff;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);

    z-index: 9999;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.floating-whatsapp i {
    font-size: 22px;
    line-height: 1;
}

.floating-whatsapp:hover {
    background: #20bd5a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575px) {

    .floating-whatsapp {
        left: 18px;
        bottom: 18px;

        width: 52px;
        height: 52px;

        padding: 0;

        justify-content: center;
        border-radius: 50%;
    }

    .floating-whatsapp i {
        font-size: 25px;
    }

    .floating-whatsapp span {
        display: none;
    }
}
