/* Import Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;500;600;700&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,600;0,6..72,700;1,6..72,400&display=swap');

:root {

  --primary-blue: #0C63B6;
  --primary-blue-hover: #0a5297;
  --text-dark: #0D1F3C;
  --text-muted: #4A5560;
  --accent-red: #E71C1C;
  --text-light: #4A5560;
  --accent-red-bg: rgba(231, 28, 28, 0.08);
  --mulish: 'Mulish', sans-serif;
  --newsreader: 'Newsreader', serif;

  /* Font Size Variables */
  --fs-8: 8px;
  --fs-10: 10px;
  --fs-11: 11px;
  --fs-12: 12px;
  --fs-13: 13px;
  --fs-13-5: 13.5px;
  --fs-14: 14px;
  --fs-14-5: 14.5px;
  --fs-15: 15px;
  --fs-16: 16px;
  --fs-17: 17px;
  --fs-18: 18px;
  --fs-20: 20px;
  --fs-22: 22px;
  --fs-23: 23px;
  --fs-24: 24px;
  --fs-25: 25px;
  --fs-26: 26px;
  --fs-28: 28px;
  --fs-29: 29px;
  --fs-30: 30px;
  --fs-32: 32px;
  --fs-35: 35px;
  --fs-36: 36px;
  --fs-40: 40px;
  --fs-45: 45px;
  --fs-48: 48px;
  --fs-50: 50px;
  --fs-60: 60px;
}

@media (max-width: 767.98px) {
  :root {
    --fs-18: 16px;
    --fs-20: 16px;
    --fs-32: 24px;
    --fs-35: 25px;
    --fs-36: 26px;
    --fs-40: 28px;
    --fs-45: 28px;
    --fs-48: 28px;
    --fs-50: 28px;
    --fs-60: 28px;
  }

  .py-5 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  .my-5 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }

  .py-4 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }

  .support-banner-section {
    padding: 45px 0 !important;
  }

  .services-cta-banner {
    padding: 45px 0 !important;
  }

  .hero-section {
    padding: 40px 0 !important;
  }
}

body {
  font-family: var(--mulish);
  color: var(--text-light);
  background-color: #ffffff;
  overflow-x: hidden;
}

.lead {
  font-size: var(--fs-20) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--newsreader);
  color: var(--text-dark);
  font-weight: 700;
}

/* Custom Grid Background */
#hero-banner {
  background-image: url(../images/home-bg.webp);
  background-size: cover;
  background-position: left bottom;
}

.hero-section {
  position: relative;
  background-size: 30px 30px;
  background-image:
    linear-gradient(to right, var(--bg-grid-color) 1px, transparent 1px),
    linear-gradient(to bottom, var(--bg-grid-color) 1px, transparent 1px);
  padding: 100px 0;
}

#about-hero p {
  font-family: var(--mulish);
  font-size: var(--fs-18);
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 24px;
}

#about-hero p:last-of-type {
  margin-bottom: 0;
}

/* ECG Heartbeat overlay */


/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: all 0.3s ease;
  background: transparent;
  width: 100%;
}

header.header-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(12, 99, 182, 0.1);
}

.navbar {
  padding: 24px 0;
  background: transparent;
  transition: all 0.3s ease;
}

header.header-scrolled .navbar {
  padding: 12px 0;
}

.navbar-brand img {
  max-height: 45px;
}

.nav-link {

  font-weight: 600;
  color: var(--text-dark) !important;
  margin: 0 15px;
  transition: all 0.3s ease;
  font-size: var(--fs-15);
  position: relative;
  padding-bottom: 4px;
  font-size: var(--fs-18);
  ;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue) !important;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-red);
}

/* Buttons */
.btn-custom-primary {
  background-color: var(--primary-blue);
  color: #ffffff;
  font-weight: 600;
  padding: 12px 35px;
  border-radius: 6px;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: var(--fs-16);
}

.btn-custom-primary:hover {
  background-color: var(--primary-blue-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(9, 89, 165, 0.15);
}

.btn-custom-secondary {
  background-color: #ffffff;
  color: var(--text-dark);
  font-family: var(--mulish);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  border: 1px solid #4A5568;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: var(--fs-15);
}

.btn-custom-secondary:hover {
  border-color: var(--text-dark);
  background-color: var(--text-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Badge / Pill */
.badge-pill-custom {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-size: var(--fs-14);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-red);

  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid rgba(234, 67, 53, 0.15);
  margin-bottom: 24px;
}

/* Hero Content */
.hero-title {
  font-size: var(--fs-60);
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 600;
}

.hero-lead {
  font-size: var(--fs-18);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Image Placeholder & Overlapping Card */
.hero-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.hero-image-wrapper {
  padding-left: 100px;
}

.placeholder-lab-img,
.hero-img {
  width: 100%;
  /* height: 480px; */
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(15, 29, 51, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.placeholder-lab-img {
  background: linear-gradient(135deg, #e9f1f7 0%, #d4e5f2 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--primary-blue);
  text-align: center;
  padding: 20px;
}

.placeholder-lab-img svg {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  opacity: 0.8;
}

/* Overlapping Card */
.support-card {
  position: absolute;
  left: 12px;
  bottom: -46px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: 0 15px 35px rgba(15, 29, 51, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.6);
  max-width: 320px;
  z-index: 10;
  transition: transform 0.3s ease;
}

.support-card:hover {
  transform: translateY(-5px);
}

.support-card-title {
  font-family: var(--mulish);
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--primary-blue);
  margin-bottom: 16px;
  text-transform: uppercase;
}

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

.support-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-12);
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.support-list-item:last-child {
  margin-bottom: 0;
}

.support-list-item svg {
  flex-shrink: 0;
  color: var(--primary-blue);
  width: 16px;
  height: 16px;
}

/* Responsive Breakpoints */
@media (min-width:1200px) {
  .container {
    width: 1420px;
    padding-left: 50px;
    padding-right: 50px;
    max-width: 100%;
  }
}

@media (max-width: 1199.98px) {
  .hero-title {
    font-size: var(--fs-45);
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
  }

  .nav-link {
    margin: 10px 0;
  }

  .hero-section {
    padding: 40px 0 80px 0;
  }

  .hero-title {
    font-size: var(--fs-40);
  }

  .hero-image-wrapper {
    margin-top: 60px;
    padding-left: 0;
  }

  .support-card {
    position: relative;
    left: 0;
    bottom: 0;
    margin: -40px auto 0 auto;
    max-width: 90%;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding-bottom: 50px;
  }

  .hero-image-wrapper {
    padding: 0;
  }

  .hero-title {
    font-size: var(--fs-32);
  }

  .placeholder-lab-img {
    height: 350px;
  }

  .support-card {
    padding: 16px 20px;
    margin: -30px auto 0 auto;
  }

  .section-title {
    font-size: var(--fs-26);
  }
}

/* Stats Row Section */
.stats-section {
  background-color: #ffffff;
  border-bottom: 1px solid #0C63B62E;
}

.stats-number {
  font-family: var(--newsreader);
  font-size: var(--fs-30);
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 4px;
}

.stats-text {
  font-family: var(--mulish);
  font-size: var(--fs-16);
  font-weight: 500;
}

@media (min-width: 768px) {
  .border-end-md {
    border-right: 1px solid #0C63B62E !important;
  }
}

/* Challenge & Solution Section */
.badge-tag-red {
  display: inline-block;
  font-family: var(--mulish);
  font-size: var(--fs-16);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 12px;
}

.section-title {
  font-size: var(--fs-35);
  line-height: 1.25;
  color: var(--text-dark);
}

.challenge-section .badge-tag-red {
  font-size: var(--fs-16);
}


h2.section-title {

  font-weight: 600;
}


.challenge-section p {
  font-family: var(--mulish);
  font-size: var(--fs-16);
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.challenge-section p:last-of-type {
  margin-bottom: 0;
}

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

.challenge-list-item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-family: var(--mulish);
  font-size: var(--fs-16);
  color: var(--text-muted);
}

.challenge-list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-red);
  font-size: var(--fs-18);
  line-height: 1;
}

/* Solution Container & Image Placeholder */
.solution-container-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.solution-img-placeholder {
  position: relative;
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #0d1f3c 0%, #1a365d 100%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 29, 51, 0.08);
}

.solution-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.solution-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 31, 60, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 12px 20px;
}

.solution-overlay-text {
  font-family: var(--newsreader);
  font-size: var(--fs-16);
  /*! font-style: italic; */
  color: #ffffff;
  text-align: left;
  margin: 0;
  line-height: 1.4;
  width: 100%;
}

.solution-box {
  background-color: #0c2340;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(12, 35, 64, 0.12);
  padding: 30px;
}

.solution-tag {
  font-family: var(--mulish);
  font-size: var(--fs-16);
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary-blue);
  text-transform: uppercase;
}

.solution-title {
  font-size: var(--fs-22);
  line-height: 1.4;
  font-weight: 600;
  padding-bottom: 15px;
  border-bottom: 1px solid #FFFFFF1A;
}

.solution-text {
  font-family: var(--mulish);
  font-size: var(--fs-16);
  line-height: 1.6;
  color: #a5b8cf;
}

/* What We Do / Services Section */
.bg-light-section {
  background-color: #f7f9fc;
}

.section-subtitle {
  font-family: var(--mulish);
  font-size: var(--fs-18);
  line-height: 1.6;
}

.service-card {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(230, 235, 242, 0.7);
  box-shadow: 0 8px 24px rgba(15, 29, 51, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(15, 29, 51, 0.08);
}

.service-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: rgba(12, 99, 182, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-blue);
}

.service-icon-wrapper svg,
.service-icon-wrapper img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.service-card h3 {
  font-size: var(--fs-20);
  font-weight: 700;
  color: var(--text-dark);
}

.service-card p {
  font-family: var(--mulish);
  font-size: var(--fs-16);
  line-height: 1.65;
}

.cardiology-section .lft-sc p {
  font-size: var(--fs-18);
}

.service-link {
  font-family: var(--mulish);
  font-weight: 700;
  font-size: var(--fs-20);
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-link:hover {
  color: var(--primary-blue-hover);
}

.service-link .arrow {
  transition: transform 0.2s ease;
}

.service-link:hover .arrow {
  transform: translateX(4px);
}

/* Programs Banner */
.programs-banner {
  background-color: rgba(12, 99, 182, 0.04);
  border: 1px solid rgba(12, 99, 182, 0.1);
  border-radius: 12px;
}

.programs-banner h4 {
  font-family: var(--mulish);
  font-size: var(--fs-18);
  font-weight: 700;
  color: var(--text-dark);
}

.programs-banner p {
  font-family: var(--mulish);
  font-size: var(--fs-16);
}

.btn-custom-link {
  font-family: var(--mulish);
  font-weight: 700;
  font-size: var(--fs-13-5);
  color: var(--primary-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.btn-custom-link:hover {
  color: var(--primary-blue-hover);
}

.btn-custom-link .arrow {
  transition: transform 0.2s ease;
}

.btn-custom-link:hover .arrow {
  transform: translateX(4px);
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
  .section-title {
    font-size: var(--fs-29);
  }
}

/* Built Specifically for Cardiology Section */
.bg-dark-navy {
  background-color: #0c2340;
}

.text-light-muted {
  color: #a5b8cf;
  font-family: var(--mulish);
  font-size: var(--fs-16);
}

.conditions-box {
  /*! background-color: rgba(255, 255, 255, 0.03); */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.conditions-title {
  font-family: var(--mulish);
  font-size: var(--fs-16);
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #79a6d2;
  margin-bottom: 20px !important;
}

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

.conditions-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mulish);
  font-size: var(--fs-16);
  color: #ffffff;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.conditions-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.conditions-item:first-child {
  padding-top: 0;
}

.conditions-item .heart-icon {
  width: 16px;
  height: 16px;
  color: var(--accent-red);
  flex-shrink: 0;
}

.monitor-img-placeholder,
.cardiology-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.monitor-img-placeholder {
  background: linear-gradient(135deg, #112847 0%, #07162c 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.heart-pulse-wave svg {
  width: 100px;
  height: 100px;
}

/* Service Packages Section */
.package-card {
  background-color: #ffffff;
  border: 1px solid #e6ebf2;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.packages-section {
  background-color: #F5F7FA;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(15, 29, 51, 0.08);
}

.package-card.featured {
  position: relative;
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  box-shadow: 0 15px 35px rgba(12, 99, 182, 0.15);
}

@media (min-width: 992px) {
  .package-card.featured {
    transform: scale(1.03);
  }

  .package-card.featured:hover {
    transform: translateY(-5px) scale(1.03);
  }
}

.badge-featured {
  position: absolute;
  top: 9px;
  left: 10px;

  font-family: var(--mulish);
  font-size: var(--fs-14);
  font-weight: 700;
  letter-spacing: 1px;
  /*! background-color: rgba(255, 255, 255, 0.15); */
  color: #FFFFFF8C;
  padding: 4px 10px;
  border-radius: 20px;
  width: 100%;
}

.package-card h3 {
  font-size: var(--fs-36);
  font-weight: 700;
  color: var(--primary-blue);
  margin-top: 15px;
  margin-bottom: 5px;
}

.package-card.featured h3 {
  margin-top: 25px;
}

.package-card p:nth-of-type(1) {
  font-family: var(--mulish);
  font-size: var(--fs-14);
  font-weight: 700;
  letter-spacing: 1px;
  color: #5B6880;
  margin-bottom: 20px;
}

.package-card p:nth-of-type(2) {
  font-family: var(--mulish);
  font-size: var(--fs-16);
  line-height: 1.6;
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}

.btn-package-outline {
  font-family: var(--mulish);
  font-weight: 700;
  font-size: var(--fs-16);
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.2s ease;
  background-color: transparent;
}

.btn-package-outline:hover {
  background-color: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
}

.btn-package-white {
  font-family: var(--mulish);
  font-weight: 700;
  font-size: var(--fs-16);
  color: var(--primary-blue);
  background-color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.2s ease;
  border: none;
}

.btn-package-white:hover {
  background-color: #f7f9fc;
  color: var(--primary-blue-hover);
}

/* Why Us Section Accordion */
.doctors-img-placeholder,
.doctors-img {
  width: 100%;
  /* height: 480px; */
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(15, 29, 51, 0.05);
}

.doctors-img-placeholder {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.doctors-graphic svg {
  width: 120px;
  height: 120px;
  opacity: 0.6;
}

.accordion-custom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion-item {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 20px;
}

.accordion-item[open] {
  padding-bottom: 20px;
}

.accordion-header {
  font-family: var(--newsreader);
  font-weight: 700;
  font-size: var(--fs-22);
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.accordion-header::-webkit-details-marker {
  display: none;
}

.accordion-icon {
  width: 18px;
  height: 18px;
  color: var(--primary-blue);
  object-fit: contain;
  margin-top: 4px;
}

.arrow-indicator {
  font-size: var(--fs-10);
  color: var(--text-muted);
}

.accordion-content {
  font-family: var(--mulish);
  font-size: var(--fs-17);
  line-height: 1.6;
}

.accordion-item[open] .arrow-indicator {
  transform: rotate(180deg);
}

/* Process / How It Works */
.border-bottom-light {
  border-bottom: 1px solid #e2e8f0;
}

.process-step-item {
  transition: transform 0.2s ease;
}

.process-step-item:hover {
  transform: translateX(5px);
}

.step-number {
  font-family: var(--newsreader);
  font-size: var(--fs-50);
  font-weight: 400;
  color: var(--accent-red);
  line-height: 1;
}

.step-title {
  font-family: var(--mulish);
  font-size: var(--fs-22);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.step-desc {
  font-family: var(--mulish);
  font-size: var(--fs-16);
  line-height: 1.6;
}

/* Overlapping Process Images Placeholders */
.overlapping-images-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 300px;

}

.process-section .rgt-img img {
  width: 400px;
}

.overlapping-img {
  position: absolute;
  border-radius: 12px;


  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: transform 0.3s ease;
}





.img-front {
  bottom: 20px;
  left: 20px;
  width: 400px;
  height: 400px;
  z-index: 10;
  object-fit: contain;

}

.clipboard-graphic,
.assistant-graphic {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.overlapping-img img,
.img-front img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Support Callout Banner */
.support-banner-section {
  background-color: var(--primary-blue);
  padding: 100px 0px;
}

.banner-highlight-title {
  font-family: var(--newsreader);
  font-size: var(--fs-40);
  font-weight: 600;
  line-height: 1.25;
  color: white;
  max-width: 500px;
}

.banner-highlight-desc {
  font-family: var(--mulish);
  font-size: var(--fs-16);
  line-height: 1.7;
}

/* Contact Section & Form Card */
.contact-section p {
  font-size: var(--fs-16);
}

.contact-section .lft-sc p {
  font-size: var(--fs-18);
}

.contact-form-card {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #0C63B626;
  box-shadow: 0 20px 40px rgba(15, 29, 51, 0.06);
}

.form-subtext {
  font-family: var(--mulish);
  font-size: var(--fs-13-5);
  line-height: 1.6;
}

.form-control-custom {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #0C63B666;
  border-radius: 0;
  padding: 12px 4px;
  font-family: var(--mulish);
  font-size: var(--fs-14);
  color: var(--text-dark);
  transition: border-color 0.2s ease;
}

.form-control-custom:focus {
  outline: none;
  border-bottom-color: var(--primary-blue);
}

.btn-form-submit {
  font-family: var(--mulish);
  font-weight: 700;
  font-size: var(--fs-16);
  color: var(--text-dark);
  border: 1px solid #0d1f3c;
  background-color: #ffffff;
  padding: 12px 30px;
  border-radius: 6px;
  transition: all 0.2s ease;
  width: fit-content;
}

.btn-form-submit:hover {
  background-color: var(--text-dark);
  color: #ffffff;
  border-color: var(--text-dark);
}

/* Footer Section */
.footer-section {
  background-color: #0b1b33;
  font-size: var(--fs-14);
}

.footer-title {
  font-family: var(--mulish);
  font-size: var(--fs-11);
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #ffffff;
  margin-bottom: 20px;
}

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

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

.footer-links a {
  font-family: var(--mulish);
  font-size: var(--fs-13-5);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.contact-info-list li {
  font-family: var(--mulish);
  font-size: var(--fs-13-5);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}

.contact-icon {
  color: var(--primary-blue);
  flex-shrink: 0;
}

.social-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}

.social-link:hover {
  background-color: var(--primary-blue);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Responsive Overrides */
@media (max-width:1199.98px) {
  .img-front {
    width: 250px;
    height: 250px;
  }

  .overlapping-images-wrapper {
    padding-bottom: 200px;
  }
}

@media (max-width: 991.98px) {
  .support-banner-section {
    padding: 70px 0px;
  }

  .doctors-img-placeholder {
    height: 320px;
    margin-bottom: 40px;
  }

  .overlapping-images-wrapper {
    margin-top: 50px;
  }
}

@media (max-width: 767.98px) {
  .img-front {
    bottom: 107px;
  }

  .support-banner-section {
    padding: 40px 0px;
  }

  .banner-highlight-title {
    font-size: var(--fs-25);
  }

  .process-section .rgt-img img {
    width: 100%;
  }

  .step-number {
    font-size: var(--fs-30);
  }

  .step-title {
    font-size: var(--fs-20);
  }

  .accordion-header {
    font-size: var(--fs-18);
  }

  .package-volume {
    font-size: var(--fs-25);
  }

  .overlapping-images-wrapper {
    padding-left: 60px;
    margin-top: 40px;
  }

  .img-back {
    width: 240px;
    height: 200px;
  }

  .img-front {
    width: 220px;
    height: 180px;
  }
}

/* Custom Spacing & Layout Utilities (replacing inline styles) */
.z-index-2 {
  z-index: 2 !important;
  position: relative;
}

.max-width-280 {
  max-width: 280px !important;
}

.w-100-h-100-cover {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Brand Logo Text Utilities */
.brand-logo-text-title {
  font-family: var(--mulish);
  font-weight: 700;
  font-size: var(--fs-22);
  color: var(--primary-blue);
  letter-spacing: 0.5px;
  line-height: 1;
}

.brand-logo-text-subtitle {
  font-family: var(--mulish);
  font-weight: 600;
  font-size: var(--fs-10);
  color: var(--text-dark);
  letter-spacing: 2.5px;
  line-height: 1.2;
  margin-top: 2px;
}

.brand-logo-text-title-footer {
  font-family: var(--mulish);
  font-weight: 700;
  font-size: var(--fs-18);
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1;
}

.brand-logo-text-subtitle-footer {
  font-family: var(--mulish);
  font-weight: 600;
  font-size: var(--fs-8);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  line-height: 1.2;
  margin-top: 2px;
}

.challenge-section .solution-title {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}

.footer-dev-text {
  font-weight: 700;
  color: var(--primary-blue);
  font-size: var(--fs-14);
}

/* About Page Hero & Section Styling */
.inng-pg-hero {
  background-image: url(../images/about-bg.webp);
  background-size: cover;
  background-position: left bottom;
}

.about-hero-title {
  font-size: var(--fs-48) !important;
}

.about-hero-img {
  height: 400px !important;
  object-fit: cover !important;
}

.about-challenge-title {
  font-size: var(--fs-40) !important;
}

.about-solution-placeholder {
  height: 240px !important;
  background: linear-gradient(135deg, #e2e8f0 0%, #94a3b8 100%) !important;
}

.about-solution-title {
  font-size: var(--fs-23) !important;
  line-height: 1.45 !important;
}

.navbar-toggler {
  padding: 0;
}

/* Growth Section Styling */
.growth-section {
  background-color: #f8fafd;
  border-top: 1px solid rgba(12, 99, 182, 0.05);
  border-bottom: 1px solid rgba(12, 99, 182, 0.05);
}

.growth-section p {
  font-family: var(--mulish);
  font-size: var(--fs-16);
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.growth-italic-text {
  font-family: var(--newsreader);
  font-size: var(--fs-22);
  font-style: italic;
  font-weight: 500;
  color: var(--primary-blue);
  line-height: 1.5;
}

.services-include-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(13, 31, 60, 0.05);
  border: 1px solid rgba(12, 99, 182, 0.04);
}

.services-include-title {
  font-size: var(--fs-24);
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--newsreader);
}

.services-include-list li {
  font-family: var(--mulish);
  font-size: var(--fs-16);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

/* Experience Section Styling */
.experience-section {
  background-color: #0c1b33;
  color: #ffffff;
}

.experience-section p {
  color: #a5b8cf;
  font-size: var(--fs-16);
  line-height: 1.6;
  margin-bottom: 24px;
}

.experience-section p:last-of-type {
  margin-bottom: 0;
}

.text-light-muted {
  color: #a5b8cf;
  font-size: var(--fs-16);
  line-height: 1.6;
}

.experience-img-placeholder {
  background: linear-gradient(135deg, #132742 0%, #0d1f3c 100%);
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 16px;

  width: 100%;
  transition: all 0.3s ease;
}

.experience-img-placeholder:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #183152 0%, #102547 100%);
}

/* Mission Section Styling */
.mission-section {
  background-color: var(--primary-blue);
}

.mission-title {
  font-family: var(--newsreader);
  font-size: var(--fs-40);
  font-weight: 700;
  line-height: 1.2;
}

.mission-lead p {
  font-family: var(--mulish);
  font-size: var(--fs-18);
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}



/* Approach Section Styling */
.approach-section {
  background-color: #f8fafd;
}

.approach-card {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(230, 235, 242, 0.8);
  box-shadow: 0 10px 30px rgba(13, 31, 60, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(13, 31, 60, 0.08);
  border-color: rgba(12, 99, 182, 0.1);
}

.approach-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(231, 28, 28, 0.2);
  background-color: rgba(231, 28, 28, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.approach-card-title {
  font-family: var(--newsreader);
  font-size: var(--fs-20);
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.35;
}

.approach-card-text {
  font-family: var(--mulish);
  font-size: var(--fs-14);
  line-height: 1.6;
}

/* Story Section Styling */
.story-section p {
  font-family: var(--mulish);
  font-size: var(--fs-16);
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.story-section p.story-highlight-text {
  margin-bottom: 24px;
}

.story-section p:last-of-type {
  margin-bottom: 0;
}

.story-img-placeholder {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  border: 2px dashed #94a3b8;
  border-radius: 16px;
  height: 420px;
  width: 100%;
  transition: all 0.3s ease;
}

.story-img-placeholder:hover {
  border-color: #64748b;
  background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
}

.story-highlight-text {
  font-family: var(--newsreader);
  font-size: var(--fs-22);
  font-style: italic;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.5;
}

/* Forward Section Styling */
.forward-section {
  background-color: #f8fafd;
  border-top: 1px solid rgba(12, 99, 182, 0.05);
}

.forward-section p {
  font-family: var(--mulish);
  font-size: var(--fs-16);
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.forward-section p:last-of-type {
  margin-bottom: 0;
}

.forward-card {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(230, 235, 242, 0.8);
  box-shadow: 0 15px 40px rgba(13, 31, 60, 0.04);
}

.forward-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-red);
  margin-top: 3px;
}

.forward-icon svg {
  width: 22px;
  height: 22px;
}

.forward-list h3 {
  font-family: var(--mulish);
  font-size: var(--fs-18);
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.35;
  margin-bottom: 8px !important;
}

.forward-list p {
  font-family: var(--mulish);
  font-size: var(--fs-14-5);
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0;
}

.pathway-section {
  background-color: #f8fafd;
  border-top: 1px solid rgba(12, 99, 182, 0.05);
  border-bottom: 1px solid rgba(12, 99, 182, 0.05);
}

.pathway-card {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(230, 235, 242, 0.8);
  box-shadow: 0 15px 40px rgba(13, 31, 60, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pathway-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(13, 31, 60, 0.08);
  border-color: rgba(12, 99, 182, 0.1);
}

.pathway-badge {
  font-family: var(--mulish);
  font-size: var(--fs-14);
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
}

.pathway-badge-01 {
  color: var(--primary-blue);
}

.pathway-badge-02 {
  color: var(--accent-red);
}

.pathway-card h3 {
  font-family: var(--newsreader);
  font-size: var(--fs-28);
  font-weight: 700;
  color: var(--text-dark);
}

.pathway-card p {
  font-family: var(--mulish);
  font-size: var(--fs-16);
  line-height: 1.5;
}

.pathway-list li {
  font-family: var(--mulish);
  font-size: var(--fs-16);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.btn-pathway-outline {
  background-color: transparent;
  border: 1px solid #4A5568;
  color: var(--text-dark);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-family: var(--mulish);
}

.btn-pathway-outline:hover {
  background-color: var(--text-dark);
  border-color: var(--text-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.services-cta-banner {
  background-color: var(--primary-blue);
  padding: 100px 0;
}

.services-cta-banner .section-title {
  font-size: var(--fs-40);
}

/* Left column content */
.cta-lead-text {
  font-family: var(--mulish);
  font-size: var(--fs-16);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
}

.cta-list-label {
  font-family: var(--mulish);
  font-size: var(--fs-14);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}

.cta-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-pill {
  font-family: var(--mulish);
  font-size: var(--fs-15);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  padding: 6px 16px;
  display: inline-block;
}

.cta-footer-note {
  font-family: var(--mulish);
  font-size: var(--fs-16);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
}

.cta-btn-outline {
  font-family: var(--mulish);
  font-size: var(--fs-15);
  font-weight: 700;
  color: #ffffff;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  padding: 13px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-btn-outline:hover {
  background-color: #ffffff;
  color: var(--primary-blue);
}

/* Right column dark card */
.cta-info-card {
  background-color: #0d2240;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px;
}

.cta-info-card__desc {
  font-family: var(--mulish);
  font-size: var(--fs-16);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.cta-info-card__list-label {
  font-family: var(--mulish);
  font-size: var(--fs-16);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.cta-info-card__list li {
  font-family: var(--mulish);
  font-size: var(--fs-16);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  line-height: 1.4;
}

.cta-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.cta-info-card__btn {
  font-family: var(--mulish);
  font-size: var(--fs-14);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 12px 24px;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-block;
}

.cta-info-card__btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

/* Responsive padding */
@media (max-width: 991.98px) {
  .services-cta-banner {
    padding: 60px 0;
  }
}

@media (max-width: 575.98px) {
  .services-cta-banner {
    padding: 40px 0;
  }
}



.btn-custom-white {
  background-color: #ffffff;
  color: var(--text-dark);
  border: 1px solid #ffffff;
  font-family: var(--mulish);
  font-weight: 700;
  font-size: var(--fs-16);
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-custom-white:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-custom-white-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-family: var(--mulish);
  font-weight: 700;
  font-size: var(--fs-16);
  padding: 13px 30px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-custom-white-outline:hover {
  background-color: #ffffff;
  color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.workforce-details-card {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(230, 235, 242, 0.8) !important;
  box-shadow: 0 15px 40px rgba(13, 31, 60, 0.03);
}

.workforce-details-card ul li {
  font-family: var(--mulish);
  font-size: var(--fs-16);
  color: var(--text-dark);
  line-height: 1.5;
}

.support-includes-box {
  background-color: #f7fafc !important;
  border: 1px solid #edf2f7;
  border-radius: 12px;
}

.support-includes-box ul li {
  font-family: var(--mulish);
  font-size: var(--fs-15);
  color: var(--text-dark);
  line-height: 1.5;
}

.cta-banner-img {
  width: 100%;

  object-fit: cover;
  border-radius: 16px;
}

/* Events Page Styles */
.event-card {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(230, 235, 242, 0.9);
  box-shadow: 0 8px 30px rgba(13, 31, 60, 0.05);
  padding: 32px;
  transition: box-shadow 0.3s ease;
}

.event-card:hover {
  box-shadow: 0 16px 48px rgba(13, 31, 60, 0.10);
}

.event-card__body {
  padding-bottom: 24px;
}

.event-card__date {
  display: block;
  font-family: var(--newsreader);
  font-size: var(--fs-18);
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.event-card__title {
  font-family: var(--newsreader);
  font-size: var(--fs-32);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.event-card__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.event-card__meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mulish);
  font-size: var(--fs-16);
  font-weight: 700;
  color: var(--text-dark);
}

.event-card__meta-row img {
  flex-shrink: 0;
}

.event-card__desc {
  font-family: var(--mulish);
  font-size: var(--fs-16);
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 0;
}

.event-card__actions {
  display: flex;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(230, 235, 242, 0.9);
}

.event-card__btn-outline {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mulish);
  font-size: var(--fs-15);
  font-weight: 700;
  color: var(--text-dark);
  background-color: transparent;
  border: 1px solid rgba(13, 31, 60, 50);
  border-radius: 6px;
  padding: 12px 20px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.event-card__btn-outline:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.event-card__btn-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mulish);
  font-size: var(--fs-15);
  font-weight: 700;
  color: #ffffff;
  background-color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
  border-radius: 6px;
  padding: 12px 20px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.event-card__btn-primary:hover {
  background-color: var(--primary-blue-hover);
  border-color: var(--primary-blue-hover);
  color: #ffffff;
}

.opportunity-card {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(230, 235, 242, 0.9);
  box-shadow: 0 8px 30px rgba(13, 31, 60, 0.04);
  padding: 32px;
  transition: box-shadow 0.3s ease;
}

.opportunity-card:hover {
  box-shadow: 0 16px 48px rgba(13, 31, 60, 0.08);
}

.opportunity-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: rgba(12, 99, 182, 0.07);
  border: 1px solid rgba(12, 99, 182, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.opportunity-card-title {
  font-family: var(--newsreader);
  font-size: var(--fs-22);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.opportunity-desc {
  font-family: var(--mulish);
  font-size: var(--fs-16);
  line-height: 1.6;
  color: var(--text-muted);
}

.opportunity-list-label {
  font-family: var(--mulish);
  font-size: var(--fs-16);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.opportunity-bullet-list li {
  font-family: var(--mulish);
  font-size: var(--fs-16);
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
  align-items: center;
}

.opp-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.opportunity-footer-note {
  font-family: var(--mulish);
  font-size: var(--fs-15);
  font-style: italic;
  color: var(--text-muted);
  border-top: 1px solid rgba(230, 235, 242, 0.9);
  padding-top: 16px;
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 1.55;
}

.ongoing-programs-opportunities {
  padding: 100px 0;
}

@media (max-width: 991.98px) {
  .ongoing-programs-opportunities {
    padding: 60px 0;
  }
}

@media (max-width: 575.98px) {
  .ongoing-programs-opportunities {
    padding: 40px 0;
  }
}

.request-info-card {
  background-color: #0c2340 !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#services-hero h1 {
  font-size: var(--fs-50);
}

/* Services Page Custom Accordion Card Styling */
.workforce-edu-section {
  background-color: #f8fafd;
  border-top: 1px solid rgba(12, 99, 182, 0.05);
  border-bottom: 1px solid rgba(12, 99, 182, 0.05);
}

.ongoing-programs-section .accordion-custom,
.workforce-edu-section .accordion-custom {
  gap: 16px;
}

.ongoing-programs-section .accordion-item,
.workforce-edu-section .accordion-item {
  background-color: #ffffff;
  border: 1px solid rgba(230, 235, 242, 0.8);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(13, 31, 60, 0.015);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid rgba(230, 235, 242, 0.8);
}

.ongoing-programs-section .accordion-item[open],
.workforce-edu-section .accordion-item[open] {
  box-shadow: 0 15px 45px rgba(13, 31, 60, 0.05);
  border-color: rgba(12, 99, 182, 0.15);
  padding-bottom: 24px;
}

.ongoing-programs-section .accordion-header,
.workforce-edu-section .accordion-header {
  font-family: var(--mulish);
  font-size: var(--fs-18);
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ongoing-programs-section .accordion-icon-box,
.workforce-edu-section .accordion-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: #f0f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.ongoing-programs-section .accordion-header h4,
.workforce-edu-section .accordion-header h4 {
  font-family: var(--newsreader);
  font-size: var(--fs-20);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.ongoing-programs-section .accordion-header p,
.workforce-edu-section .accordion-header p {
  font-family: var(--mulish);
  font-size: var(--fs-14-5);
  color: var(--text-muted);
  margin-bottom: 0;
}

.ongoing-programs-section .arrow-indicator,
.workforce-edu-section .arrow-indicator {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: #4A5568;
}

.ongoing-programs-section .accordion-content,
.workforce-edu-section .accordion-content {
  border-top: 1px solid rgba(230, 235, 242, 0.8);
  margin-top: 20px;
  padding-top: 20px;
}

.ongoing-programs-section .accordion-content p,
.workforce-edu-section .accordion-content p {
  font-family: var(--mulish);
  font-size: var(--fs-15);
  line-height: 1.6;
  color: var(--text-muted);
}

/* Events Page — Upcoming Events Section */
.upcoming-events-section {
  padding: 100px 0;
  background-color: #F5F7FA;
}

@media (max-width: 991.98px) {
  .upcoming-events-section {
    padding: 60px 0;
  }
}

@media (max-width: 575.98px) {
  .upcoming-events-section {
    padding: 40px 0;
  }
}

/* Event Registration Section Styles */
.event-registration-section {
  padding: 100px 0;
}

.event-registration-section .ps-lg-4 {
  max-width: 540px;
}

.event-registration-section .lead-text {
  font-weight: 700;
  font-size: var(--fs-18);
  color: #0D1F3C;
}

.event-registration-section .small {
  font-size: var(--fs-16);
  color: #0D1F3C;
}

.registration-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 10px;
}

.registration-pill {
  font-family: var(--mulish);
  font-size: var(--fs-14);
  font-weight: 500;
  color: var(--text-dark);
  background-color: #ffffff;
  border: 1px solid rgba(13, 31, 60, 0.2);
  border-radius: 100px;
  padding: 8px 18px;
  display: inline-block;
  line-height: 1.2;
}

@media (max-width: 991.98px) {
  .event-registration-section {
    padding: 60px 0;
  }
}

@media (max-width: 575.98px) {
  .event-registration-section {
    padding: 40px 0;
  }
}

/* ==========================================================================
   Merged Custom Styles (from mystyle.css)
   ========================================================================== */

/* Contact Options Section */
.contact_options_section {
    background-color: #f8fafd;
    padding: 80px 0;
    border-top: 1px solid rgba(12, 99, 182, 0.05);
}

.contact_options_section .contact_options_section__card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 15px 40px rgba(13, 31, 60, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(13, 31, 60, 0.02);
    height: 100%;
}

.contact_options_section .contact_options_section__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(13, 31, 60, 0.06);
}

.contact_options_section .contact_options_section__icon_wrapper {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: #f0f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.contact_options_section .contact_options_section__icon {
    width: 22px;
    height: 22px;
    color: var(--primary-blue);
}

.contact_options_section .contact_options_section__title {
    font-family: var(--newsreader);
    font-size: var(--fs-35);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact_options_section .contact_options_section__description {
    font-family: var(--mulish);
    font-size: var(--fs-16);
    line-height: 1.6;
    color: var(--text-muted);
}

.contact_options_section .contact_options_section__button {
    display: inline-block;
    font-family: var(--mulish);
    font-size: var(--fs-16);
    font-weight: 700;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    background-color: transparent;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact_options_section .contact_options_section__button:hover {
    background-color: var(--text-dark);
    color: #ffffff;
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    .contact_options_section {
        padding: 60px 0;
    }
}

@media (max-width: 575.98px) {
    .contact_options_section {
        padding: 40px 0;
    }

    .contact_options_section .contact_options_section__card {
        padding: 32px 24px;
    }
}

/* Consultation Detail Section */
.consultation_detail_section {
    background-color: #ffffff;
    padding: 100px 0;
}

.consultation_detail_section .consultation_detail_section__badge {
    display: inline-block;
    font-family: var(--mulish);
    font-size: var(--fs-14);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 16px;
}

.consultation_detail_section .consultation_detail_section__title {
    font-family: var(--newsreader);
    font-size: var(--fs-40);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.25;
}

.consultation_detail_section .consultation_detail_section__description {
    font-family: var(--mulish);
    font-size: var(--fs-16);
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.consultation_detail_section .consultation_detail_section__button {
    display: inline-block;
    font-family: var(--mulish);
    font-size: var(--fs-16);
    font-weight: 700;
    color: #ffffff;
    background-color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(12, 99, 182, 0.15);
}

.consultation_detail_section .consultation_detail_section__button:hover {
    background-color: var(--primary-blue-hover);
    border-color: var(--primary-blue-hover);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(12, 99, 182, 0.25);
}

/* Card Styling */
.consultation_detail_section .consultation_detail_section__card {
    background-color: var(--text-dark);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 20px 50px rgba(13, 31, 60, 0.1);
}

.consultation_detail_section .consultation_detail_section__card_badge {
    display: inline-block;
    font-family: var(--mulish);
    font-size: var(--fs-14);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 30px;
}

.consultation_detail_section .consultation_detail_section__list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px 0;
}

.consultation_detail_section .consultation_detail_section__list_item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    font-family: var(--mulish);
    font-size: var(--fs-16);
    font-weight: 600;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.consultation_detail_section .consultation_detail_section__list_item:last-child {
    margin-bottom: 0;
}

.consultation_detail_section .consultation_detail_section__list_icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    margin-top: 2px;
}

.consultation_detail_section .consultation_detail_section__card_button {
    display: inline-block;
    font-family: var(--mulish);
    font-size: var(--fs-16);
    font-weight: 600;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: transparent;
    padding: 13px 30px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.consultation_detail_section .consultation_detail_section__card_button:hover {
    background-color: #ffffff;
    color: var(--text-dark);
    border-color: #ffffff;
}

@media (max-width: 991.98px) {
    .consultation_detail_section {
        padding: 60px 0;
    }

    .consultation_detail_section .consultation_detail_section__card {
        padding: 36px 24px;
        margin-top: 40px;
    }
}

@media (max-width: 575.98px) {
    .consultation_detail_section {
        padding: 40px 0;
    }

    .consultation_detail_section .consultation_detail_section__title {
        font-size: 27px;
    }
}

/* Contact Form & Options Section */
.contact_form_section {
    background-color: #f8fafd;
    padding: 100px 0;
    border-top: 1px solid rgba(12, 99, 182, 0.05);
}

.contact_form_section .contact_form_section__badge {
    display: inline-block;
    font-family: var(--mulish);
    font-size: var(--fs-14);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 16px;
}

.contact_form_section .contact_form_section__title {
    font-family: var(--newsreader);
    font-size: var(--fs-40);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.25;
}

.contact_form_section .contact_form_section__subtitle {
    font-family: var(--mulish);
    font-size: var(--fs-16);
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 60px auto;
}

/* Form Card */
.contact_form_section .contact_form_section__form_card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 26px 32px;
    box-shadow: 0 15px 40px rgba(13, 31, 60, 0.03);
    border: 1px solid rgba(13, 31, 60, 0.015);
}

.contact_form_section .contact_form_section__label {
    display: block;
    font-family: var(--mulish);
    font-size: var(--fs-14);
    font-weight: 600;
    color: #4A5568;
    margin-bottom: 8px;
}

.contact_form_section .contact_form_section__input,
.contact_form_section .contact_form_section__select,
.contact_form_section .contact_form_section__textarea {
    font-family: var(--mulish);
    font-size: var(--fs-14);
    color: var(--text-dark);
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 12px 16px;
    background-color: #ffffff;
    width: 100%;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact_form_section .contact_form_section__input::placeholder,
.contact_form_section .contact_form_section__textarea::placeholder {
    color: #0D1F3C33;
    opacity: 1;
}

.contact_form_section .contact_form_section__input:focus,
.contact_form_section .contact_form_section__select:focus,
.contact_form_section .contact_form_section__textarea:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(12, 99, 182, 0.1);
}

.contact_form_section .contact_form_section__textarea {
    height: 140px;
    resize: vertical;
}

.contact_form_section .contact_form_section__submit_button {
    display: inline-block;
    font-family: var(--mulish);
    font-size: var(--fs-15);
    font-weight: 700;
    color: #ffffff;
    background-color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(12, 99, 182, 0.15);
}

.contact_form_section .contact_form_section__submit_button:hover {
    background-color: var(--primary-blue-hover);
    border-color: var(--primary-blue-hover);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(12, 99, 182, 0.25);
}

/* Info Card (Right Side) */
.contact_form_section .contact_form_section__info_card {
    background-color: #ffffff;
    border: 1px solid rgba(13, 31, 60, 0.06);
    border-radius: 16px;
    padding: 26px 50px 26px 32px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(13, 31, 60, 0.02);
}

.contact_form_section .contact_form_section__icon_wrapper {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: #f0f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.contact_form_section .contact_form_section__icon {
    width: 22px;
    height: 22px;
    color: var(--primary-blue);
}

.contact_form_section .contact_form_section__info_title {
    display: inline-block;
    font-family: var(--mulish);
    font-size: var(--fs-12);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 24px;
}

.contact_form_section .contact_form_section__pills_container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.contact_form_section .contact_form_section__pill {
    font-family: var(--mulish);
    font-size: var(--fs-16);
    font-weight: 600;
    color: var(--text-dark);
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact_form_section .contact_form_section__pill:hover {
    border-color: var(--primary-blue);
    background-color: rgba(12, 99, 182, 0.03);
}

.contact_form_section .contact_form_section__pill.active {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(12, 99, 182, 0.2);
}

.contact_form_section .contact_form_section__info_text {
    font-family: var(--mulish);
    font-size: var(--fs-13-5);
    line-height: 1.6;
    color: var(--text-muted);
    border-top: 1px solid rgba(13, 31, 60, 0.08);
    padding-top: 24px;
}

@media (max-width: 991.98px) {
    .contact_form_section {
        padding: 60px 0;
    }

    .contact_form_section .contact_form_section__info_card {
        padding: 26px 40px 26px 24px;
        margin-top: 40px;
    }
}

@media (max-width: 575.98px) {
    .contact_form_section {
        padding: 40px 0;
    }

    .contact_form_section .contact_form_section__title {
        font-size: 27px;
    }

    .contact_form_section .contact_form_section__form_card {
        padding: 26px 20px;
    }

    .contact_form_section .contact_form_section__info_card {
        padding: 24px 20px;
    }
}

/* Conversation Preparation Section */
.conversation_prep_section {
    background-color: #ffffff;
    padding: 100px 0;
}

.conversation_prep_section .conversation_prep_section__badge {
    display: inline-block;
    font-family: var(--mulish);
    font-size: var(--fs-18);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 16px;
}

.conversation_prep_section .conversation_prep_section__title {
    font-family: var(--newsreader);
    font-size: var(--fs-45);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.25;
}

.conversation_prep_section .conversation_prep_section__subtitle {
    font-family: var(--mulish);
    font-size: var(--fs-18);
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.conversation_prep_section .conversation_prep_section__card {
    background-color: #ffffff;
    border: 1px solid rgba(13, 31, 60, 0.08);
    border-radius: 16px;
    padding: 48px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(13, 31, 60, 0.015);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.conversation_prep_section .conversation_prep_section__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(13, 31, 60, 0.04);
    border-color: rgba(12, 99, 182, 0.15);
}

.conversation_prep_section .conversation_prep_section__card_badge {
    display: inline-block;
    font-family: var(--newsreader);
    font-size: var(--fs-18);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.conversation_prep_section .conversation_prep_section__card_title {
    font-family: var(--newsreader);
    font-size: var(--fs-35);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.25;
}

.conversation_prep_section .conversation_prep_section__description {
    font-family: var(--mulish);
    font-size: var(--fs-16);
    line-height: 1.65;
    color: var(--text-muted);
}

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

.conversation_prep_section .conversation_prep_section__list_item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-family: var(--mulish);
    font-size: var(--fs-16);
    font-weight: 600;
    color: var(--text-dark);
}

.conversation_prep_section .conversation_prep_section__list_item:last-child {
    margin-bottom: 0;
}

.conversation_prep_section .conversation_prep_section__list_icon {
    width: 18px;
    height: 18px;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 3px;
}

.conversation_prep_section .conversation_prep_section__button {
    display: inline-block;
    font-family: var(--mulish);
    font-size: var(--fs-16);
    font-weight: 700;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    background-color: transparent;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.conversation_prep_section .conversation_prep_section__button:hover {
    background-color: var(--text-dark);
    color: #ffffff;
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    .conversation_prep_section {
        padding: 60px 0;
    }

    .conversation_prep_section .conversation_prep_section__card {
        padding: 36px 24px;
    }
}

@media (max-width: 575.98px) {
    .conversation_prep_section {
        padding: 40px 0;
    }

    .conversation_prep_section .conversation_prep_section__title {
        font-size: 27px;
    }

    .conversation_prep_section .conversation_prep_section__card_title {
        font-size: var(--fs-26);
    }
}

/* General Contact & Warning Section */
.general_contact_section {
    background-color: #F5F7FA;
    padding: 100px 0;
    border-top: 1px solid rgba(12, 99, 182, 0.05);
}

.general_contact_section .general_contact_section__info_card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 15px 40px rgba(13, 31, 60, 0.03);
    border: 1px solid rgba(13, 31, 60, 0.015);
}

.general_contact_section .general_contact_section__badge {
    display: inline-block;
    font-family: var(--newsreader);
    font-size: var(--fs-20);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.general_contact_section .general_contact_section__title {
    font-family: var(--newsreader);
    font-size: var(--fs-36);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.25;
}

.general_contact_section .general_contact_section__subtitle {
    font-family: var(--mulish);
    font-size: var(--fs-20);
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.general_contact_section .general_contact_section__detail_item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.general_contact_section .general_contact_section__detail_item:last-child {
    margin-bottom: 0;
}

.general_contact_section .general_contact_section__icon_wrapper {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #f0f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.general_contact_section .general_contact_section__icon {
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
}

.general_contact_section .general_contact_section__detail_content {
    display: flex;
    flex-direction: column;
}

.general_contact_section .general_contact_section__detail_label {
    font-family: var(--mulish);
    font-size: var(--fs-16);
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.general_contact_section .general_contact_section__detail_value {
    font-family: var(--mulish);
    font-size: var(--fs-18);
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.5;
}

/* Warning Card (Right Side) */
.general_contact_section .general_contact_section__warning_card {
    background-color: #fff5f5;
    border-left: 4px solid var(--accent-red);
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(13, 31, 60, 0.01);
}

.general_contact_section .general_contact_section__warning_icon_wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(229, 62, 62, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    margin-bottom: 16px;
}

.general_contact_section .general_contact_section__warning_icon {
    width: 18px;
    height: 18px;
    color: var(--accent-red);
}

.general_contact_section .general_contact_section__warning_badge {
    display: inline-block;
    font-family: var(--mulish);
    font-size: var(--fs-17);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 16px;
}

.general_contact_section .general_contact_section__warning_text {
    font-family: var(--mulish);
    font-size: var(--fs-18);
    line-height: 1.6;
    color: #4A5568;
    margin-bottom: 16px;
}

@media (max-width: 991.98px) {
    .general_contact_section {
        padding: 60px 0;
    }

    .general_contact_section .general_contact_section__warning_card {
        margin-top: 24px;
        height: auto;
    }
}

@media (max-width: 575.98px) {
    .general_contact_section {
        padding: 40px 0;
    }

    .general_contact_section .general_contact_section__info_card,
    .general_contact_section .general_contact_section__warning_card {
        padding: 30px 20px;
    }

    .general_contact_section .general_contact_section__title {
        font-size: 27px;
    }
}

/* What to Expect Section */
.contact_expect_section {
    background-color: #ffffff;
    padding: 100px 0;
    border-top: 1px solid rgba(12, 99, 182, 0.05);
}

.contact_expect_section .contact_expect_section__badge {
    display: inline-block;
    font-family: var(--mulish);
    font-size: var(--fs-14);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 16px;
}

.contact_expect_section .contact_expect_section__title {
    font-family: var(--newsreader);
    font-size: var(--fs-40);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.25;
}

.contact_expect_section .contact_expect_section__card {
    background-color: #ffffff;
    border: 1px solid rgba(13, 31, 60, 0.08);
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(13, 31, 60, 0.015);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact_expect_section .contact_expect_section__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(13, 31, 60, 0.04);
    border-color: rgba(12, 99, 182, 0.15);
}

.contact_expect_section .contact_expect_section__icon_wrapper {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: #f0f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

.contact_expect_section .contact_expect_section__icon {
    width: 22px;
    height: 22px;
    color: var(--primary-blue);
}

.contact_expect_section .contact_expect_section__card_title {
    font-family: var(--newsreader);
    font-size: var(--fs-25);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.contact_expect_section .contact_expect_section__card_text {
    font-family: var(--mulish);
    font-size: var(--fs-16);
    line-height: 1.6;
    color: var(--text-muted);
}

@media (max-width: 991.98px) {
    .contact_expect_section {
        padding: 60px 0;
    }

    .contact_expect_section .contact_expect_section__card {
        padding: 30px 24px;
    }

    .contact_expect_section .contact_expect_section__icon_wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    .contact_expect_section {
        padding: 40px 0;
    }

    .contact_expect_section .contact_expect_section__icon_wrapper {
        margin-bottom: 20px;
    }

    .contact_expect_section .contact_expect_section__title {
        font-size: 27px;
        margin-bottom: 15px;
    }
}

/* Page Hero Mobile Override */
@media (max-width: 575.98px) {
    #about-hero .about-hero-title {
        font-size: 38px !important;
    }
}

/* Finalized CTA Section */
.finalized_cta_section {
    background-color: #f8fafd;
    padding: 80px 0;
    border-top: 1px solid rgba(12, 99, 182, 0.05);
    border-bottom: 1px solid rgba(12, 99, 182, 0.05);
}

.finalized_cta_section .finalized_cta_section__title {
    font-family: var(--newsreader);
    font-size: var(--fs-36);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 0;
}

.finalized_cta_section .finalized_cta_section__text {
    font-family: var(--mulish);
    font-size: var(--fs-16);
    line-height: 1.65;
    color: var(--text-muted);
    font-weight: 400;
}

.finalized_cta_section .finalized_cta_section__btn_primary {
    display: inline-block;
    font-family: var(--mulish);
    font-size: var(--fs-15);
    font-weight: 700;
    color: #ffffff;
    background-color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.finalized_cta_section .finalized_cta_section__btn_primary:hover {
    background-color: var(--primary-blue-hover);
    border-color: var(--primary-blue-hover);
    color: #ffffff;
    transform: translateY(-1px);
}

.finalized_cta_section .finalized_cta_section__btn_secondary {
    display: inline-block;
    font-family: var(--mulish);
    font-size: var(--fs-15);
    font-weight: 700;
    color: var(--primary-blue);
    background-color: transparent;
    border: 1px solid var(--primary-blue);
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.finalized_cta_section .finalized_cta_section__btn_secondary:hover {
    background-color: rgba(12, 99, 182, 0.04);
    color: var(--primary-blue);
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    .finalized_cta_section {
        padding: 60px 0;
    }
}

@media (max-width: 575.98px) {
    .finalized_cta_section {
        padding: 40px 0;
    }

    .finalized_cta_section .finalized_cta_section__title {
        font-size: 27px;
    }
}

/* Events CTA Section Overrides */
.badge-tag-white {
    display: inline-block;
    font-family: var(--mulish);
    font-size: var(--fs-16);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 12px;
}

#request-event-section .cta-check-icon {
    background-color: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
}

/* Custom Single Event & Events Page Utilities */
.single-event-hero {
    background-color: #f8fafd;
    border-bottom: 1px solid rgba(12, 99, 182, 0.08);
}

.single-event-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.single-event-featured-image {
    max-height: 450px;
}

.single-event-entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.single-event-sticky-sidebar {
    top: 100px;
}

.single-event-card {
    background-color: #ffffff;
}

.single-event-card-title {
    font-family: var(--mulish);
}

.single-event-deadline-text {
    font-size: 0.95rem;
}

.event-card-date-badge {
    font-size: 0.9rem;
}

.event-card-heading {
    font-family: var(--newsreader);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.event-card-description {
    line-height: 1.6;
}

.opportunity-card-icon-box {
    width: 48px;
    height: 48px;
}

.opportunity-card-heading {
    font-family: var(--mulish);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
}

.opportunity-card-description {
    font-size: 0.95rem;
    line-height: 1.6;
}

.opportunity-card-bullets-label {
    font-size: 0.9rem;
}

.opportunity-card-bullet-item {
    font-size: 0.95rem;
}

.opportunity-card-bullet-icon {
    width: 6px;
    height: 6px;
}

.opportunity-card-footer-note {
    line-height: 1.5;
}

.request-event-section-bg {
    background-color: var(--text-dark);
    padding: 5rem 0;
}

.cta-info-card-description {
    line-height: 1.6;
}

.cta-info-card-bullet-icon {
    width: 6px;
    height: 6px;
}

.registration-lead-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

.events-finalized-cta-title {
    font-family: var(--newsreader);
    font-size: 2.2rem;
    color: var(--text-dark);
}

.events-finalized-cta-text {
    line-height: 1.6;
}

/* Services & Contact Extra Utility Classes */
.services-accordion-subhead {
    font-family: var(--mulish);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.services-list-item-text {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
}

.services-accordion-callout-box {
    background-color: #f0f7ff;
    border: 1px solid rgba(12, 99, 182, 0.08);
    font-size: 15px;
    line-height: 1.5;
}

.services-workforce-desc-text {
    line-height: 1.6;
}

.services-workforce-subhead {
    font-family: var(--mulish);
}

.services-workforce-divider {
    border-color: rgba(230, 235, 242, 0.8);
}

.services-workforce-footer-note {
    font-size: 15px;
}

.contact-options-card-bg {
    background-color: #ffffff;
}

.contact-options-icon-box {
    width: 48px;
    height: 48px;
}

.contact-options-card-title {
    font-family: var(--mulish);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-options-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-consult-title {
    font-family: var(--newsreader);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-consult-desc {
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-consult-card-badge {
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.contact-consult-list-item {
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form-heading {
    font-family: var(--newsreader);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-form-subheading {
    line-height: 1.6;
}

.contact-info-option-title {
    font-size: 1.15rem;
}

.contact-info-footer-note {
    line-height: 1.5;
}