/* ============================================================
   UniRP — styles.css
   Design tokens, layout, and component styles
   ============================================================ */

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #477FD2;
  --green: #004741;
  --green-light: #E4EFD1;
  --slate: #383838;
  --blue-light: #D0DDF0;
  --light-grey: #F1F1F1;
  --white: #FFFFFF;
  --slate-4: #CBCBCB;

  --font-display: 'Darker Grotesque', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--slate);
  background: #fff;
  min-width: 1101px;
  overflow-x: auto;
}

/* ── UTILITIES ── */
img {
  display: block;
  max-width: 100%;
}

p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6 !important;
}

/* ============================================================
   HEADER
   ============================================================ */
header.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  box-shadow: 0 1px 0 #eee;
  padding: 8px 24px;
}

.logo-wordmark {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.5px;
  line-height: 1;
  text-decoration: none;
}

.logo-wordmark img {
  width: 267px;
}

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

nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--slate);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.15s;
  white-space: nowrap;
}

nav a:hover {
  background: var(--green-light);
}

.nav-demo {
  background: var(--green) !important;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px 6px 16px !important;
}

.nav-demo:hover {
  background: #005c55 !important;
}

/* ============================================================
   SHARED BUTTON COMPONENTS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.15s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 10px 14px 10px 20px;
  font-size: 22px;
}

.btn-primary:hover {
  background: #005c55;
}

.btn-book {
  background: var(--green);
  color: #fff;
  padding: 12px 20px;
  font-size: 20px;
  border-radius: 4px;
}

.btn-book:hover {
  background: #005c55;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0 0;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  animation: fadeUp 0.7s ease both;
  position: relative;
  z-index: 2;
}

.hero-logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-logo-mark {
  text-align: center;
}

.hero-logo-mark img {
  width: 263px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 1;
  letter-spacing: -0.48px;
  max-width: 638px;
}

.hero-screen {
  margin-top: -50px;
  width: 100%;
  max-width: none;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  animation: fadeUp 0.9s 0.3s ease both;
  min-height: 500px;
}

.hero-screen img {
  width: 100%;
}

/* ============================================================
   UNIRP PRODUCT HERO
   ============================================================ */
.unirp-product-hero {
  background: var(--blue-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0 0;
  overflow: hidden;
  width: 100%;
  min-height: 624px;
  position: relative;
}

.unirp-product-hero-inner {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  height: auto;
}

.unirp-product-hero-inner svg {
  width: 100%;
  height: auto !important;
  
}

/* ============================================================
   UNIRP KEY MODULES
   ============================================================ */
.unirp-modules {
  padding: 80px 0;
  background: #fff;
}

.unirp-modules-header {
  text-align: center;
  margin-bottom: 60px;
}

.unirp-modules-header p {
  max-width: 638px;
  margin: 12px auto 0;
}

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

}

.module-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.module-card-img {

  background: #f2f2f2;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.module-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.module-card-content {
  background: #fff;
  padding: 12px 20px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.module-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.module-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.module-card-text h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 4px;
  line-height: 1.4;
}

.module-card-text p {

  font-weight: 400;
  color: var(--slate);
  line-height: 1.4 !important;
}

/* ============================================================
   CUSTOMISING UNIRP CALLOUT
   ============================================================ */
.unirp-custom-callout {
  background: var(--blue-light);
  display: flex;
  align-items: stretch;
  min-height: 400px;
}

.unirp-custom-callout-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 60px;
  min-width: 0;
  align-items: flex-start;
}

.unirp-custom-callout-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.unirp-custom-callout-text h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.48px;
  color: var(--slate);
}

.unirp-custom-callout-text p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--slate);
}

.unirp-custom-callout-img {
  width: 564px;
  flex-shrink: 0;
  overflow: hidden;
}

.unirp-custom-callout-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   STAKEHOLDER ACCORDION
   ============================================================ */
.unirp-accordion {
  padding: 80px 40px;
  background: #fff;
}

.acc-item {
  border-bottom: 1px solid var(--slate-4);
}



.acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px;
  cursor: pointer;
}

.acc-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.48px;
  color: var(--slate);
}

.acc-title--open {
  color: var(--blue);
}

.acc-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acc-toggle i {
  font-size: 24px;
  color: var(--blue);
  transition: transform 0.3s ease, color 0.3s ease;
}

.acc-item--open .acc-toggle i {
  color: var(--slate);
  transform: rotate(45deg);
}

.acc-body {
  display: none;
  overflow: hidden;
}

.acc-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 20px 40px;
  height: 350px;
}

.acc-list {
  flex: 1;
  list-style: disc;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  color: var(--slate);
  line-height: 1.4;
}

.acc-list li strong {
  font-weight: 700;
}

.acc-img {
  width: 337px;
  height: 100%;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.acc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* ============================================================
   CONSISTENCY OF UNIRP
   ============================================================ */
.unirp-consistency {}

.unirp-consistency-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.unirp-consistency-header h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.48px;
  color: var(--slate);
  margin-bottom: 12px;
}

.unirp-consistency-header p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--slate);
}

.unirp-consistency-img {
  width: 100%;
}

.unirp-consistency-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   SECTION DEFAULTS
   ============================================================ */
section {
  padding: 80px 0 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.48px;
  line-height: 1;
  color: var(--slate);
}

.section-sub {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--slate);
}

/* ============================================================
   ADMISSION HERO
   ============================================================ */
.admission-hero {
  padding: 100px 0;
  background: #fff;
  display: flex;
  align-items: center;
  min-height: 415px;
  position: relative;
}

.admission-hero-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.admission-hero-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.48px;
  color: var(--slate);
  margin: 0;
}

.admission-divider {
  width: 1px;
  height: 140px;
  background: #D9D9D9;
  transform: rotate(-18deg);
  flex-shrink: 0;
}

.admission-hero-logo {
  width: 301px;
  height: auto;
}

/* ============================================================
   ADMISSION DASHBOARD
   ============================================================ */
.product-dashboard {
  background: var(--blue-light);
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.product-dashboard-img {
  max-width: 735px;
  width: 100%;
}

.product-dashboard-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   PAGE INTRO
   ============================================================ */
.page-intro {
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.page-intro-text {
  font-family: var(--font-display);
  font-size: 48px;
  width: 916px;
  max-width: 100%;
  font-weight: 600;
  color: var(--blue);
  line-height: 1;
  margin: 0;
  margin: auto;
}

/* ============================================================
   PROOF OF WORK  (institution logos)
   ============================================================ */
.proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.proof .section-title {
  text-align: center;
  width: 100%;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 120px;
  gap: 20px;
}

.logos-row img {
  height: 80px;
  object-fit: contain;
  max-width: 200px;
  flex: 1;
  margin: auto;
}

.logos-row.owl-carousel .owl-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 24px;
}

.logos-row.owl-carousel .owl-dot {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.logos-row.owl-carousel .owl-dot span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--slate-4);
  transition: background 0.2s;
  margin: 0;
}

.logos-row.owl-carousel .owl-dot.active span {
  background: var(--blue);
}

/* ============================================================
   COMPREHENSIVE SUITE
   ============================================================ */
.suite {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.suite .section-title {
  padding: 0 60px;
  text-align: center;
}

.suite-grid {
  display: flex;
  width: 100%;
}

.suite-image-bg {
  background: var(--blue-light);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.suite-image-bg img {
  width: 100%;
  border-radius: 4px;
}

.suite-list {
  width: 500px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.suite-item {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--blue-light);
  background: #fff;
  flex: 1;
  cursor: pointer;
  transition: background 0.15s;
}

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


.suite-item.active,
.suite-item:hover {
  background: #f5f5f5;

}

.suite-icon-text-row {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.suite-item-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.suite-item:hover .suite-item-icon,
.suite-item.active .suite-item-icon {
  transform: scale(1.2);
}

.suite-item-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.suite-item-text h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--slate);
}

.suite-item-text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--slate);
}

/* ============================================================
   SUCCESS CARDS
   ============================================================ */
.success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-bottom: 100px;
}

.success-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  width: 100%;
}

.success-cards {
  display: flex;
  gap: 20px;
  width: 100%;
}

.success-card {
  flex: 1;
  border: 1px solid var(--slate-4);
  border-radius: 4px;
  height: 410px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}

.success-card:hover {
  box-shadow: 0 8px 32px rgba(71, 127, 210, 0.12);
  transform: translateY(-2px);
}

.success-card-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 28px 20px 10px;
  flex-shrink: 0;
}

.success-card-num {
  font-size: 60px;
  font-weight: 600;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.6px;
  font-family: var(--font-body);
}

.success-card-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--slate);
}

.success-card-img {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding: 10px;
}

.success-card-img .lottie-hover {
  width: 100%;
  height: 100%;
  transform: scale(1.25);
}




/* ============================================================
   CONNECTIVITY
   ============================================================ */
.connectivity {
  background: var(--green-light);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.connectivity-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.connectivity-diagram img {
  width: 100%;
  border-radius: 8px;
}

/* ============================================================
   KEY METRICS
   ============================================================ */
.metrics {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 80px 60px;
  gap: 40px;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 374px;
}

.metric-number {
  font-family: var(--font-body);
  font-size: 64px;
  font-weight: 500;
  color: var(--blue);
  line-height: 1;
}

.metric-label {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--blue);
  line-height: 1;
}

.metric p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--slate);
}

/* ============================================================
   GREY CALLOUT
   ============================================================ */
.grey-callout {
  background: var(--light-grey);
  display: flex;
  align-items: stretch;
}

.grey-callout-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px;
  align-items: flex-start;
}

.grey-callout-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.grey-callout-text h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.48px;
  color: var(--slate);
}

.grey-callout-text p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--slate);
}

.grey-callout-img {
  width: 705px;
  flex-shrink: 0;
  overflow: hidden;
}

.grey-callout-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.testimonials h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.48px;
  color: var(--slate);
  text-align: center;
}

.testimonial-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.testimonial-cards {
  display: flex;
  align-items: stretch;
  padding: 0 60px;
  gap: 0;
}

.testimonial-card-img {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.testimonial-card-img img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.testimonial-gradient {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 1));
}

.testimonial-quote {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}

.testimonial-author {
  position: relative;
  z-index: 1;
}

.testimonial-author strong {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1.2;
}

.testimonial-author span {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}

.testimonial-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 0 60px;
  gap: 40px;
}

.testimonial-text p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--slate);
}

.testimonial-text strong {
  font-size: 26px;
  font-weight: 700;
  color: var(--slate);
}

.testimonial-body.owl-carousel .owl-dots,
.success-cards.owl-carousel .owl-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 30px !important;
}

.testimonial-body.owl-carousel .owl-dot,
.success-cards.owl-carousel .owl-dot {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.testimonial-body.owl-carousel .owl-dot span,
.success-cards.owl-carousel .owl-dot span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--slate-4);
  transition: background 0.2s;
  margin: 0;
}

.testimonial-body.owl-carousel .owl-dot.active span,
.success-cards.owl-carousel .owl-dot.active span {
  background: var(--blue);
}

/* ============================================================
   ABOUT DETAILS
   ============================================================ */


.abt-bg-img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 50%;

  max-width: 780px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.abt-bg-img img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  object-position: right center;
}

/* ============================================================
   OUR VALUES
   ============================================================ */


.our-values-row {
  margin-top: 40px;

}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.value-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.value-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.value-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  color: var(--slate);
}

.our-values-row.owl-carousel .owl-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 24px;
}

.our-values-row.owl-carousel .owl-dot {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.our-values-row.owl-carousel .owl-dot span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--slate-4);
  transition: background 0.2s;
  margin: 0;
}

.our-values-row.owl-carousel .owl-dot.active span {
  background: var(--blue);
}


/* ============================================================
   CTA SECTION
   ============================================================ */
.cta {
  padding: 80px 60px;
}

.cta-box {
  background: var(--green-light);
  border-radius: 8px;
  height: 322px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta-box-blue {
  background: var(--blue-light);
}

.cta-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px 60px;
  height: 100%;
  justify-content: center;
  align-items: flex-start;
}

.cta-texts {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cta-left {
  flex: 1;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.48px;
  color: var(--slate);
}

.cta-right {
  flex: 1;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.2 !important;
  color: var(--slate);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--blue);
  padding: 40px 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-left: 12px;
}

.footer-top-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 507px;
}

.footer-top-left h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.footer-top-left p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
}

.footer-logo-block {
  text-align: right;
}

.footer-logo-block img {
  width: 401px;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
}

.footer-logo-sub {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 2px;
  margin-top: 2px;
}

.footer-middle {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-right: 113px;
}

.footer-sitemap {
  display: flex;
  gap: 52px;
}

.footer-sitemap .menu{
	list-style:none;
	padding:0;	
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  padding-left: 12px;
}

.footer-col a {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 8px;
  display: block;
  transition: background 0.15s;
}

.footer-col a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 240px;
}

.footer-contact-section h4 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
}

.footer-contact-section p {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
}

.footer-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
}



.social-icon i {
  color: #fff;
  font-size: 16px;
}

.footer-bottom {
  border-top: 1px solid var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}

.footer-bottom a {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 8px;
  transition: background 0.15s;
}

.footer-bottom a:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.animate-fade-up {
  animation: fadeUp 0.7s ease both;
}

.container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
}

.success .container,
.testimonials .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.metris-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.grey-callout .container {
  display: flex;
  align-items: stretch;
  height: 100%;
  width: 100%;
}

/* Utilities */
.btn-arrow {
  font-size: 20px;
  line-height: 1;
}

.font-weight-700 {
  font-weight: 700;
}

.dropdown-menu {
  border: rgba(41, 41, 41, 0.2) solid thin !important;
  padding: 10px;
  box-sizing: border-box;
  width: 180px;

}

.dropdown-item {
  text-align: left !important;
  padding: 5px 10px !important;
  width: 191px;
  max-width: 100%;
  border-radius: 10px;
}

.dropdown-item:hover {
  background: var(--green-light) !important;
}

.dropdown-toggle::after {
  border: none;
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  /* 🔴 MUST for solid icons */
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  justify-content: center;
}

/* ============================================================
   HISTORY TIMELINE
   ============================================================ */
.history-timeline {
  background-color: #FFF5DA;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Vertical Line Background */
.timeline-line-bg {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--blue-light);
  transform: translateX(-50%);
  z-index: 1;
}

/* Vertical Line Fill - Animated by JS */
.timeline-line-fill {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  background: var(--blue);
  transform: translateX(-50%);
  height: 0;
  z-index: 2;
  transition: height 0.1s linear;
}

.timeline-segments {
  position: relative;
  z-index: 3;
}

/* Year Badge */
.timeline-year-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-year-wrapper.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 10;
}

.year-parallelogram {
  background: var(--blue);
  color: #fff;
  font-family: var(--font-body);
  font-size: 48px;
  font-weight: 600;
  padding: 8px 60px;
  transform: skewX(-20deg);
  display: inline-block;
  line-height: 1;

  position: relative;
  z-index: 11;
}

.year-parallelogram span {
  display: inline-block;
  transform: skewX(20deg);
  /* Counter-skew text */
}

/* Content Segment */
.timeline-segment {
  position: relative;
  margin-bottom: 60px;
  min-height: 100px;
}

.timeline-segment .dot {
  position: absolute;
  left: 50%;
  top: 7px;
  width: 11px;
  height: 11px;
  background: var(--blue);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 4;
  opacity: 0;
  transition: all 0.4s ease;
}

.timeline-segment.active .dot {
  opacity: 1;
  transform: translateX(-50%) scale(1.2);
}

.timeline-connector {
  position: absolute;
  top: 12px;
  height: 1.5px;
  background: var(--blue);
  width: 80px;
  z-index: 3;
  opacity: 0;
  transition: all 0.6s ease;
}

.timeline-segment .text-box {
  position: relative;
  width: 440px;
  max-width: 40%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.timeline-segment.active .timeline-connector {
  opacity: 1;
}

.timeline-segment.active .text-box {
  opacity: 1;
  transform: translateY(0);
}

/* Alternating Layout */
.segment-right .timeline-connector {
  left: 50%;
}

.segment-right .text-box {
  margin-left: calc(50% + 90px);
  text-align: left;
}

.segment-left .timeline-connector {
  right: 50%;
}

.segment-left .text-box {
  margin-right: calc(50% + 90px);
  text-align: right;
  margin-left: auto;
}

.text-box p {
  color: var(--slate);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

.abt-text-section {
  padding: 60px 0;
}

/* ============================================================
   ABOUT HERO BANNER
   ============================================================ */
.abt-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.abt-hero-img-wrap {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.abt-hero-img-wrap img {
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: cover;
  object-position: bottom right;
  position: relative;
  display: block;
}

.abt-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(71, 128, 211, 0) 33.667%, #4780d3 89.667%);
}

.abt-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 322px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 60px;
}

.abt-hero-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.48px;
  color: #fff;
  width: 100%;
  margin: 0;
}

.abt-hero-sub {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  max-width: 760px;
  margin: 0;
}

/* ============================================================
   ABOUT — DIFFERENCE COMPARISON SECTION
   ============================================================ */
.abt-diff {
  padding: 80px 60px;
}

.abt-diff .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.abt-diff-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.abt-diff-cols {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.abt-diff-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.abt-diff-col--advantage {
  background: var(--blue-light);
}

.abt-diff-col--standard {
  border: 2px solid var(--light-grey);
}

.abt-diff-col-head {
  display: flex;
  align-items: center;
  padding: 20px 80px;
}

.abt-diff-col-head--blue {
  background: var(--blue);
}

.abt-diff-col-head--blue .section-title {
  color: var(--white);
}

.abt-diff-col-head--grey {
  background: var(--light-grey);
}

.abt-diff-col-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 28px;
}

.abt-diff-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.abt-diff-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  position: relative;
}

.abt-diff-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.abt-diff-item p {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--slate);
  margin: 0;
}

/* ============================================================
   VOICE OF EDUCATION
   ============================================================ */
.voice-edu {
  padding-bottom: 80px;
}

.voice-card-green {
  background: var(--green-light);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--slate);
}

.voice-quote {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 24px;
}

.voice-author-name {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.voice-author-title {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
}

.stat-number {
  color: #547703;
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.44px;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.stat-text {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}

.stat-link {
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  color: var(--slate);
  margin-top: 20px;
}

.stat-link i {
  font-size: 12px;
}

.unirp-protection {
  background: var(--light-grey);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}


.unirp-protection .title, .unirp-protection .row > div:first-child{
  position: relative;
  z-index: 2;
}

/* ============================================================
   CAREER PAGE STYLES
   ============================================================ */
.career-hero {
  display: flex;
  align-items: stretch;
  background: var(--blue);
  min-height: 400px;
}

.career-hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 60px;
  min-width: 0;
  justify-content: center;
}

.career-hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.career-hero-logo {
  width: 160px;
}

.career-hero-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.career-hero-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.48px;
}

.career-hero-sub {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  margin: 0;
}

.career-hero-right {
  width: 705px;
  height: 400px;
  flex-shrink: 0;
  overflow: hidden;
}

.career-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.perks {
  padding: 80px 0;
}

.mx-width-800 {
  max-width: 800px;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;

}

.perk-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.perk-icon {
  width: 80px;
  height: 80px;
}

.perk-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.perk-text h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 12px;
}

.perk-text p {
  font-family: var(--font-body);

  font-weight: 400;
  line-height: 1.6;
  color: #383838;
}

.career-values {
  padding: 0 0 80px;
}

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

.value-card {
  background: var(--green-light);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.value-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--teal-dark, #188A80);
  line-height: 1;
  letter-spacing: -0.64px;
}

.value-content h3 {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 500;
  color: var(--teal-dark, #188A80);
  margin-bottom: 12px;
  line-height: 1.2;
}

.value-content p {
  font-family: var(--font-body);

  font-weight: 400;
  color: #383838;
  line-height: 1.4;
}

.career-gallery {
  padding: 40px 0;
}

.gallery-item {
  height: 350px;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-gallery .owl-dots {
  display: flex !important;
  gap: 8px;
  justify-content: center;
  margin-top: 30px;
}

.career-gallery .owl-dot span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--slate-4) !important;
  margin: 0 !important;
}

.career-gallery .owl-dot.active span {
  background: var(--blue) !important;
}

.career-form-section {
  padding: 80px 0;
}

.career-form p{
	margin:0;	
}

/* ============================================================
   CONTACT PAGE SPECIFIC
   ============================================================ */
.contact-info-title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 500;
  color: var(--blue) !important;
}

.contact-info-text {
  font-family: var(--font-body);
  font-size: 16px;

  color: var(--slate);
  margin-top: 4px;
  padding-left: 35px;

}

.btn-submit-contact {
  background: var(--green);
  color: #fff;
  padding: 12px 32px;
  border: none;
  border-radius: 4px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit-contact:hover {
  background: #003631;
}

.text-blue {
  color: var(--blue) !important;
}


.career-form {
  margin-top: 40px;
}

.form-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 16px;
  border: 1px solid #cbcbcb;
  border-radius: 8px;
  background: #fff;
}

.form-field label {
  font-size: 12px;
  color: #383838;
  margin-bottom: 4px;
}

.form-field input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  color: #383838;
}

.form-field textarea {
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  color: #383838;
  height: 100px;
  resize: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #cbcbcb;
}

.input-with-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.input-with-icon i {
  color: #5d5d5d;
  font-size: 18px;
}

.form-tabs {
  display: flex;
  height: 58px;
  border-radius: 8px;
  overflow: hidden;
}

.tab-btn {
  flex: 1;
  border: none;
  background: #f1f1f1;
  color: #5d5d5d;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.tab-btn.active {
  background: #d0ddf0;
  color: #145597;
  border: 1px solid #477fd2;
}

.attachment-field .file-input {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  width: 100%;
  color: #abafb1;
}

.attachment-field .file-input input {
  display: none;
}

.btn-submit {
  background: var(--green);
  color: #fff;
  padding: 12px 32px;
  border: none;
  border-radius: 4px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}

.btn-submit:hover {
  background: #003631;
}

.hero-divider {
  width: 100%;
  height: 10px;
  background: var(--light-grey);
  position: absolute;
  overflow: hidden;
  bottom: 0;
  left: 0;
}

.hero-divider::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: var(--blue);
  transform: skewX(30deg) translateX(-15px);
}

.contact-info-item i {
  font-size: 16px !important;
  position: relative;
  top: 2px;
}

/* ============================================================
   ADMISSIONS ADVANTAGE
   ============================================================ */
.products-advantage {
  padding-bottom: 80px;
}



.aa-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  color: var(--slate);
  line-height: 1;
  letter-spacing: -0.48px;
  margin: 0;
}

.aa-grid-container {
  background: #fff;
}

.aa-item {
  padding: 52px 40px;
  border-bottom: 1px solid var(--slate-4);

  display: flex;
  flex-direction: column;
}

.aa-item-inner {
  width: 100%;
}

.aa-item-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.aa-item-header i {
  color: var(--blue);
  font-size: 16px;
  flex-shrink: 0;
  position: relative;
  top: 7px;
}

.aa-item-header h3 {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 500;
  color: var(--blue);
  margin: 0;
  line-height: 1.2;
}

.aa-item-body {
  padding-left: 28px;
}

.aa-item-body p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 1.2;
  margin: 0;
}

.aa-mobile-more {
  display: none;
  padding: 20px;
  text-align: right;
}

.aa-mobile-more a {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: underline;
}


.ap-icon {
  color: var(--slate);
  font-size: 24px;
}

.text-link-underline {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  margin-top: 20px;
  color: var(--blue);
  text-decoration: underline;
  display: inline-block;
}

.product-feature {
  background: var(--blue-light);
  min-height: 440px;
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  margin-top: 80px;
}

.product-feature-points {
  margin-top: 40px;
}

.product-feature-points ol {
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-feature-points li {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  color: #000;
  line-height: 1.2;
  margin-bottom: 8px;
}

.product-feature-img {
  position: absolute;
  top: 0;
  right: -50px;
  height: 100%;
  z-index: 1;
}

.product-feature-img img {
  width: auto;
  height: 533px;
}

.lg-hidden {
  display: none;
}

#pf-points-list li:nth-child(n+5) {
  display: none;
}

/* ============================================================
   BLOG FEATURED CAROUSEL
   ============================================================ */
.blog-featured {
  padding: 80px 0;
  background: #fff;
}

.featured-card {
  background: var(--blue-light);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 430px;
  margin: 0 60px;
}

.featured-img-box {
  flex: 1;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
}

.featured-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 24px;
}

.featured-tag {
  background: var(--blue);
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 16px;
  font-family: var(--font-body);
  margin-bottom: 24px;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 16px;
}

.featured-meta .category {
  color: var(--blue);
}

.featured-meta ul {
  padding: 0;
  margin: 0;
  list-style: disc;
  opacity: 0.5;
  color: var(--slate);
  margin-left: 24px;
}

.featured-meta ul li span {
  display: none;
}

.featured-meta .date {
  opacity: 0.5;
  color: var(--slate);
}

.featured-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.48px;
  color: var(--slate);
  margin-bottom: 12px;
}

.featured-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4;
  color: var(--slate);
  margin-bottom: 24px;
}

.featured-link {
  color: #145597;
  /* Blue Dark */
  font-family: var(--font-body);
  font-weight: 500;
  text-decoration: none;
  font-size: 16px;
}

.featured-link::after {
  content: ' >';
}

.featured-link:hover {
  text-decoration: underline;
}

/* OWL DOTS Overrides */
.featured-carousel.owl-theme .owl-dots {
  margin-top: 24px;
}

.featured-carousel.owl-theme .owl-dot span {
  width: 10px;
  height: 10px;
  background: var(--slate-4);
  margin: 5px 3px;
}

.featured-carousel.owl-theme .owl-dot.active span {
  background: var(--blue);
}

/* ============================================================
   BLOG POSTS GRID
   ============================================================ */
.blog-posts {
  padding-bottom: 80px;
}

.blog-filters {
  border-top: 1px solid #cbcbcb;
}

.filter-btn {
  border: none;
  background: transparent;
  padding: 6px 12px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--slate);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border: 1px solid transparent;
}

.filter-btn:hover {
  background: #f8f9fa;
  color: var(--blue);
}

.filter-btn.active {
  background: var(--blue-light);
  color: var(--blue);

}

.blog-card {
  border: 1px solid var(--blue-light);
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card-img {
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--slate);
  text-decoration: underline;
  margin-bottom: 12px;
  display: block;
}

.blog-card-title:hover {
  color: var(--blue);
}

.blog-card-desc {
  font-size: 12px;
  line-height: 1.4;
  color: var(--slate);
  margin-bottom: 16px;
}

.read-more {
  color: #145597;
  /* Blue Dark */
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.2s;
}

.blog-card:hover .read-more {
  opacity: 1;
}

.read-more::after {
  content: ' >';
}

/* ============================================================
   BLOG DETAIL STYLES
   ============================================================ */
.blog-detail {
  padding: 40px 0;
}

.blog-detail-header {
  border-bottom: 1px solid var(--slate-4);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 20px;
  padding: 4px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}

.back-btn:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.blog-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.blog-title-area {
  margin-bottom: 24px;
}

.blog-detail-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.48px;
  color: #000;
  margin-bottom: 12px;
}

.blog-detail-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--slate);
  opacity: 0.8;
}

.blog-detail-meta .left-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-detail-meta .category {
  color: var(--blue);
  opacity: 1;
}

.blog-detail-meta .separator {
  width: 4px;
  height: 4px;
  background: var(--slate);
  border-radius: 50%;
  opacity: 0.5;
}

.blog-main-img {
  width: 100%;
  height: 600px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}

.blog-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-article-body {
  font-family: var(--font-body);
  color: #000;
}

.blog-article-body p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 400;
}

.blog-article-body h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin: 40px 0 20px;
}

.blog-article-body h3 {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin: 32px 0 16px;
  color: #000;
}

.blog-footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--slate-4);
  padding-top: 20px;
  margin-top: 40px;
}

.nav-link-btn {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 20px;
  padding: 4px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-link-btn:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.blog-cta-content {
  max-width: 632px;
}

#suite-animations {
  transition: opacity 0.3s ease;
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: var(--blue);
  color: #fff !important;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 2000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
}

.back-to-top:hover {
  background: var(--green);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
  .back-to-top {
    bottom: 30px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

.unirp-hero-text {
  position: absolute;
  top: -60px;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.unirp-hero-text h1 {
  font-weight: 600;
  text-align: center;
}

.unirp-hero-text p {
  text-align: center;
  font-size: 26px;
}

.protection-img svg {
  transform: scale(1.5) !important;
}

/* ============================================================
   TAILORED PARTNERSHIP ANIMATION
   ============================================================ */
.tailored-partnership {
  position: relative;
  background: #fff;
  padding-bottom: 0;
}

.tp-scroll-container {
  min-height: 250vh;
  /* Balanced sweep space to prevent items skipping together on wheel ticks */
  position: relative;
}

.tp-sticky-wrapper {
  position: sticky;
  top: 80px;
  height: calc(60vh - 100px);
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}

.tp-text-col,
.tp-img-col {
  height: 100px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
}

.tp-text-col {
  justify-content: flex-start;
}

.tp-text-item {
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  max-height: 0;
  margin: 0;
  overflow: hidden;
  will-change: opacity, max-height, transform;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.tp-text-item.active {
  opacity: 1;
  transform: translateY(0);
  max-height: 40px;
  margin-bottom: 16px;
}

.tp-text-item.prev {
  opacity: 1;
  transform: translateY(0);
  max-height: 40px;
  margin-bottom: 16px;
}

.tp-text-item h3 {
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 600;
  color: var(--blue);

  margin: 0;
  white-space: nowrap;
  will-change: font-size, color;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left center;
}

.tp-text-item.active h3,
.tp-text-item.prev h3 {
  font-size: 27px;
  color: var(--slate);
}

.tp-text-item.active h3 {
  color: var(--slate);
}

.tp-text-item[data-index="0"],
.tp-text-item.active[data-index="0"],
.tp-text-item.prev[data-index="0"] {
  max-height: 40px;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.tp-text-item[data-index="0"] h3,
.tp-text-item.active[data-index="0"] h3,
.tp-text-item.prev[data-index="0"] h3 {
  font-family: var(--font-body);
  font-size: 24px !important;
  font-weight: 500;
  color: var(--slate) !important;
  line-height: 1.4 !important;
}

.tp-sticky-images {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tp-img-item {
  position: absolute;
  opacity: 0;
  transform: translateY(60px) scale(1);
  width: 100%;
  max-width: 500px;
  display: flex;
  justify-content: center;
  will-change: opacity, transform;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.tp-img-item.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 2;
}

.tp-img-item.prev {
  opacity: 0;
  transform: translateY(-60px) scale(1);
}

.tp-img-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.abt-dtl {
  padding-bottom: 80px;
}

.contact-sec {
  padding-bottom: 80px;
}

.suite-item .text-link-underline{
  margin: 0;
  font-size: 15px;
}

.protection-row p{
  font-size: 26px;
}

.career-form .form-tabs p{
	width:100% !important;
}

.cust-btn-radio{
	width: 100%;
    display: flex;
    justify-content: flex-start;
	height:100%;
}

.cust-btn-radio span{
	flex:1;	
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	text-align:center;
}

.cust-btn-radio span label{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	text-align:center;
	align-items:center;
	width:100%;
}

.cust-btn-radio span label span{
		background: #f1f1f1;
    color: #5d5d5d;
    font-size: 16px;
    font-weight: 500;
	border:transparent solid 1px;
	height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
	cursor:pointer;
}

.cust-btn-radio span label input:checked + span{
	background: #d0ddf0;
    color: #145597;
    border: 1px solid #477fd2;	
}

.cust-btn-radio span:first-child label span{
	border-bottom-left-radius:8px;
	border-top-left-radius:8px;		
}

.cust-btn-radio span:last-child label span{
	border-bottom-right-radius:8px;
	border-top-right-radius:8px;		
}

.cust-btn-radio span input{
	display:none;	
}

#menu-header a{
	text-transform:uppercase;
	font-size:15px;	
}

#menu-header > a:last-child{
	background:var(--green);	
	color:#fff !important;
}

#menu-header > a:last-child:hover{
	background: #005c55 !important;
}
