@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


:root {

  /* Colors */

  --theme-color: #000;
  --theme-color-second: #23408f;

  --theme-color-three: #c9a24a;

  /* Fonts */

  --heading-font: "Lato", sans-serif;
  --paragraph-font: "Inter", sans-serif;
  --span-font: "Inter", sans-serif;


  /* Shadows */

  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);
  --theme-color: #000000;
  --theme-color-second: #23408f;
  --theme-color-three: #c9a24a;
  --heading-font: "Lato", sans-serif;
  --paragraph-font: "Inter", sans-serif;
  --span-font: "Inter", sans-serif;
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);

  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);

  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;

}

body {
  margin: 0;
  padding: 0;
  outline: none;
  font-size: 16px;
  color: #1e1e1e;
  background-color: #fff;
  overflow-x: hidden;
  font-family: var(--paragraph-font);
}

/* Option 1: Hide scrollbar but allow scrolling */
body {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

body::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, and Opera */
}

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

a {
  color: #0055f1;
  text-decoration: none;
  transition: color 0.3s ease;

}

a:hover {
  text-decoration: none;
  transition: color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 25px;
  font-family: var(--heading-font);
  font-weight: 700;
}

h1 {
  font-size: 50px;

}

h2 {
  font-size: 45px;
}

h3 {
  font-size: 30px;
}

.span-font {
  font-family: var(--span-font);
}

p {
  margin: 0;
  line-height: 27px;
  margin-bottom: 15px;
  font-size: 16px;
}

ul li {
  margin-bottom: 0px;
}

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



ul {
  list-style: none;
  padding: 0;
}




.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}



.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 0;
  text-align: center;
  border: 2px solid var(--theme-color-second);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 0;
  opacity: 1;
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
  z-index: 999;
}

.m-backtotop>div.text {
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 0px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Progress bar styles */
.m-backtotop .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme-color-second);
  transition: height 0.2s ease-in-out;
}

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

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}


/* ---------------------- */


/* ---------------------- */
.small {
  display: none;
}


a.navbar-brand img {
  width: 96px;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.hd_info {
  display: flex;
  align-items: center;
  gap: 10px;

  flex-wrap: wrap;
}

a.comon-btn {
  background: var(--theme-color-second);
  color: #fff;
  display: inline-block;
  font-size: 13px;
  padding: 12px 12px;
  border-radius: 500px;
  width: auto;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
}

a.btn-2 {
  background-color: var(--theme-color-three);
  color: #000;
}

a.comon-btn:hover {
  background: var(--theme-color);
  color: #fff;
}

a.btn-white {
  background: #fff;
  color: #1e1e1e;
}
/* 
.header_menu li a {
  color: #000;
  font-size: 13px;
  text-transform: uppercase;
  padding: 26px 15px;
  display: inline-block;
  font-weight: 500;
} */

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: var(--theme-color-second);
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 200px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}


.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999;
}

/* Headings */
.main-sec h2,
.main-sec .comment-reply-title {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Comments Section Container */
.main-sec #comments.comments-area {
  max-width: var(--default-max-width, 800px);
  margin: 0 auto;
  padding: 1.5rem;
  box-shadow: var(--shadow-base);
  border-radius: 8px;
  background-color: #fff;
}

/* Notes & Labels */
.main-sec .comment-notes,
.main-sec label {
  font-family: var(--span-font);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

.main-sec .required {
  color: var(--theme-color-second);
}

/* Form Fields Layout */
.main-sec .comment-form p {
  margin-bottom: 1.25rem;
}

.main-sec .comment-form input[type="text"],
.main-sec .comment-form input[type="email"],
.main-sec .comment-form input[type="url"],
.main-sec .comment-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: var(--paragraph-font);
  font-size: 1rem;
  box-shadow: var(--shadow-small);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.main-sec .comment-form input:focus,
.main-sec .comment-form textarea:focus {
  outline: none;
  border-color: var(--theme-color-second);
  box-shadow: var(--shadow-base);
}

/* Cookies Consent Checkbox */
.main-sec .comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.main-sec .comment-form-cookies-consent label {
  margin-bottom: 0;
}

/* Submit Button */
.main-sec input[type="submit"].submit {
  background-color: var(--theme-color);
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: var(--shadow-small);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.main-sec input[type="submit"].submit:hover {
  background-color: var(--theme-color-second);
  box-shadow: var(--shadow-large);
}

.main-sec input[type="checkbox"] {
  width: auto;
}

#main_header .navbar {
  background-color: #ffffffde;
  border-radius: 600px;
  padding: 2px 28px;
  border: 2px solid #dbdbdb;
}

.banner_sec {
  background: #7E7F84;
  background: linear-gradient(180deg, rgba(126, 127, 132, 1) 33%, rgba(210, 211, 215, 1) 72%);

  position: relative;

  overflow: visible;
}

.banner_sec .new-row {
  position: sticky;
  top: 0;
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Center container */
.banner_sec .heading-img-box {
  position: relative;
  width: 100%;
  margin-top: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Large background text styling */
.banner_sec .text-large {
  position: absolute;
  font-size: clamp(5rem, 18vw, 22rem);
  font-weight: 900;
  color: #ffffff;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 1;
  will-change: transform;
  user-select: none;
  transform: translateY(0%);

  /* Adds ease-out smoothing to slow down jittery scrolling */
  transition: transform 12s ease-out;
}

/* Centered Product Image overlaid above text */
.banner_sec .heading-img-box img {
  position: relative;
  z-index: 2;
  max-height: 60vh;
  width: 50%;

  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.banner_sec h1 {
  font-weight: 600;
}

.home_sec_2 {
  position: relative;
  padding-top: 150px;
}

.home_sec_2 .container {
  position: relative;
  z-index: 1;
}

.home_sec_2 .img-hand {
  width: 24%;
  position: absolute;
  top: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
  z-index: 2;
}

.home_sec_2 h2 {
  font-size: 35px;
  font-weight: 800;
  letter-spacing: 0px;
  color: var(--theme-color-three);
}

.home_sec_2 h3 {
  font-weight: 700;
}



.home_sec_2 .fall-img {

  transform: translateY(-120px);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s ease-out;
  will-change: transform, opacity;
}

.home_sec_2 .fall-img.is-falling {
  transform: translateY(0);
  opacity: 1;
}

/* Ensure smooth transitions on interactive elements */
.home_sec_3 .product-box {
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.home_sec_3 .product-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home_sec_3 .product-box .over-lay {
  position: absolute;
  display: flex;
  justify-content: space-between;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  align-items: end;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 60%);
  transition: background 0.4s ease;
}

.home_sec_3 .product-box .over-lay h3 {
  font-size: 25px;
}

.home_sec_3 .product-box .over-lay i {
  font-size: 25px;
  transform: rotate(-45deg);
  transition: transform 0.4s ease;
}

/* Hover Effects */
.home_sec_3 .product-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.home_sec_3 .product-box:hover img {
  transform: scale(1.08);
  /* Smooth image zoom */
}

.home_sec_3 .product-box:hover .over-lay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.home_sec_3 .product-box:hover .over-lay i {
  transform: rotate(0deg);
  /* Rotates arrow to point straight right */
}

.home_sec_4 {
  position: relative;
}

.home_sec_4 .container {
  position: relative;
  z-index: 1;
}

.home_sec_4 .heading h2 {
  font-size: 60px;
}


.home_sec_4 .heading ul .head-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.home_sec_4 .heading ul .head-box h3 {
  margin-bottom: 0;
  font-size: 19px;
}

.home_sec_4 .heading ul .head-box i {
  color: var(--theme-color-three);
}

.home_sec_4 .img-box {
  position: absolute;
  width: 22%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.img-fluid {
  width: 100%;
}

.home_sec_5 h2 {
  text-transform: uppercase;
  color: var(--theme-color-three);
  margin-bottom: 10px;
}

.home_sec_5 .list-item li {
  display: flex;
  align-items: start;
  color: #666;
  margin-bottom: 10px;
  gap: 5px;
}

.home_sec_5 .list-item li i {
  color: var(--theme-color-three);

}

.home_sec_6 .home_sec_6_card {
  background: #ffffff;
  border: 1px solid #dddddd;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.home_sec_6 .home_sec_6_card:hover {
  box-shadow: var(--shadow-base);
  border-color: transparent;
}

.home_sec_6 .home_sec_6_icon {
  font-size: 32px;
  color: var(--theme-color-three);
  margin-bottom: 14px;
  line-height: 1;
}

.home_sec_6 .home_sec_6_title {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--theme-color-three);
  margin-bottom: 16px;
}

.home_sec_6 .home_sec_6_text {
  font-family: var(--paragraph-font);
  font-size: 15px;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 30px;
  flex-grow: 1;
}

.home_sec_6 .home_sec_6_link {
  font-family: var(--span-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--theme-color-three);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  transition: gap 0.3s ease;
}

.home_sec_6 .home_sec_6_link:hover {
  color: var(--theme-color-three);
  gap: 12px;
}


.home_sec_7 h2 {
  text-transform: uppercase;
}

.home_sec_7 h2 span {
  font-size: 110px;
}

.footer {
  padding-top: 100px;
}

.footer .ft-heading p {
  font-size: 14px;
}

.footer .ft-heading h4 {
  color: var(--theme-color-second);
  font-size: 18px;
  margin-bottom: 15px;
}

.footer .ft-heading .ft-list li a {
  color: #333333;
  font-weight: 600;
  font-size: 14px;
}

.footer .ft-heading .ft-list li {
  margin-bottom: 10px;
}

.footer .copy-list {
  font-size: 14px;
  display: inline-flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer .copy-list li a {
  color: #1e1e1e;
  font-weight: 500;
}

ul.dropdown-menu.fade-up li a {

  font-size: 11px;

}

.home_sec_2 p span {
  color: var(--theme-color-second);
}


.home_new_sec_1 .feature-item {
  position: relative;
  text-align: center;
  padding: 0 15px;
  height: 100%;
}



/* Icon Circle Container */
.home_new_sec_1 .icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border: 2px solid var(--theme-color-second);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  box-shadow: var(--shadow-small);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home_new_sec_1 .feature-item:hover .icon-wrapper {
  transform: translateY(-5px);
  box-shadow: var(--shadow-base);
}

/* Icon styling */
.home_new_sec_1 .icon-wrapper i {
  font-size: 40px;
  color: var(--theme-color-three);
  position: relative;
}

/* Custom accent overlay for two-tone icons */
.home_new_sec_1 .icon-wrapper .accent-icon {
  color: var(--theme-color-three);
}

/* Typography */
.home_new_sec_1 .feature-title {
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 900;
  color: var(--theme-color-second);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.home_new_sec_1 .feature-desc {
  font-family: var(--paragraph-font);
  font-size: 14px;
  font-weight: 400;
  color: #555555;
  margin: 0;
  line-height: 1.4;
}

.home_new_sec_1 .feature-desc span {
  font-family: var(--span-font);
}

.home_new_gallery_sec .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-base);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home_new_gallery_sec .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.home_new_gallery_sec .gallery-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.home_new_gallery_sec .gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.home_new_gallery_sec .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(35, 64, 143, 0.7);
  /* Custom rgba based on --theme-color-second */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home_new_gallery_sec .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.home_new_gallery_sec .gallery-overlay i {
  font-size: 32px;
  color: #ffffff;
  background-color: var(--theme-color-three);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-small);
  transition: transform 0.3s ease;
}

.home_new_gallery_sec .gallery-item:hover .gallery-overlay i {
  transform: scale(1.1);
}


.executive_overview {
  background-color: #f8f9fa;
}

.executive_overview h1,
.executive_overview h2,
.executive_overview h3,
.executive_overview h4,
.executive_overview h5,
.executive_overview h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
}

.executive_overview .section-eyebrow {
  font-family: var(--heading-font);
  color: var(--theme-color-three);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}

.executive_overview .btn-theme-primary {
  background-color: var(--theme-color-second);
  color: #ffffff;
  border: 1px solid var(--theme-color-second);
  font-family: var(--span-font);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
}

.executive_overview .btn-theme-primary:hover {
  background-color: #1a3273;
  color: #ffffff;
  box-shadow: var(--shadow-base);
}

.executive_overview .btn-theme-secondary {
  background-color: var(--theme-color-three);
  color: #ffffff;
  border: 1px solid var(--theme-color-three);
  font-family: var(--span-font);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
}

.executive_overview .btn-theme-secondary:hover {
  background-color: #b5903b;
  color: #ffffff;
  box-shadow: var(--shadow-base);
}


.executive_overview_sec2 {
  --theme-color-second: #23408f;
  --paragraph-font: "Inter", sans-serif;
  --heading-font: "Lato", sans-serif;

  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-family: var(--paragraph-font);
}

.executive_overview_sec2 h3 {
  font-family: var(--heading-font);
  color: var(--theme-color-second);
  font-weight: 700;
  margin-bottom: 0;
}

.executive_overview_sec2 .stat-label {
  color: #6c757d;
  font-size: 0.875em;
  display: block;
}


.executive_overview_sec3 {
  --theme-color: #000000;
  --theme-color-three: #c9a24a;
  --heading-font: "Lato", sans-serif;
  --paragraph-font: "Inter", sans-serif;

  background-color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.executive_overview_sec3 h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
}

.executive_overview_sec3 .section-eyebrow {
  font-family: var(--heading-font);
  color: var(--theme-color-three);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}



.executive_overview_sec4 {
  --theme-color: #000000;
  --theme-color-second: #23408f;
  --theme-color-three: #c9a24a;
  --heading-font: "Lato", sans-serif;
  --paragraph-font: "Inter", sans-serif;
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);

  background-color: #f8f9fa;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.executive_overview_sec4 h2,
.executive_overview_sec4 h4 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
}

.executive_overview_sec4 h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
  font-size: 2.25rem;
}

.executive_overview_sec4 h3 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
  font-size: 18px;
}

.executive_overview_sec4 .section-eyebrow {
  font-family: var(--heading-font);
  color: var(--theme-color-three);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}


.executive_overview_sec4 .system-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 30px;
  height: 100%;
  box-shadow: var(--shadow-small);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.executive_overview_sec4 .system-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
}

.executive_overview_sec4 .icon-box {
  width: 50px;
  height: 50px;
  background-color: #f0f4ff;
  color: var(--theme-color-second);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

p.small,
span.small,
h1.small,
h2.small,
h3.small,
h4.small,
h5.small,
h6.small {
  display: block;
}


.executive_overview_sec5 {
  --theme-color: #000000;
  --theme-color-second: #23408f;
  --theme-color-three: #c9a24a;
  --heading-font: "Lato", sans-serif;
  --paragraph-font: "Inter", sans-serif;
  --span-font: "Inter", sans-serif;
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);

  background-color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.executive_overview_sec5 h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
}

.executive_overview_sec5 .section-eyebrow {
  font-family: var(--heading-font);
  color: var(--theme-color-three);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}

.executive_overview_sec5 .feature-banner {
  background-color: #f7f6f2;
  border-radius: 12px;
  padding: 50px 40px;
}

.executive_overview_sec5 .text-gold {
  color: var(--theme-color-three);
}

.executive_overview_sec5 .btn-theme-primary {
  background-color: var(--theme-color-second);
  color: #ffffff;
  border: 1px solid var(--theme-color-second);
  font-family: var(--span-font);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
}

.executive_overview_sec5 .btn-theme-primary:hover {
  background-color: #1a3273;
  color: #ffffff;
  box-shadow: var(--shadow-base);
}

a.btn-fit {
  width: fit-content;
}


.executive_overview_sec6 {
  --theme-color: #000000;
  --theme-color-second: #23408f;
  --heading-font: "Lato", sans-serif;
  --paragraph-font: "Inter", sans-serif;
  --span-font: "Inter", sans-serif;
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);

  background-color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.executive_overview_sec6 h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
}

.executive_overview_sec6 .cta-box {
  background-color: #e5dfd3;
  border-radius: 8px;
  padding: 60px 40px;
}

.executive_overview_sec6 .btn-theme-primary {
  background-color: var(--theme-color-second);
  color: #ffffff;
  border: 1px solid var(--theme-color-second);
  font-family: var(--span-font);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
}

.executive_overview_sec6 .btn-theme-primary:hover {
  background-color: #1a3273;
  color: #ffffff;
  box-shadow: var(--shadow-base);
}




.the_system_sec_1 {
  --theme-color: #000000;
  --theme-color-second: #23408f;
  --theme-color-three: #c9a24a;
  --heading-font: "Lato", sans-serif;
  --paragraph-font: "Inter", sans-serif;
  --span-font: "Inter", sans-serif;
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);

  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);
  padding: 80px 0 60px 0;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

.the_system_sec_1 h1,
.the_system_sec_1 h2,
.the_system_sec_1 h3,
.the_system_sec_1 h4,
.the_system_sec_1 h5,
.the_system_sec_1 h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
}

.the_system_sec_1 .fw-semibold {
  font-weight: 500 !important;
}

.the_system_sec_1 .section-eyebrow {
  font-family: var(--heading-font);
  color: var(--theme-color-three);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}


/* Isolated styles scoped specifically to .the_system_sec_2 */
.the_system_sec_2 {
  --theme-color: #000000;
  --theme-color-second: #23408f;
  --theme-color-three: #c9a24a;
  --heading-font: "Lato", sans-serif;
  --paragraph-font: "Inter", sans-serif;
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);

  background-color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

.the_system_sec_2 h2,
.the_system_sec_2 h3 {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.the_system_sec_2 .fw-semibold {
  font-weight: 600 !important;
}

.the_system_sec_2 .section-eyebrow {
  font-family: var(--heading-font);
  color: var(--theme-color-three);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}


.the_system_sec_2 .component-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 35px 30px;
  height: 100%;
  box-shadow: var(--shadow-small);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.the_system_sec_2 .component-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
}

.the_system_sec_2 .icon-box-lg {
  width: 60px;
  height: 60px;
  background-color: #f0f4ff;
  color: var(--theme-color-second);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
}

.the_system_sec_2 .text-gold {
  color: var(--theme-color-three);
}


/* Isolated styles scoped specifically to .the_system_sec_3 */
.the_system_sec_3 {
  --theme-color: #000000;
  --theme-color-second: #23408f;
  --theme-color-three: #c9a24a;
  --heading-font: "Lato", sans-serif;
  --paragraph-font: "Inter", sans-serif;
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);

  background-color: #f8f9fa;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

.the_system_sec_3 h2,
.the_system_sec_3 h3 {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.the_system_sec_3 h3 {
  font-size: 18px;
}

.the_system_sec_3 .fw-semibold {
  font-weight: 600 !important;
}

.the_system_sec_3 .section-eyebrow {
  font-family: var(--heading-font);
  color: var(--theme-color-three);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}



/* Attachment Card Styling */
.the_system_sec_3 .attachment-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.the_system_sec_3 .attachment-card:hover {
  box-shadow: var(--shadow-base);
  border-color: var(--theme-color-second);
}

.the_system_sec_3 .attachment-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: #f0f4ff;
  color: var(--theme-color-second);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 16px;
}


.the_system_sec_4 {
  --theme-color: #000000;
  --theme-color-second: #23408f;
  --theme-color-three: #c9a24a;
  --heading-font: "Lato", sans-serif;
  --paragraph-font: "Inter", sans-serif;
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);

  background-color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

.the_system_sec_4 h2,
.the_system_sec_4 th {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.the_system_sec_4 .fw-semibold {
  font-weight: 600 !important;
}

.the_system_sec_4 .section-eyebrow {
  font-family: var(--heading-font);
  color: var(--theme-color-three);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* Button Styling */

/* Table Customizations */
.the_system_sec_4 .table {
  border-color: #e2e8f0;
}

.the_system_sec_4 .table thead th {
  background-color: #f8f9fa;
  color: var(--theme-color);
  font-weight: 600;
  border-bottom: 2px solid #e2e8f0;
  padding: 14px 16px;
}

.the_system_sec_4 .th-col-metric {
  width: 30%;
}

.the_system_sec_4 .th-col-value {
  width: 45%;
}

.the_system_sec_4 .th-col-status {
  width: 25%;
}

.the_system_sec_4 .table td {
  padding: 14px 16px;
  color: #4a5568;
}

.the_system_sec_4 .table td.fw-semibold {
  color: var(--theme-color);
}

.the_system_sec_4 .badge {
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.825rem;
}


.the_system_sec_5 {
  --theme-color: #000000;
  --theme-color-second: #23408f;
  --theme-color-three: #c9a24a;
  --heading-font: "Lato", sans-serif;
  --paragraph-font: "Inter", sans-serif;
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.1);

  background-color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

.the_system_sec_5 h2 {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.the_system_sec_5 .fw-semibold {
  font-weight: 600 !important;
}

/* CTA Container Box Styling */
.the_system_sec_5 .cta-box {
  background-color: #e5dfd3;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 48px 40px;
  box-shadow: var(--shadow-large);
}

.the_system_sec_5 .lead {
  font-size: 1.125rem;
  line-height: 1.6;
}


.operational_benifit_sec1 {
  --theme-color: #000000;
  --theme-color-second: #23408f;
  --theme-color-three: #c9a24a;
  --heading-font: "Lato", sans-serif;
  --paragraph-font: "Inter", sans-serif;

  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);
  padding: 80px 0 60px 0;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

.operational_benifit_sec1 h1 {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.operational_benifit_sec1 .fw-semibold {
  font-weight: 600 !important;
}

.operational_benifit_sec1 .section-eyebrow {
  font-family: var(--heading-font);
  color: var(--theme-color-three);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}

.operational_benifit_sec1 .lead {
  font-size: 1.125rem;
  line-height: 1.6;
}

.operational_benifit_sec2 {
  --theme-color: #000000;
  --theme-color-second: #23408f;
  --theme-color-three: #c9a24a;
  --heading-font: "Lato", sans-serif;
  --paragraph-font: "Inter", sans-serif;
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);

  background-color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

.operational_benifit_sec2 h2,
.operational_benifit_sec2 h3 {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.operational_benifit_sec2 h3 {
  font-size: 20px;
}

.operational_benifit_sec2 .fw-semibold {
  font-weight: 600 !important;
}

.operational_benifit_sec2 .section-eyebrow {
  font-family: var(--heading-font);
  color: var(--theme-color-three);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}



/* Benefit Card Styling */
.operational_benifit_sec2 .benefit-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 35px 30px;
  height: 100%;
  box-shadow: var(--shadow-small);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.operational_benifit_sec2 .benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
}

.operational_benifit_sec2 .benefit-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: #f0f4ff;
  color: var(--theme-color-second);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.operational_benifit_sec3 {
  --theme-color: #000000;
  --theme-color-second: #23408f;
  --theme-color-three: #c9a24a;
  --heading-font: "Lato", sans-serif;
  --paragraph-font: "Inter", sans-serif;
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);

  /* Very light gold tinted background */
  background-color: #fcfaf4;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

.operational_benifit_sec3 h2,
.operational_benifit_sec3 h3 {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.operational_benifit_sec3 h3 {
  font-size: 18px;
}

.operational_benifit_sec3 .fw-semibold {
  font-weight: 600 !important;
}

.operational_benifit_sec3 .section-eyebrow {
  font-family: var(--heading-font);
  color: var(--theme-color-three);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}


/* Sector Card Styling */
.operational_benifit_sec3 .sector-card {
  background-color: #ffffff;
  border: 1px solid #f0e6d2;
  border-radius: 8px;
  padding: 30px 24px;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.operational_benifit_sec3 .sector-card:hover {
  box-shadow: var(--shadow-base);
  border-color: var(--theme-color-second);
}

.operational_benifit_sec3 .sector-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: #f0f4ff;
  color: var(--theme-color-second);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 16px;
}

.operational_benifit_sec4 {
  --theme-color: #000000;
  --theme-color-second: #23408f;
  --theme-color-three: #c9a24a;
  --heading-font: "Lato", sans-serif;
  --paragraph-font: "Inter", sans-serif;

  background-color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

.operational_benifit_sec4 h2 {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.operational_benifit_sec4 .fw-semibold {
  font-weight: 600 !important;
}

.operational_benifit_sec4 .section-eyebrow {
  font-family: var(--heading-font);
  color: var(--theme-color-three);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* Custom table styling scoped to section */
.operational_benifit_sec4 .table {
  border-color: #e2e8f0;
}

.operational_benifit_sec4 .table thead th {
  background-color: #f8fafc;
  color: var(--theme-color-second);
  font-family: var(--heading-font);
  border-bottom: 2px solid #cbd5e1;
  padding: 1rem 1.25rem;
}

.operational_benifit_sec4 .table tbody td {
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
}

.operational_benifit_sec4 .table-hover tbody tr:hover {
  background-color: #f0f4ff;
}


.operational_benifit_sec5 {
  --theme-color: #000000;
  --theme-color-second: #23408f;
  --theme-color-three: #c9a24a;
  --heading-font: "Lato", sans-serif;
  --paragraph-font: "Inter", sans-serif;
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);

  background-color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

.operational_benifit_sec5 h2 {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.operational_benifit_sec5 .fw-semibold {
  font-weight: 600 !important;
}

/* Scoped Call-to-Action Box Styling */
.operational_benifit_sec5 .cta-box {
  background-color: #fcfaf4;
  border: 1px solid #f0e6d2;
  border-radius: 12px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-base);
}

.operational_benifit_sec5 .lead {
  font-size: 1.125rem;
  line-height: 1.6;
}


/* Isolated styles scoped specifically to .solution_sec_4 */
.solution_sec_4 {
  --theme-color: #000000;
  --theme-color-second: #23408f;
  --theme-color-three: #c9a24a;
  --heading-font: "Lato", sans-serif;
  --paragraph-font: "Inter", sans-serif;
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);

  background-color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

.solution_sec_4 h2,
.solution_sec_4 h3,
.solution_sec_4 h4 {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.solution_sec_4 .fw-semibold {
  font-weight: 600 !important;
}

.solution_sec_4 .section-eyebrow {
  font-family: var(--heading-font);
  color: var(--theme-color-three);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* Sector Block Layout & Styling */
.solution_sec_4 .sector-block {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-small);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.solution_sec_4 .sector-block:last-child {
  margin-bottom: 0;
}

.solution_sec_4 .sector-block:hover {
  box-shadow: var(--shadow-base);
  border-color: #cbd5e1;
}

.solution_sec_4 .sector-img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 8px;
}

/* Feature List Styling */
.solution_sec_4 .sector-features {
  padding-left: 0;
  margin-bottom: 0;
}

.solution_sec_4 .sector-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 0.75rem;
}

.solution_sec_4 .sector-features li:last-child {
  margin-bottom: 0;
}

.solution_sec_4 .sector-features i {
  color: var(--theme-color-second);
  font-size: 1.1rem;
  line-height: 1.4;
  flex-shrink: 0;
}

/* Isolated styles scoped specifically to .deployment_matrix_sec */
.deployment_matrix_sec {
  --theme-color: #000000;
  --theme-color-second: #23408f;
  --theme-color-three: #c9a24a;
  --heading-font: "Lato", sans-serif;
  --paragraph-font: "Inter", sans-serif;
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);

  background-color: #f8fafc;
  padding-top: 4rem;
  padding-bottom: 4rem;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

.deployment_matrix_sec h2,
.deployment_matrix_sec th {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.deployment_matrix_sec .fw-semibold {
  font-weight: 600 !important;
}

.deployment_matrix_sec .text-gold {
  color: var(--theme-color-three) !important;
}

.deployment_matrix_sec .section-eyebrow {
  font-family: var(--heading-font);
  color: var(--theme-color-three);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}



/* Table Customizations */
.deployment_matrix_sec .matrix-table-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: var(--shadow-small);
  margin-bottom: 3rem;
}

.deployment_matrix_sec table {
  margin-bottom: 0;
}

.deployment_matrix_sec thead th {
  background-color: #f1f5f9;
  color: var(--theme-color);
  border-bottom: 2px solid #e2e8f0;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
}

.deployment_matrix_sec tbody td {
  padding: 1rem 1.25rem;
  color: #475569;
  font-size: 0.95rem;
  border-color: #f1f5f9;
}

.deployment_matrix_sec tbody tr:hover {
  background-color: #f8fafc;
}

/* CTA Container Customizations */
.deployment_matrix_sec .cta-box {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 5px solid var(--theme-color-three);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-base);
}

.deployment_matrix_sec .lead {
  font-size: 1.125rem;
  line-height: 1.6;
}



/* Base Styles Scoped to .validate_sec_1 */
.validate_sec_1 {
  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.validate_sec_1 h1,
.validate_sec_1 h2,
.validate_sec_1 h3,
.validate_sec_1 h4,
.validate_sec_1 h5,
.validate_sec_1 h6 {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.validate_sec_1 span {
  font-family: var(--span-font);
}

.validate_sec_1 .section-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--theme-color-second);
  margin-bottom: 0.5rem;
}

.validate_sec_1 .credential-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-base);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid var(--theme-color-second);
}

.validate_sec_1 .credential-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.validate_sec_1 .credential-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background-color: rgba(35, 64, 143, 0.1);
  color: var(--theme-color-second);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}


/* Base Styles Scoped to .validate_sec_2 */
.validate_sec_2 {
  background-color: #f4f4f4;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.validate_sec_2 h1,
.validate_sec_2 h2,
.validate_sec_2 h3,
.validate_sec_2 h4,
.validate_sec_2 h5,
.validate_sec_2 h6 {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.validate_sec_2 span {
  font-family: var(--span-font);
}

.validate_sec_2 .section-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--theme-color-second);
  margin-bottom: 0.5rem;
}


.validate_sec_2 .text-gold {
  color: var(--theme-color-three) !important;
}

.validate_sec_2 .table-responsive {
  box-shadow: var(--shadow-base);
  border-radius: 10px;
  overflow: hidden;
}

.validate_sec_2 .table thead th {
  background-color: #f8f9fa;
  color: var(--theme-color);
  font-family: var(--heading-font);
  border-bottom: 2px solid #dee2e6;
}

.validate_sec_2 .table-hover tbody tr:hover {
  background-color: rgba(35, 64, 143, 0.03);
}


.validate_sec_3 {

  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.validate_sec_3 h1,
.validate_sec_3 h2,
.validate_sec_3 h3,
.validate_sec_3 h4,
.validate_sec_3 h5,
.validate_sec_3 h6 {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.validate_sec_3 span {
  font-family: var(--span-font);
}

.validate_sec_3 .cta-box {
  background: #f3f6f9;
  padding: 3rem 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-large);
  border-left: 4px solid var(--theme-color-second);
}


.deployment_sec_2 h1,
.deployment_sec_2 h2,
.deployment_sec_2 h3,
.deployment_sec_2 h4,
.deployment_sec_2 h5,
.deployment_sec_2 h6 {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.deployment_sec_2 span {
  font-family: var(--span-font);
}

.deployment_sec_2 .section-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--theme-color-second);
  margin-bottom: 0.5rem;
}



.deployment_sec_2 .text-gold {
  color: var(--theme-color-three) !important;
}

.deployment_sec_2 .pipeline-step {
  position: relative;
  margin-bottom: 1.5rem;
}

.deployment_sec_2 .pipeline-step:last-child {
  margin-bottom: 0;
}

.deployment_sec_2 .pipeline-card {
  background: #ffffff;
  padding: 1.75rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-base);
  border-left: 4px solid var(--theme-color-second);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deployment_sec_2 .pipeline-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-large);
}

.deployment_sec_2 .pipeline-card .badge {
  font-family: var(--span-font);
  font-weight: 500;
  padding: 0.4em 0.8em;

}




/* Base Styles Scoped to .deployment_sec_3 */
.deployment_sec_3 {
  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.deployment_sec_3 h1,
.deployment_sec_3 h2,
.deployment_sec_3 h3,
.deployment_sec_3 h4,
.deployment_sec_3 h5,
.deployment_sec_3 h6 {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.deployment_sec_3 h2 {
  font-size: 35px;
}

.deployment_sec_3 span {
  font-family: var(--span-font);
}

.deployment_sec_3 .section-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--theme-color-second);
  margin-bottom: 0.5rem;
}



.deployment_sec_3 .comon-btn.btn-2:hover {
  background-color: var(--theme-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-base);
}

.deployment_sec_3 .checklist-box {
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--theme-color-second);
  box-shadow: var(--shadow-base);
}

.deployment_sec_3 .checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.deployment_sec_3 .checklist-item i {
  font-size: 1.75rem;
  color: var(--theme-color-second);
  line-height: 1;
  padding: 0.5rem;
  border-radius: 8px;
  background-color: rgba(35, 64, 143, 0.08);
  flex-shrink: 0;
}



/* Base Styles Scoped to .deployment_sec_4 */
.deployment_sec_4 {

  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.deployment_sec_4 h1,
.deployment_sec_4 h2,
.deployment_sec_4 h3,
.deployment_sec_4 h4,
.deployment_sec_4 h5,
.deployment_sec_4 h6 {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.deployment_sec_4 span {
  font-family: var(--span-font);
}

.deployment_sec_4 .cta-box {
  background: #f0e6d2;
  padding: 3rem 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-large);
  border-left: 4px solid var(--theme-color-second);
}



.deployment_sec_4 .comon-btn.btn-2:hover {
  background-color: var(--theme-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-base);
}



/* Base Styles Scoped to .contact_page_sec_1 */
.contact_page_sec_1 {
  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);
  font-family: var(--paragraph-font);
  color: #333333;
  padding-top: 180px;
  -webkit-font-smoothing: antialiased;
}

.contact_page_sec_1 h1,
.contact_page_sec_1 h2,
.contact_page_sec_1 h3,
.contact_page_sec_1 h4,
.contact_page_sec_1 h5,
.contact_page_sec_1 h6 {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.contact_page_sec_1 span {
  font-family: var(--span-font);
}

.contact_page_sec_1 .section-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--theme-color-second);
  margin-bottom: 0.5rem;
}

.contact_page_sec_1 .badge {
  font-family: var(--span-font);
  border-radius: 50rem;
}

.contact_page_sec_2 h1,
.contact_page_sec_2 h2,
.contact_page_sec_2 h3,
.contact_page_sec_2 h4,
.contact_page_sec_2 h5,
.contact_page_sec_2 h6 {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.contact_page_sec_2 span {
  font-family: var(--span-font);
}

.contact_page_sec_2 .text-primary {
  color: var(--theme-color-second) !important;
}

.contact_page_sec_2 .contact-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: var(--shadow-base);
  text-decoration: none;
  color: inherit;
  border-top: 3px solid var(--theme-color-second);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact_page_sec_2 .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
  color: inherit;
}

.contact_page_sec_2 .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background-color: rgba(35, 64, 143, 0.1);
  color: var(--theme-color-second);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.contact-card span {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.25rem;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  color: var(--theme-color-second);
  font-weight: 500;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.25 ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  justify-content: center;
}

.contact-card span :hover {
  background-color: #ffffff;
  border-color: var(--theme-color-three);
  color: var(--theme-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Base Styles Scoped to .contact_page_sec_3 */
.contact_page_sec_3 {
  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.contact_page_sec_3 h1,
.contact_page_sec_3 h2,
.contact_page_sec_3 h3,
.contact_page_sec_3 h4,
.contact_page_sec_3 h5,
.contact_page_sec_3 h6 {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.contact_page_sec_3 span {
  font-family: var(--span-font);
}

.contact_page_sec_3 .section-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--theme-color-second);
  margin-bottom: 0.5rem;
}

.contact_page_sec_3 .faq-prompt-box {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-small);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.contact_page_sec_3 .contact-form-wrapper {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-base);
  border-top: 3px solid var(--theme-color-second);
}

.contact_page_sec_3 .form-control,
.contact_page_sec_3 .form-select {
  font-family: var(--paragraph-font);

  padding: 0.65rem 0.9rem;
  border: 1px solid #ced4da;
}

.contact_page_sec_3 .form-control:focus,
.contact_page_sec_3 .form-select:focus {
  border-color: var(--theme-color-second);
  box-shadow: 0 0 0 0.25rem rgba(35, 64, 143, 0.15);
}

.contact_page_sec_3 .comon-btn.btn-2 {
  display: inline-flex;
  align-items: center;
  background-color: var(--theme-color-second);
  color: #ffffff;
  font-family: var(--heading-font);
  font-weight: 600;
  padding: 0.8rem 1.75rem;
  border: none;

  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-small);
}

.contact_page_sec_3 .comon-btn.btn-2:hover {
  background-color: var(--theme-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-base);
}



.health_sec_1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);
  font-family: var(--paragraph-font);
  color: #333333;
}



.health_sec_1__eyebrow {
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.5rem;
}

.health_sec_1__heading {
  font-family: var(--heading-font);
  color: var(--theme-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.health_sec_1__text {
  font-family: var(--paragraph-font);
  color: #555555;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.health_sec_1__card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  height: 100%;
  box-shadow: var(--shadow-base);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.health_sec_1__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.health_sec_1__icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(35, 64, 143, 0.1);
  color: var(--theme-color-second);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.health_sec_1__card-title {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.health_sec_1__card-text {
  font-family: var(--paragraph-font);
  color: #666666;
  font-size: 0.875rem;
  margin-bottom: 0;
  line-height: 1.5;
}



.health_sec_2 {
  padding-top: 0;
  font-family: var(--paragraph-font);
  color: #333333;
}

.health_sec_2__eyebrow {
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.5rem;
}

.health_sec_2__heading {
  font-family: var(--heading-font);
  color: var(--theme-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.health_sec_2__table-container {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: var(--shadow-base);
  overflow: hidden;
}

.health_sec_2__table {
  margin-bottom: 0;
  border-color: #e9ecef;
}

.health_sec_2__table thead th {
  font-family: var(--heading-font);
  background-color: var(--theme-color-second);
  color: #ffffff;
  font-weight: 600;
  padding: 1rem;
  border: none;
}

.health_sec_2__table tbody td {
  font-family: var(--paragraph-font);
  padding: 1rem;
  color: #444444;
  font-size: 0.9rem;
}

.health_sec_2__table tbody tr:hover {
  background-color: rgba(35, 64, 143, 0.03);
}

.health_sec_2__table td.fw-semibold {
  font-family: var(--heading-font);
  color: var(--theme-color);
}


.health_sec_3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);
  font-family: var(--paragraph-font);
  color: #333333;
}

.health_sec_3__cta-box {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-large);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.health_sec_3__eyebrow {
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.5rem;
}

.health_sec_3__heading {
  font-family: var(--heading-font);
  color: var(--theme-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.health_sec_3__text {
  font-family: var(--paragraph-font);
  color: #666666;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.health_sec_3__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--paragraph-font);
  font-weight: 600;
  font-size: 0.875rem;
  color: #ffffff;
  background-color: var(--theme-color-second);

  text-decoration: none;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
}

.health_sec_3__btn:hover {
  background-color: var(--theme-color);
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

.health_sec_3__btn--golden {
  background-color: var(--theme-color-three);
  color: #ffffff;
}

.health_sec_3__btn--golden:hover {
  background-color: #b08d3b;
  color: #ffffff;
}

.mailitary_sec_1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);
  font-family: var(--paragraph-font);
  color: #333333;
}


.mailitary_sec_1__eyebrow {
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.5rem;
}

.mailitary_sec_1__heading {
  font-family: var(--heading-font);
  color: var(--theme-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.mailitary_sec_1__text {
  font-family: var(--paragraph-font);
  color: #555555;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.mailitary_sec_1__card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  height: 100%;
  box-shadow: var(--shadow-base);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mailitary_sec_1__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.mailitary_sec_1__icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(35, 64, 143, 0.1);
  color: var(--theme-color-second);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.mailitary_sec_1__card-title {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.mailitary_sec_1__card-text {
  font-family: var(--paragraph-font);
  color: #666666;
  font-size: 0.875rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.mailitary_sec_2 {
  padding-top: 0rem;
  padding-bottom: 3rem;

  font-family: var(--paragraph-font);
  color: #333333;
}

.mailitary_sec_2__eyebrow {
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.5rem;
}

.mailitary_sec_2__heading {
  font-family: var(--heading-font);
  color: var(--theme-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.mailitary_sec_2__table-container {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: var(--shadow-base);
  overflow: hidden;
}

.mailitary_sec_2__table {
  margin-bottom: 0;
  border-color: #e9ecef;
}

.mailitary_sec_2__table thead th {
  font-family: var(--heading-font);
  background-color: var(--theme-color-second);
  color: #ffffff;
  font-weight: 600;
  padding: 1rem;
  border: none;
}

.mailitary_sec_2__table tbody td {
  font-family: var(--paragraph-font);
  padding: 1rem;
  color: #444444;
  font-size: 0.9rem;
}

.mailitary_sec_2__table tbody tr:hover {
  background-color: rgba(35, 64, 143, 0.03);
}

.mailitary_sec_2__table td.fw-semibold {
  font-family: var(--heading-font);
  color: var(--theme-color);
}


/* Public Sector Section Styles */
.public-sector-1 {
  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);
}


.public-sector-1 .eyebrow {
  font-family: var(--span-font);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-color-three);
  display: block;
  margin-bottom: 0.5rem;
}

.public-sector-1 h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
}

.public-sector-1 .role-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  box-shadow: var(--shadow-small);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.public-sector-1 .role-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
  border-color: rgba(35, 64, 143, 0.15);
}

.public-sector-1 .role-card .icon-box {
  width: 50px;
  height: 50px;

  background-color: rgba(35, 64, 143, 0.08);
  color: var(--theme-color-second);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.public-sector-1 .role-card:hover .icon-box {
  background-color: var(--theme-color-second);
  color: #ffffff;
}

.public-sector-1 .role-card h3 {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--theme-color);
  font-size: 1.1rem;
}

.public-sector-1 .role-card p {
  font-family: var(--paragraph-font);
  line-height: 1.5;
}



.gov-specs-sec .eyebrow {
  font-family: var(--span-font);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-color-three);
  display: block;
  margin-bottom: 0.5rem;
}

.gov-specs-sec h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
}

.gov-specs-sec .table-container {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  height: auto;
}

.gov-specs-sec table {
  margin-bottom: 0;
  font-family: var(--paragraph-font);
  overflow: none;
}

.gov-specs-sec thead th {
  background-color: #f8f9fa;
  color: var(--theme-color);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1rem 1.25rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.gov-specs-sec tbody td {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: #444444;
}

/* Highlight Column for CleanClip Product */
.gov-specs-sec th.highlight-col {
  background-color: var(--theme-color-second);
  color: #ffffff;
}

.gov-specs-sec td.highlight-cell {
  background-color: rgba(35, 64, 143, 0.04);
  color: var(--theme-color-second);
}

.wearable_design .eyebrow {
  font-family: var(--span-font);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-color-three);
  display: block;
  margin-bottom: 0.5rem;
}

.wearable_design h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
}

.wearable_design .role-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  box-shadow: var(--shadow-small);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.wearable_design .role-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
  border-color: rgba(35, 64, 143, 0.15);
}

.wearable_design .role-card .icon-box {
  width: 50px;
  height: 50px;

  background-color: rgba(35, 64, 143, 0.08);
  color: var(--theme-color-second);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.wearable_design .role-card:hover .icon-box {
  background-color: var(--theme-color-second);
  color: #ffffff;
}

.wearable_design .role-card h3 {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--theme-color);
  font-size: 1.1rem;
}

.wearable_design .role-card p {
  font-family: var(--paragraph-font);
  line-height: 1.5;
}

/* Wearable Design Section 2 */
.wearable_design_2 {
  background: linear-gradient(180deg, #ffffff 0%, #eef2f7 100%);
}

.wearable_design_2 .eyebrow {
  font-family: var(--span-font);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-color-three);
  display: block;
  margin-bottom: 0.5rem;
}

.wearable_design_2 h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
}

.wearable_design_2 .table-container {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
}

.wearable_design_2 table {
  margin-bottom: 0;
  font-family: var(--paragraph-font);
}

.wearable_design_2 thead th {
  background-color: #f8f9fa;
  color: var(--theme-color);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1rem 1.25rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.wearable_design_2 tbody td {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: #444444;
}

/* Featured / Highlighted Column Styling */
.wearable_design_2 th.highlight-col {
  background-color: var(--theme-color-second);
  color: #ffffff;
}

.wearable_design_2 td.highlight-cell {
  background-color: rgba(35, 64, 143, 0.04);
  color: var(--theme-color-second);
}


.wearable_design_2 .eyebrow {
  font-family: var(--span-font);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-color-three);
  display: block;
  margin-bottom: 0.5rem;
}

.wearable_design_2 h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
}

/* Card Styling */
.wearable_design_2 .testimonial-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2rem 1.75rem 1.5rem;
  box-shadow: var(--shadow-small);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  margin: 10px 5px 25px;
  /* Margin to accommodate shadow and dots */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.wearable_design_2 .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
  border-color: rgba(35, 64, 143, 0.2);
}

.wearable_design_2 .rating-stars {
  color: var(--theme-color-three);
  font-size: 1.1rem;
}

.wearable_design_2 .user-avatar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(35, 64, 143, 0.08);
  color: var(--theme-color-second);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.wearable_design_2 .testimonial-card h3 {
  font-family: var(--heading-font);
  font-weight: 600;
}

/* Custom Owl Carousel Dots Styling */
.wearable_design_2 .owl-review .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.wearable_design_2 .owl-review .owl-dots .owl-dot {
  display: inline-block;
  outline: none;
}

.wearable_design_2 .owl-review .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: rgba(35, 64, 143, 0.2);
  display: block;
  transition: all 0.3s ease-in-out;
  border-radius: 30px;
}

.wearable_design_2 .owl-review .owl-dots .owl-dot.active span,
.wearable_design_2 .owl-review .owl-dots .owl-dot:hover span {
  width: 28px;
  background: var(--theme-color-second);
}

/* Enable flexbox on the Owl Carousel stage container */
.wearable_design_2 .owl-review .owl-stage {
  display: flex;
}

/* Ensure each item stretches full height */
.wearable_design_2 .owl-review .owl-item {
  display: flex;
  flex: 1 0 auto;
}

.wearable_design_2 .owl-review .item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Force the card to take 100% height and align content */
.wearable_design_2 .testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}


/* Wearable Design 4 - FAQ Section */
.wearable_design_4 {
  background-color: #ffffff;
}



.wearable_design_4 .eyebrow {
  font-family: var(--span-font);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-color-three);
  display: block;
  margin-bottom: 0.5rem;
}

.wearable_design_4 h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
}

/* Custom Accordion Styling */
.wearable_design_4 .accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-small);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wearable_design_4 .accordion-item:hover {
  border-color: rgba(35, 64, 143, 0.25);
  box-shadow: var(--shadow-base);
}

.wearable_design_4 .accordion-header {
  margin: 0;
}

.wearable_design_4 .accordion-button {
  font-family: var(--heading-font);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--theme-color);
  background-color: #ffffff;
  padding: 1.25rem 1.5rem;
  border: none;
  box-shadow: none;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.wearable_design_4 .accordion-button:not(.collapsed) {
  color: var(--theme-color-second);
  background-color: rgba(35, 64, 143, 0.04);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

.wearable_design_4 .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.wearable_design_4 .accordion-button::after {
  background-size: 1.1rem;
  transition: transform 0.3s ease;
}

.wearable_design_4 .accordion-body {
  font-family: var(--paragraph-font);
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.6;
  padding: 1.25rem 1.5rem;
  background-color: #ffffff;
}

#healt-care-need.home_sec_3 .product-box .over-lay {
  position: relative;
  display: flex;
  justify-content: space-between;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 350px;
  min-height: 320px;
  color: #323232;
  align-items: end;
  background: #ffffff;
  transition: background 0.4s ease;
  align-items: start;
}

#healt-care-need.home_sec_3 .product-box .over-lay p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

#healt-care-need.home_sec_3 .product-box .over-lay h3 {
  color: var(--theme-color-second);
}

#healt-care-need.home_sec_3 .product-box {
  border: 1px solid #dedede;

}

.health-care-new-1 {
  background-color: #ffffff;
}

.health-care-new-1 .eyebrow {
  font-family: var(--span-font);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-color-three);
  display: block;
  margin-bottom: 0.5rem;
}

.health-care-new-1 h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
  font-size: 2.25rem;
  line-height: 1.25;
}

.health-care-new-1 .supports-title h3 {
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
}

/* Benefits List Styling */
.health-care-new-1 .support-list li {
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #444444;
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.health-care-new-1 .support-list li i {
  color: var(--theme-color-second) !important;
  font-size: 1.15rem;
  margin-top: 0.1rem;
}

/* Image & Media Styling */
.health-care-new-1 .image-wrapper {
  max-height: 520px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.health-care-new-1 .image-wrapper img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.health-care-new-1 .image-badge {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  max-width: 280px;
}

.health-care-new-1 .badge-icon {
  color: var(--theme-color-second) !important;
  background-color: rgba(35, 64, 143, 0.1) !important;
}

.health-care-new-1 .image-badge h4 {
  font-family: var(--heading-font);
}



.health_sec_2__eyebrow {
  font-family: var(--span-font);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-color-three);
  display: block;
  margin-bottom: 0.5rem;
}

.health_sec_2__heading {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
  font-size: 2.25rem;
  line-height: 1.25;
}

/* Visual Specs Cards */
.health_sec_2__spec-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.health_sec_2__spec-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large) !important;
  border-color: rgba(35, 64, 143, 0.25) !important;
}

.health_sec_2__spec-val {
  font-family: var(--heading-font);
  color: var(--theme-color-second) !important;
  font-size: 1.75rem;
  line-height: 1.2;
}

.health_sec_2__spec-label {
  font-family: var(--paragraph-font);
  font-size: 0.95rem;
  color: #444444;
}

/* Tagline Styling */
.health_sec_2__tagline {
  font-family: var(--heading-font);
  color: var(--theme-color) !important;
  line-height: 1.4;
}

.health-care-data-module {
  background-color: #eff4ff;
}

.health-care-data-module .eyebrow {
  font-family: var(--span-font);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-color-three);
  display: block;
  margin-bottom: 0.5rem;
}

.health-care-data-module h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
  font-size: 2.25rem;
  line-height: 1.25;
}

/* Workflow Banner */
.health-care-data-module .workflow-wrapper {
  background-color: rgba(35, 64, 143, 0.04);
  border: 1px solid rgba(35, 64, 143, 0.12);
}

.health-care-data-module .workflow-step {
  font-family: var(--heading-font);
  color: var(--theme-color-second);
  letter-spacing: 0.5px;
}

/* Feature Cards */
.health-care-data-module .feature-card {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.08) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.health-care-data-module .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-base) !important;
}

.health-care-data-module .feature-icon i {
  color: var(--theme-color-second) !important;
}

/* Upload Schedule & Badges */
.health-care-data-module .upload-schedule-card {
  background-color: #f8f9fa;
  border-color: rgba(0, 0, 0, 0.08) !important;
}

.health-care-data-module .interval-badge {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--theme-color-second);
}

/* Detail Items */
.health-care-data-module .detail-item h4 {
  font-family: var(--heading-font);
}

.health-care-data-module .detail-item i {
  color: var(--theme-color-second) !important;
}

.health-care-data-module .detail-item {
  background-color: #f8f9fa;
  border-color: rgba(0, 0, 0, 1) !important;
  padding: 1rem;
  height: 100%;
  border-radius: 10px;

  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

/* Closing Tagline */
.health-care-data-module .tagline {
  font-family: var(--heading-font);
  color: var(--theme-color) !important;
  line-height: 1.4;
}

.clinical-integration .eyebrow {
  font-family: var(--span-font);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-color-three);
  display: block;
  margin-bottom: 0.5rem;
}

.clinical-integration h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
  font-size: 2.25rem;
  line-height: 1.25;
}

/* Attachment Cards */
.clinical-integration .attachment-card {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.08) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.clinical-integration .attachment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-base) !important;
  border-color: rgba(35, 64, 143, 0.25) !important;
}

.clinical-integration .attachment-card h3 {
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
}

.clinical-integration .attachment-card .badge.bg-primary {
  color: var(--theme-color-second) !important;
  background-color: rgba(35, 64, 143, 0.1) !important;
}

/* Benefit Card */
.clinical-integration .benefit-card {
  background-color: rgba(35, 64, 143, 0.03);
  border-color: rgba(35, 64, 143, 0.12) !important;
}

.clinical-integration .benefit-card h3 {
  font-family: var(--heading-font);
}

/* Link CTA */
.clinical-integration .btn-link {
  font-family: var(--heading-font);
  color: var(--theme-color-second) !important;
  transition: color 0.3s ease, transform 0.3s ease;
}

.clinical-integration .btn-link:hover {
  color: var(--theme-color) !important;
}

.clinical-integration .btn-link i {
  display: inline-block;
  transition: transform 0.3s ease;
}

.clinical-integration .btn-link:hover i {
  transform: translateX(4px);
}


/* Mobile & Distributed Operations Section */
.mobile-distributed-ops {
  background-color: #ffffff;
}

.mobile-distributed-ops .eyebrow {
  font-family: var(--span-font);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-color-three);
  display: block;
  margin-bottom: 0.5rem;
}

.mobile-distributed-ops h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
  font-size: 2.25rem;
  line-height: 1.25;
}

.mobile-distributed-ops .applications-title h3 {
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
}

/* Applications List Styling */
.mobile-distributed-ops .app-list li {
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #444444;
  margin-bottom: 0.85rem;
  line-height: 1.4;
}

.mobile-distributed-ops .app-list li i {
  color: var(--theme-color-second) !important;
  font-size: 1.15rem;
  margin-top: 0.1rem;
}

/* Image & Media Styling */
.mobile-distributed-ops .image-wrapper {
  max-height: 520px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-distributed-ops .image-wrapper img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.mobile-distributed-ops .image-badge {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  max-width: 300px;
}

.mobile-distributed-ops .badge-icon {
  color: var(--theme-color-second) !important;
  background-color: rgba(35, 64, 143, 0.1) !important;
}

.mobile-distributed-ops .image-badge h4 {
  font-family: var(--heading-font);
}

.wear-it-your-way .eyebrow {
  font-family: var(--span-font);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-color-three);
  display: block;
  margin-bottom: 0.5rem;
}

.wear-it-your-way h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
  font-size: 2.25rem;
  line-height: 1.25;
}

/* Option Cards & Icon Styling */
.wear-it-your-way .option-card {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.08) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.wear-it-your-way .option-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-base) !important;
  border-color: rgba(35, 64, 143, 0.25) !important;
}

.wear-it-your-way .option-card h3 {
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
}

.wear-it-your-way .icon-box {
  width: 56px;
  height: 56px;
  background-color: rgba(35, 64, 143, 0.08);
  color: var(--theme-color-second);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.wear-it-your-way .option-card:hover .icon-box {
  background-color: var(--theme-color-second);
  color: #ffffff;
}

/* CTA Link */
.wear-it-your-way .btn-link {
  font-family: var(--heading-font);
  color: var(--theme-color-second) !important;
  transition: color 0.3s ease;
}

.wear-it-your-way .btn-link:hover {
  color: var(--theme-color) !important;
}

.wear-it-your-way .btn-link i {
  display: inline-block;
  transition: transform 0.3s ease;
}

.wear-it-your-way .btn-link:hover i {
  transform: translateX(4px);
}

.standalone-deployable .eyebrow {
  font-family: var(--span-font);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-color-three);
  display: block;
  margin-bottom: 0.5rem;
}

.standalone-deployable h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
  font-size: 2.25rem;
  line-height: 1.25;
}

/* Feature Cards & Icon Styling */
.standalone-deployable .feature-card {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.08) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.standalone-deployable .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-base) !important;
  border-color: rgba(35, 64, 143, 0.25) !important;
}

.standalone-deployable .feature-card h3 {
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
}

.standalone-deployable .icon-box {
  width: 56px;
  height: 56px;
  background-color: rgba(35, 64, 143, 0.08);
  color: var(--theme-color-second);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.standalone-deployable .feature-card:hover .icon-box {
  background-color: var(--theme-color-second);
  color: #ffffff;
}

/* Summary Card */
.standalone-deployable .summary-card {
  background-color: rgba(35, 64, 143, 0.03);
  border-color: rgba(35, 64, 143, 0.12) !important;
}


.hygiene-access-beyond .eyebrow {
  font-family: var(--span-font);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-color-three);
  display: block;
  margin-bottom: 0.5rem;
}

.hygiene-access-beyond h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
  font-size: 2.25rem;
  line-height: 1.25;
}

/* Journey Card & Node Styling */
.hygiene-access-beyond .environment-journey-card {
  background-color: rgba(35, 64, 143, 0.03);
  border-color: rgba(35, 64, 143, 0.12) !important;
}

.hygiene-access-beyond .node-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(35, 64, 143, 0.1);
  color: var(--theme-color-second);
}

.hygiene-access-beyond .node-label {
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
}

.hygiene-access-beyond .journey-arrow {
  color: var(--theme-color-three) !important;
}

@media (max-width: 767.98px) {
  .hygiene-access-beyond .journey-arrow {
    display: none;
  }
}

.organizational-deployment .eyebrow {
  font-family: var(--span-font);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-color-three);
  display: block;
  margin-bottom: 0.5rem;
}

.organizational-deployment h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
  font-size: 2.25rem;
  line-height: 1.25;
}

/* Consultation Card & Items */
.organizational-deployment .consultation-card {
  background-color: rgba(35, 64, 143, 0.03);
  border-color: rgba(35, 64, 143, 0.12) !important;
}

.organizational-deployment .consultation-card h3 {
  font-family: var(--heading-font);
}

.organizational-deployment .consultation-card i {
  color: var(--theme-color-second) !important;
  flex-shrink: 0;
}



.canadian-innovation .eyebrow {
  font-family: var(--span-font);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-color-three);
  display: block;
  margin-bottom: 0.5rem;
}

.canadian-innovation h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
  font-size: 2.25rem;
  line-height: 1.25;
}

.canadian-innovation .company-link {
  color: var(--theme-color-second);
  transition: color 0.3s ease;
}

.canadian-innovation .company-link:hover {
  color: var(--theme-color-three);
}

/* Card & Icon Styling */
.canadian-innovation .innovation-card {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.08) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.canadian-innovation .innovation-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-base) !important;
  border-color: rgba(35, 64, 143, 0.25) !important;
}

.canadian-innovation .innovation-card h3 {
  font-family: var(--heading-font);
}

.canadian-innovation .icon-box {
  width: 56px;
  height: 56px;
  background-color: rgba(35, 64, 143, 0.08);
  color: var(--theme-color-second);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.canadian-innovation .innovation-card:hover .icon-box {
  background-color: var(--theme-color-second);
  color: #ffffff;
}

.evaluate-clean-clip .eyebrow {
  font-family: var(--span-font);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-color-three);
  display: block;
  margin-bottom: 0.5rem;
}

.evaluate-clean-clip h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
  font-size: 2.25rem;
  line-height: 1.25;
}

/* Procurement Card */
.evaluate-clean-clip .procurement-card {
  background-color: rgba(35, 64, 143, 0.03);
  border-color: rgba(35, 64, 143, 0.12) !important;
}

.evaluate-clean-clip .procurement-card h3 {
  font-family: var(--heading-font);
}

.evaluate-clean-clip .icon-box {
  width: 56px;
  height: 56px;
  background-color: rgba(35, 64, 143, 0.1);
  color: var(--theme-color-second);
}

/* Button Styling */
.evaluate-clean-clip .btn {
  font-family: var(--heading-font);
  transition: all 0.3s ease;
  border-radius: 500px !important;
}

.evaluate-clean-clip .btn-outline-primary {
  color: var(--theme-color-second);
  border-color: var(--theme-color-second);
  background-color: transparent;
}

.evaluate-clean-clip .btn-outline-primary:hover {
  background-color: var(--theme-color-second);
  color: #ffffff;
  border-color: var(--theme-color-second);
}

.evaluate-clean-clip .btn-primary {
  background-color: var(--theme-color-second);
  border-color: var(--theme-color-second);
  color: #ffffff;

}

.evaluate-clean-clip .btn-primary:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.evaluate-clean-clip .btn i {
  transition: transform 0.3s ease;
}

.evaluate-clean-clip .btn:hover i {
  transform: translateX(4px);
}

.who-clean-clip-supports .eyebrow {
  font-family: var(--span-font);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-color-three);
  display: block;
  margin-bottom: 0.5rem;
}

.who-clean-clip-supports h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
  font-size: 2.25rem;
  line-height: 1.25;
}

.who-clean-clip-supports .text-primary {
  color: var(--theme-color-second) !important;
  font-family: var(--heading-font);
  font-size: 1.05rem;
  line-height: 1.4;
}

.who-clean-clip-supports .benefits-title h3 {
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
}

/* Benefits List Styling */
.who-clean-clip-supports .support-list li {
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #444444;
  margin-bottom: 0.85rem;
  line-height: 1.4;
}

.who-clean-clip-supports .support-list li i {
  color: var(--theme-color-second) !important;
  font-size: 1.15rem;
  margin-top: 0.1rem;
}

/* Image Column Styling */
.who-clean-clip-supports .image-wrapper {
  max-height: 520px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.who-clean-clip-supports .image-wrapper img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.who-clean-clip-supports .image-badge {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  max-width: 300px;
}

.who-clean-clip-supports .badge-icon {
  color: var(--theme-color-second) !important;
  background-color: rgba(35, 64, 143, 0.1) !important;
}

.who-clean-clip-supports .image-badge h4 {
  font-family: var(--heading-font);
}

.industry-verticals .eyebrow {
  font-family: var(--span-font);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-color-three);
  display: block;
  margin-bottom: 0.5rem;
}

.industry-verticals h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
  font-size: 2.25rem;
  line-height: 1.25;
}

/* Industry Cards Styling */
.industry-verticals .industry-card {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.08) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.industry-verticals .industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-base) !important;
  border-color: rgba(35, 64, 143, 0.25) !important;
}

.industry-verticals .industry-card h3 {
  font-family: var(--heading-font);
}

.industry-verticals .text-primary {
  color: var(--theme-color-second) !important;
  font-family: var(--heading-font);
  line-height: 1.4;
}

/* Support List Styling */
.industry-verticals .support-list li {
  display: flex;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #444444;
  margin-bottom: 0.65rem;
  line-height: 1.4;
}

.industry-verticals .support-list li i {
  color: var(--theme-color-second) !important;
  font-size: 1.1rem;
  margin-top: 0.05rem;
  flex-shrink: 0;
}

.one-system-workforces .eyebrow {
  font-family: var(--span-font);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-color-three);
  display: block;
  margin-bottom: 0.5rem;
}

.one-system-workforces h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
  font-size: 2.25rem;
  line-height: 1.25;
}

/* Challenge Card & Border */
.one-system-workforces .challenge-card {
  background-color: rgba(35, 64, 143, 0.03);
  border-color: rgba(35, 64, 143, 0.12) !important;
}

.one-system-workforces .challenge-list i {
  color: var(--theme-color-second) !important;
}

@media (min-width: 992px) {
  .one-system-workforces .border-start-lg {
    border-left: 1px solid rgba(35, 64, 143, 0.15) !important;
  }
}

/* Stakeholder Cards */
.one-system-workforces .stakeholder-card {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.08) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.one-system-workforces .stakeholder-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-base) !important;
  border-color: rgba(35, 64, 143, 0.25) !important;
}

.one-system-workforces .stakeholder-card h3 {
  font-family: var(--heading-font);
}

.one-system-workforces .icon-box {
  width: 56px;
  height: 56px;
  background-color: rgba(35, 64, 143, 0.08);
  color: var(--theme-color-second);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.one-system-workforces .stakeholder-card:hover .icon-box {
  background-color: var(--theme-color-second);
  color: #ffffff;
}

.one-system-workforces .badge {
  font-family: var(--paragraph-font);
  font-size: 0.8rem;
  color: #444444 !important;
  background-color: rgba(0, 0, 0, 0.02) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}

.designed-for-org .eyebrow {
  font-family: var(--span-font);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-color-three);
  display: block;
  margin-bottom: 0.5rem;
}

.designed-for-org h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.25;
}

.designed-for-org .text-gold {
  color: var(--theme-color-three) !important;
}

/* Org Grid Cards */
.designed-for-org .org-card {
  background-color: #1a1a1a !important;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.designed-for-org .org-card:hover {
  transform: translateY(-3px);
  border-color: var(--theme-color-three) !important;
  box-shadow: 0 5px 15px rgba(201, 162, 74, 0.15);
}

.designed-for-org .org-card span {
  font-family: var(--paragraph-font);
  line-height: 1.4;
}

/* Strategy Card */
.designed-for-org .strategy-card {
  background-color: rgba(255, 255, 255, 0.03);
  border-color: rgba(201, 162, 74, 0.3) !important;
}

.designed-for-org .strategy-card p {
  font-family: var(--heading-font);
  letter-spacing: 0.3px;
}

.workforce-moves .eyebrow {
  font-family: var(--span-font);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-color-three);
  display: block;
  margin-bottom: 0.5rem;
}

.workforce-moves h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
  font-size: 2.25rem;
  line-height: 1.25;
}

/* Pill Buttons (Border Radius 500 equivalent) */
.workforce-moves .rounded-pill {
  border-radius: 500px !important;
}

.workforce-moves .btn {
  font-family: var(--heading-font);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.workforce-moves .btn-outline-primary {
  color: var(--theme-color-second);
  border-color: var(--theme-color-second);
  background-color: transparent;
}

.workforce-moves .btn-outline-primary:hover {
  background-color: var(--theme-color-second);
  color: #ffffff;
  border-color: var(--theme-color-second);
  box-shadow: var(--shadow-base);
}

.workforce-moves .btn-primary {
  background-color: var(--theme-color-second);
  border-color: var(--theme-color-second);
  color: #ffffff;
}

.workforce-moves .btn-primary:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  box-shadow: var(--shadow-base);
}

.workforce-moves .btn i {
  transition: transform 0.3s ease;
}

.workforce-moves .btn:hover i {
  transform: translateX(4px);
}

/* Custom Styling extending your :root variables */

/* Parent Section Namespace */
.clean_clip_banner {
  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  padding-top: 150px;
}

.clean_clip_banner__subtitle {
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.clean_clip_banner__subtitle i {
  color: var(--theme-color-three);
  font-size: 1.2rem;
}

.clean_clip_banner__title {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  line-height: 1.15;
}

.clean_clip_banner__description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a5568;
  font-weight: 500;
}

.clean_clip_banner__subtext {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #718096;
}

.clean_clip_banner__features .badge {
  background-color: rgba(35, 64, 143, 0.08);
  color: var(--theme-color-second);
  border: 1px solid rgba(35, 64, 143, 0.15);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5em 0.9em;
}

.clean_clip_banner__btn {
  background-color: var(--theme-color-second);
  color: #ffffff;
  font-family: var(--span-font);
  font-weight: 600;
  padding: 0.8rem 1.75rem;
  border-radius: 50rem;
  box-shadow: var(--shadow-base);
  transition: all 0.3s ease;
  border: 2px solid var(--theme-color-second);
}

.clean_clip_banner__btn:hover {
  background-color: var(--theme-color-three);
  border-color: var(--theme-color-three);
  color: #ffffff;
  box-shadow: var(--shadow-large);
  transform: translateY(-2px);
}

.clean_clip_banner__btn i {
  transition: transform 0.3s ease;
}

.clean_clip_banner__btn:hover i {
  transform: translateX(4px);
}

.clean_clip_banner__image-wrapper {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-large);
}

.clean_clip_banner__spec-tag {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--theme-color-second);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Styling under .clean_clip_sec_1 namespace */
.clean_clip_sec_1 {
  background: linear-gradient(180deg, #ffffff 0%, #eef2f7 100%);
  font-family: var(--paragraph-font);
  color: #333333;
}

.clean_clip_sec_1__tagline {
  color: var(--theme-color-three);
  font-family: var(--span-font);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.clean_clip_sec_1__heading {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.clean_clip_sec_1__subheading {
  font-family: var(--heading-font);
  color: var(--theme-color-second);
  font-weight: 700;
  font-size: 1.5rem;
}

.clean_clip_sec_1__intro {
  color: var(--theme-color-second);
  font-weight: 600;
  font-size: 1.25rem;
}

.clean_clip_sec_1__body {
  color: #555555;
  line-height: 1.7;
}

/* 5-Column layout grid support for Bootstrap on desktop */
@media (min-width: 992px) {
  .col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
  }
}

.clean_clip_sec_1__spec-card {
  background: #ffffff;
  border: 1px solid rgba(35, 64, 143, 0.1);
  box-shadow: var(--shadow-small);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clean_clip_sec_1__spec-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
  border-color: var(--theme-color-three);
}

.clean_clip_sec_1__icon-box {
  width: 50px;
  height: 50px;
  background-color: rgba(35, 64, 143, 0.08);
  color: var(--theme-color-second);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.clean_clip_sec_1__spec-value {
  font-family: var(--heading-font);
  color: var(--theme-color-second);
  font-weight: 700;
  font-size: 1.15rem;
}

.clean_clip_sec_1__spec-label {
  font-size: 0.85rem;
  color: #666666;
  line-height: 1.4;
}

.clean_clip_sec_1__detail-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-base);
}

.clean_clip_sec_1__feature-icon {
  width: 44px;
  height: 44px;
  background-color: var(--theme-color-three);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.clean_clip_sec_1__card-title {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.clean_clip_sec_1__card-desc {
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Styling under .clean_clip_sec_2 namespace */
.clean_clip_sec_2 {
  background: linear-gradient(180deg, #ffffff 0%, #eef2f7 100%);
  font-family: var(--paragraph-font);
  color: #333333;
}

.clean_clip_sec_2__tagline {
  color: var(--theme-color-three);
  font-family: var(--span-font);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.clean_clip_sec_2__heading {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.clean_clip_sec_2__subheading {
  font-family: var(--heading-font);
  color: var(--theme-color-second);
  font-weight: 700;
  font-size: 1.5rem;
}

.clean_clip_sec_2__intro {
  color: var(--theme-color-second);
  font-weight: 600;
  font-size: 1.25rem;
}

.clean_clip_sec_2__body {
  color: #555555;
  line-height: 1.7;
}

/* Spec Cards */
.clean_clip_sec_2__card {
  background: #ffffff;
  border: 1px solid rgba(35, 64, 143, 0.1);
  box-shadow: var(--shadow-small);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clean_clip_sec_2__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
  border-color: var(--theme-color-three);
}

.clean_clip_sec_2__icon-wrapper {
  width: 50px;
  height: 50px;
  background-color: rgba(35, 64, 143, 0.08);
  color: var(--theme-color-second);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.clean_clip_sec_2__card-value {
  font-family: var(--heading-font);
  color: var(--theme-color-second);
  font-weight: 700;
  font-size: 1.15rem;
}

.clean_clip_sec_2__card-text {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.5;
}

/* Callout Box */
.clean_clip_sec_2__callout {
  background: rgba(201, 162, 74, 0.1);
  border: 1px solid rgba(201, 162, 74, 0.3);
  color: #4a3e1a;
  font-size: 0.95rem;
  line-height: 1.6;
}

.clean_clip_sec_2__callout-icon {
  font-size: 1.8rem;
  color: var(--theme-color-three);
}

/* Auto-Ship & Warranty Cards */
.clean_clip_sec_2__program-box {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-base);
}

.clean_clip_sec_2__warranty-box {
  background: linear-gradient(135deg, var(--theme-color-second) 0%, #172c60 100%);
  color: #ffffff;
  box-shadow: var(--shadow-large);
}

.clean_clip_sec_2__box-title {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.4rem;
}

.clean_clip_sec_2__program-box .clean_clip_sec_2__box-title {
  color: var(--theme-color);
}

.clean_clip_sec_2__warranty-box .clean_clip_sec_2__box-title {
  color: #ffffff;
}

.clean_clip_sec_2__box-desc {
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.clean_clip_sec_2__box-subtext {
  color: #718096;
  font-size: 0.9rem;
}

.clean_clip_sec_2__badge-icon {
  width: 44px;
  height: 44px;
  background-color: var(--theme-color-three);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.clean_clip_sec_2__warranty-highlight {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #e2e8f0;
}

.clean_clip_sec_2__warranty-note {
  color: #a0aec0 !important;
  font-size: 0.85rem;
}

/* Buttons */
.clean_clip_sec_2__btn {
  font-family: var(--span-font);
  font-weight: 600;
  padding: 0.8rem 1.75rem;
  border-radius: 50rem;
  box-shadow: var(--shadow-base);
  transition: all 0.3s ease;
}

.clean_clip_sec_2__btn--primary {
  background-color: var(--theme-color-second);
  color: #ffffff;
  border: 2px solid var(--theme-color-second);
}

.clean_clip_sec_2__btn--primary:hover {
  background-color: var(--theme-color-three);
  border-color: var(--theme-color-three);
  color: #ffffff;
  box-shadow: var(--shadow-large);
  transform: translateY(-2px);
}

.clean_clip_sec_2__btn--secondary {
  background-color: transparent;
  color: var(--theme-color-second);
  border: 2px solid var(--theme-color-second);
}

.clean_clip_sec_2__btn--secondary:hover {
  background-color: var(--theme-color-second);
  color: #ffffff;
  box-shadow: var(--shadow-large);
  transform: translateY(-2px);
}

/* Styling under .clean_clip_sec_3 namespace */
.clean_clip_sec_3 {
  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);
  font-family: var(--paragraph-font);
  color: #333333;
  padding-top: 0;
}

.clean_clip_sec_3__tagline {
  color: var(--theme-color-three);
  font-family: var(--span-font);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.clean_clip_sec_3__heading {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.clean_clip_sec_3__intro {
  color: var(--theme-color-second);
  font-weight: 600;
  font-size: 1.25rem;
}

.clean_clip_sec_3__body {
  color: #555555;
  line-height: 1.7;
}

/* Card Styling */
.clean_clip_sec_3__card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-small);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.clean_clip_sec_3__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
  border-color: var(--theme-color-three);
}

.clean_clip_sec_3__badge--standard {
  background-color: var(--theme-color-second);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.75rem;
}

.clean_clip_sec_3__badge--optional {
  background-color: rgba(201, 162, 74, 0.15);
  color: #8c6b18;
  border: 1px solid rgba(201, 162, 74, 0.3);
  font-weight: 600;
  font-size: 0.75rem;
}

.clean_clip_sec_3__icon-wrapper {
  width: 54px;
  height: 54px;
  background-color: rgba(35, 64, 143, 0.08);
  color: var(--theme-color-second);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.clean_clip_sec_3__card-title {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
  font-size: 1.25rem;
}

.clean_clip_sec_3__card-text {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.5;
  flex-grow: 1;
}

.clean_clip_sec_3__benefit {
  background: #f8fafc;
  border-left: 3px solid var(--theme-color-three);
  font-size: 0.825rem;
  color: #4a5568;
  line-height: 1.4;
}

.clean_clip_sec_3__note {
  font-size: 0.8rem;
  text-align: left;
}

/* Summary Callout Box */
.clean_clip_sec_3__summary-box {
  background: linear-gradient(135deg, var(--theme-color-second) 0%, #172c60 100%);
  color: #ffffff;
  box-shadow: var(--shadow-large);
}

.clean_clip_sec_3__summary-title {
  font-family: var(--heading-font);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.6rem;
}

.clean_clip_sec_3__summary-desc {
  color: #e2e8f0;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Button */
.clean_clip_sec_3__btn {
  background-color: var(--theme-color-second);
  color: #ffffff;
  font-family: var(--span-font);
  font-weight: 600;
  padding: 0.8rem 1.75rem;
  border-radius: 50rem;
  box-shadow: var(--shadow-base);
  transition: all 0.3s ease;
  border: 2px solid var(--theme-color-second);
}

.clean_clip_sec_3__btn:hover {
  background-color: var(--theme-color-three);
  border-color: var(--theme-color-three);
  color: #ffffff;
  box-shadow: var(--shadow-large);
  transform: translateY(-2px);
}

.clean_clip_sec_3__btn i {
  transition: transform 0.3s ease;
}

.clean_clip_sec_3__btn:hover i {
  transform: translateX(4px);
}


/* Styling under .clean_clip_sec_4 namespace */
.clean_clip_sec_4 {
  background: linear-gradient(180deg, #ffffff 0%, #eef2f7 100%);
  font-family: var(--paragraph-font);
  color: #333333;
}

.clean_clip_sec_4__tagline {
  color: var(--theme-color-three);
  font-family: var(--span-font);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.clean_clip_sec_4__heading {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.clean_clip_sec_4__intro {
  color: var(--theme-color-second);
  font-weight: 600;
  font-size: 1.25rem;
}

.clean_clip_sec_4__body {
  color: #555555;
  line-height: 1.7;
}

/* Feature Cards */
.clean_clip_sec_4__feature-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-small);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clean_clip_sec_4__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
  border-color: var(--theme-color-three);
}

.clean_clip_sec_4__feature-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(35, 64, 143, 0.08);
  color: var(--theme-color-second);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.clean_clip_sec_4__feature-title {
  font-family: var(--heading-font);
  color: var(--theme-color-second);
  font-weight: 700;
  font-size: 1.15rem;
}

.clean_clip_sec_4__feature-desc {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.5;
}

.clean_clip_sec_4__schedule-badges .badge {
  background-color: rgba(35, 64, 143, 0.1);
  color: var(--theme-color-second);
  border: 1px solid rgba(35, 64, 143, 0.2);
  font-weight: 600;
  font-size: 0.8rem;
}

/* Workflow Visualization */
.clean_clip_sec_4__workflow-box {
  background: #ffffff;
  border: 1px solid rgba(35, 64, 143, 0.15);
  box-shadow: var(--shadow-base);
}

.clean_clip_sec_4__workflow-title {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
  font-size: 1.3rem;
}

.clean_clip_sec_4__workflow-steps {
  row-gap: 1.5rem;
}

.clean_clip_sec_4__step {
  flex: 1;
  min-width: 90px;
}

.clean_clip_sec_4__step-icon {
  width: 48px;
  height: 48px;
  background-color: var(--theme-color-second);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-small);
}

.clean_clip_sec_4__step-name {
  font-family: var(--span-font);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--theme-color-second);
  letter-spacing: 0.5px;
}

.clean_clip_sec_4__step-arrow {
  font-size: 1.8rem;
  color: var(--theme-color-three);
}

@media (max-width: 767px) {
  .clean_clip_sec_4__step-arrow {
    display: none;
  }
}

/* Benefit Cards */
.clean_clip_sec_4__benefit-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-small);
}

.clean_clip_sec_4__benefit-number {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--theme-color-three);
}

.clean_clip_sec_4__benefit-title {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.clean_clip_sec_4__benefit-text {
  font-size: 0.85rem;
  color: #666666;
  line-height: 1.5;
}

/* Strategic Quote Callout */
.clean_clip_sec_4__quote-box {
  background: rgba(35, 64, 143, 0.06);
  border: 1px solid rgba(35, 64, 143, 0.15);
}

.clean_clip_sec_4__quote {
  font-family: var(--heading-font);
  color: var(--theme-color-second);
  font-size: 1.35rem;
  font-weight: 700;
  font-style: italic;
}

/* Button */
.clean_clip_sec_4__btn {
  background-color: var(--theme-color-second);
  color: #ffffff;
  font-family: var(--span-font);
  font-weight: 600;
  padding: 0.8rem 1.75rem;
  border-radius: 50rem;
  box-shadow: var(--shadow-base);
  transition: all 0.3s ease;
  border: 2px solid var(--theme-color-second);
}

.clean_clip_sec_4__btn:hover {
  background-color: var(--theme-color-three);
  border-color: var(--theme-color-three);
  color: #ffffff;
  box-shadow: var(--shadow-large);
  transform: translateY(-2px);
}

.clean_clip_sec_4__btn i {
  transition: transform 0.3s ease;
}

.clean_clip_sec_4__btn:hover i {
  transform: translateX(4px);
}


/* Procurement Section 1 Styling */
.procurement_sec_1 {
  background: var(--theme-color-second);
  background: linear-gradient(135deg, var(--theme-color) 0%, var(--theme-color-second) 100%);
  font-family: var(--paragraph-font);

  padding-top: 120px;
}

.procurement_sec_1__heading {
  font-family: var(--heading-font);
}

/* Background Styling Elements */
.procurement_sec_1__glow {
  filter: blur(80px);
  opacity: 0.25;
  z-index: 0;
}

.procurement_sec_1__glow--1 {
  width: 400px;
  height: 400px;
  background: var(--theme-color-three);
  top: -100px;
  left: -100px;
  animation: floatGlow 8s ease-in-out infinite alternate;
}

.procurement_sec_1__glow--2 {
  width: 500px;
  height: 500px;
  background: var(--theme-color-second);
  bottom: -150px;
  right: -100px;
  animation: floatGlow 10s ease-in-out infinite alternate-reverse;
}

.procurement_sec_1__grid-pattern {
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
}

.procurement_sec_1__tagline {
  font-family: var(--span-font);
  background-color: rgba(201, 162, 74, 0.15);
  color: var(--theme-color-three);
  font-size: 0.875rem;
  letter-spacing: 1.5px;
  border: 1px solid rgba(201, 162, 74, 0.3);
}

.procurement_sec_1__btn {
  background-color: var(--theme-color-three);
  border-color: var(--theme-color-three);
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.procurement_sec_1__btn:hover {
  background-color: var(--theme-color-second);
  border-color: var(--theme-color-second);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-large) !important;
}

@keyframes floatGlow {
  0% {
    transform: translate(0px, 0px) scale(1);
  }

  100% {
    transform: translate(30px, 30px) scale(1.1);
  }
}


/* Procurement Section 2 CSS */
.procurement_sec_2 {
  background-color: #ffffff;
  font-family: var(--paragraph-font);
  color: #333333;
}

.procurement_sec_2__heading,
.procurement_sec_2__subheading {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.procurement_sec_2__tagline {
  font-family: var(--span-font);
  background-color: rgba(35, 64, 143, 0.1);
  color: var(--theme-color-second);
  font-size: 0.875rem;
  letter-spacing: 1.5px;
}

.procurement_sec_2__intro {
  color: #555555;
}

.procurement_sec_2__card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-small);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.procurement_sec_2__card:hover {
  border-color: var(--theme-color-three);
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
}

.procurement_sec_2__icon-wrapper {
  width: 44px;
  height: 44px;
  background-color: rgba(35, 64, 143, 0.08);
  color: var(--theme-color-second);
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.procurement_sec_2__card:hover .procurement_sec_2__icon-wrapper {
  background-color: var(--theme-color-three);
  color: #ffffff;
}

.procurement_sec_2__card-title {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.procurement_sec_2__card-text {
  color: #666666;
}

.procurement_sec_2__btn {
  background-color: var(--theme-color-second);
  border-color: var(--theme-color-second);
  color: #ffffff;
  font-weight: 600;
  box-shadow: var(--shadow-base);
  transition: all 0.3s ease;
}

.procurement_sec_2__btn:hover {
  background-color: var(--theme-color-three);
  border-color: var(--theme-color-three);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}


/* Procurement Section 3 Styling scoped using root CSS variables */
.procurement_sec_3 {
  background: linear-gradient(180deg, #ffffff 0%, #eef2f7 100%);
  font-family: var(--paragraph-font);
  color: #333333;
}

.procurement_sec_3__heading,
.procurement_sec_3__card-title {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.procurement_sec_3__tagline {
  font-family: var(--span-font);
  background-color: rgba(201, 162, 74, 0.15);
  color: var(--theme-color-three);
  font-size: 0.875rem;
  letter-spacing: 1.5px;
  border: 1px solid rgba(201, 162, 74, 0.3);
}

.procurement_sec_3__intro {
  color: #555555;
}

.procurement_sec_3__card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-base);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.procurement_sec_3__card:hover {
  box-shadow: var(--shadow-large);
  border-color: var(--theme-color-three);
}

.procurement_sec_3__card-title {
  border-bottom-color: #f1f5f9 !important;
}

.procurement_sec_3__icon {
  color: var(--theme-color-second);
}

.procurement_sec_3__list span {
  font-size: 0.95rem;
  color: #444444;
}

.procurement_sec_3__btn {
  background-color: var(--theme-color-second);
  border-color: var(--theme-color-second);
  color: #ffffff;
  font-weight: 600;
  box-shadow: var(--shadow-base);
  transition: all 0.3s ease;
}

.procurement_sec_3__btn:hover {
  background-color: var(--theme-color-three);
  border-color: var(--theme-color-three);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

/* Procurement Section 4 Styling scoped using root CSS variables */
.procurement_sec_4 {
  background: #ffffff;
  font-family: var(--paragraph-font);
  color: #333333;
}

.procurement_sec_4__heading,
.procurement_sec_4__card-title {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.procurement_sec_4__tagline {
  font-family: var(--span-font);
  background-color: rgba(35, 64, 143, 0.1);
  color: var(--theme-color-second);
  font-size: 0.875rem;
  letter-spacing: 1.5px;
}

.procurement_sec_4__intro {
  color: #444444;
}

.procurement_sec_4__body {
  color: #666666;
}

.procurement_sec_4__card {
  background: linear-gradient(135deg, var(--theme-color) 0%, var(--theme-color-second) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-large);
}

.procurement_sec_4__card-title {
  color: #ffffff;
}

.procurement_sec_4__card-text {
  color: rgba(255, 255, 255, 0.85);
}

.procurement_sec_4__icon-box {
  width: 70px;
  height: 70px;
  background-color: rgba(201, 162, 74, 0.2);
  color: var(--theme-color-three);
  border: 1px solid rgba(201, 162, 74, 0.4);
}

.procurement_sec_4__check-icon {
  color: var(--theme-color-three);
  font-size: 1.25rem;
}


.procurement_sec_5 {
  background: linear-gradient(180deg, #ffffff 0%, #eef2f7 100%);
  font-family: var(--paragraph-font);
  color: #333333;
}

.procurement_sec_5__heading,
.procurement_sec_5__card-title {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.procurement_sec_5__tagline {
  font-family: var(--span-font);
  background-color: rgba(35, 64, 143, 0.1);
  color: var(--theme-color-second);
  font-size: 0.875rem;
  letter-spacing: 1.5px;
}

.procurement_sec_5__intro {
  color: #444444;
}

.procurement_sec_5__body {
  color: #666666;
}

.procurement_sec_5__card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-base);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.procurement_sec_5__card:hover {
  box-shadow: var(--shadow-large);
  border-color: var(--theme-color-three);
}

.procurement_sec_5__card-title {
  border-bottom-color: #f1f5f9 !important;
}

.procurement_sec_5__icon {
  color: var(--theme-color-second);
}

.procurement_sec_5__list span {
  font-size: 0.95rem;
  color: #444444;
}

.procurement_sec_5__note {
  background-color: rgba(201, 162, 74, 0.12);
  border: 1px dashed var(--theme-color-three);
  color: #333333;
}

.procurement_sec_5__note-icon {
  color: var(--theme-color-three);
}

/* Procurement Section 6 Styling scoped using root CSS variables */
.procurement_sec_6 {
  background: #ffffff;
  font-family: var(--paragraph-font);
  color: #333333;
}

.procurement_sec_6__heading,
.procurement_sec_6__card-title {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.procurement_sec_6__tagline {
  font-family: var(--span-font);
  background-color: rgba(35, 64, 143, 0.1);
  color: var(--theme-color-second);
  font-size: 0.875rem;
  letter-spacing: 1.5px;
}

.procurement_sec_6__intro {
  color: #555555;
}

.procurement_sec_6__card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-small);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.procurement_sec_6__card:hover {
  border-color: var(--theme-color-three);
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
}

.procurement_sec_6__card--highlight {
  border-color: rgba(201, 162, 74, 0.5);
  background: linear-gradient(180deg, #ffffff 0%, #faf8f3 100%);
}

.procurement_sec_6__icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: rgba(35, 64, 143, 0.08);
  color: var(--theme-color-second);
  transition: all 0.3s ease;
}

.procurement_sec_6__card:hover .procurement_sec_6__icon-wrapper {
  background-color: var(--theme-color-three);
  color: #ffffff;
}

.procurement_sec_6__card-text {
  color: #666666;
}

.procurement_sec_6__disclaimer {
  background-color: rgba(0, 0, 0, 0.04);
  color: #777777;
  font-size: 0.75rem;
}

/* Procurement Section 7 Styling scoped using root CSS variables */
.procurement_sec_7 {
  background: linear-gradient(180deg, #ffffff 0%, #eef2f7 100%);
  font-family: var(--paragraph-font);
  color: #333333;
}

.procurement_sec_7__heading {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.procurement_sec_7__subheading {
  color: var(--theme-color-second);
  letter-spacing: 0.5px;
}

.procurement_sec_7__tagline {
  font-family: var(--span-font);
  background-color: rgba(35, 64, 143, 0.1);
  color: var(--theme-color-second);
  font-size: 0.875rem;
  letter-spacing: 1.5px;
}

.procurement_sec_7__intro {
  color: #555555;
}

.procurement_sec_7__icon {
  color: var(--theme-color-three);
}

.procurement_sec_7__card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-base);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.procurement_sec_7__card:hover {
  box-shadow: var(--shadow-large);
  border-color: var(--theme-color-three);
}

.procurement_sec_7__card--alt {
  background: linear-gradient(135deg, var(--theme-color) 0%, var(--theme-color-second) 100%);
  border: none;
}

.procurement_sec_7__icon-box {
  width: 60px;
  height: 60px;
  background-color: rgba(201, 162, 74, 0.2);
  color: var(--theme-color-three);
  border: 1px solid rgba(201, 162, 74, 0.4);
}

.procurement_sec_7__btn {
  background-color: var(--theme-color-second);
  border-color: var(--theme-color-second);
  color: #ffffff;
  font-weight: 600;
  box-shadow: var(--shadow-base);
  transition: all 0.3s ease;
}

.procurement_sec_7__btn:hover {
  background-color: var(--theme-color-three);
  border-color: var(--theme-color-three);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

.procurement_sec_7__btn-alt {
  background-color: var(--theme-color-three);
  border-color: var(--theme-color-three);
  color: #ffffff;
  transition: all 0.3s ease;
}

.procurement_sec_7__btn-alt:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: var(--theme-color-second);
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

/* Container & Background */
.procurement-hero {
  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  padding: 7.5rem 0 5rem 0;
}

/* Typography & Headings */
.procurement-hero h1,
.procurement-hero h5,
.procurement-hero .display-5 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.procurement-hero p,
.procurement-hero span,
.procurement-hero a,
.procurement-hero li {
  font-family: var(--paragraph-font);
}

.procurement-hero .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.procurement-hero .text-secondary {
  color: #555555 !important;
}

.procurement-hero .leading-relaxed {
  line-height: 1.6;
}



.procurement-hero .comon-btn.btn-golden {
  background-color: var(--theme-color-three);
  color: #ffffff;
}

.procurement-hero .comon-btn.btn-golden:hover {
  background-color: #b38e3c;
  color: #ffffff;
}

/* Institutional Overview Card */
.procurement-hero .bg-white-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-large);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.procurement-hero .bg-white-card h5 {
  color: var(--theme-color-second);
  display: flex;
  align-items: center;
}

.procurement-hero .bg-white-card .text-primary {
  color: var(--theme-color-second) !important;
}

.procurement-hero .bg-white-card ul li {
  color: #444444;
}

.procurement-hero .bg-white-card .text-success {
  color: var(--theme-color-three) !important;
}

/* Container & Layout */
.procurement_sec_2 {
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.procurement_sec_2.sec-padding {
  padding: 0 0 5rem 0;
}


/* Typography & Headings */
.procurement_sec_2 h2,
.procurement_sec_2 h3 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.procurement_sec_2 p,
.procurement_sec_2 span {
  font-family: var(--paragraph-font);
}

.procurement_sec_2 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.procurement_sec_2 .text-secondary {
  color: #666666 !important;
}

/* Component Cards */
.procurement_sec_2 .component-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-small);
  height: 100%;
  transition: all 0.3s ease;
}

.procurement_sec_2 .component-card:hover {
  box-shadow: var(--shadow-base);
  border-color: var(--theme-color-second);
  transform: translateY(-2px);
}

/* Component Icons */
.procurement_sec_2 .component-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(35, 64, 143, 0.08);
  color: var(--theme-color-second);

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}


/* Section Base */
.procurement_sec_3 {
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  background-color: #ffffff;
}

.procurement_sec_3.sec-padding {
  padding: 5rem 0;
}

/* Typography */
.procurement_sec_3 h2 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.procurement_sec_3 p,
.procurement_sec_3 span,
.procurement_sec_3 td,
.procurement_sec_3 th {
  font-family: var(--paragraph-font);
}

.procurement_sec_3 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.procurement_sec_3 .text-secondary {
  color: #666666 !important;
}

/* Table Styling */
.procurement_sec_3 .table-container {
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-small);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.procurement_sec_3 .table {
  width: 100%;
  border-color: #e2e8f0;
}

.procurement_sec_3 .table thead th {
  background-color: #f8fafc;
  color: var(--theme-color);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1rem 1.25rem;
  border-bottom: 2px solid #e2e8f0;
}

.procurement_sec_3 .table tbody td {
  padding: 1rem 1.25rem;
  color: #444444;
  font-size: 0.9375rem;
}

.procurement_sec_3 .table tbody tr:hover {
  background-color: rgba(35, 64, 143, 0.02);
}

.procurement_sec_3 .fw-semibold {
  font-weight: 600;
  color: var(--theme-color);
}

/* Status Badges */
.procurement_sec_3 .status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35em 0.75em;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 50rem;
  line-height: 1;
}

.procurement_sec_3 .status-badge.confirmed {
  background-color: rgba(35, 64, 143, 0.1);
  color: var(--theme-color-second);
  border: 1px solid rgba(35, 64, 143, 0.2);
}

.procurement_sec_3 .status-badge.interim {
  background-color: rgba(201, 162, 74, 0.15);
  color: #8a6d27;
  border: 1px solid rgba(201, 162, 74, 0.3);
}

/* Container & Layout Base */
.procurement_sec_4 {
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.procurement_sec_4.sec-padding {
  padding: 5rem 0;
}

/* Typography */
.procurement_sec_4 h2,
.procurement_sec_4 h6 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.procurement_sec_4 p,
.procurement_sec_4 span,
.procurement_sec_4 a {
  font-family: var(--paragraph-font);
}

.procurement_sec_4 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.procurement_sec_4 .text-secondary {
  color: #666666 !important;
}



.procurement_sec_4 .comon-btn.btn-golden {
  background-color: var(--theme-color-three);
  color: #ffffff;
}

.procurement_sec_4 .comon-btn.btn-golden:hover {
  background-color: #b38e3c;
  color: #ffffff;
  box-shadow: var(--shadow-base);
}

/* Document Item List Cards */
.procurement_sec_4 .doc-item {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
}

.procurement_sec_4 .doc-item:last-child {
  margin-bottom: 0;
}

.procurement_sec_4 .doc-item:hover {
  border-color: var(--theme-color-second);
  box-shadow: var(--shadow-base);
  transform: translateX(4px);
}

.procurement_sec_4 .doc-item h6 {
  color: var(--theme-color);
}

/* Pill Action Buttons */
.procurement_sec_4 .btn-pill-custom {
  border-radius: 50rem;
  padding: 0.375rem 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.procurement_sec_4 .btn-outline-dark {
  border-color: #cbd5e1;
  color: var(--theme-color);
}

.procurement_sec_4 .btn-outline-dark:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: #ffffff;
}

.procurement_sec_4 .btn-outline-primary {
  border-color: var(--theme-color-second);
  color: var(--theme-color-second);
}

.procurement_sec_4 .btn-outline-primary:hover {
  background-color: var(--theme-color-second);
  border-color: var(--theme-color-second);
  color: #ffffff;
}


/* Container & Layout Base */
.procurement_sec_5 {
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  background-color: #f8fafc;
}

.procurement_sec_5.sec-padding {
  padding: 5rem 0;
}


/* Typography */
.procurement_sec_5 h2,
.procurement_sec_5 h5 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.procurement_sec_5 p,
.procurement_sec_5 span {
  font-family: var(--paragraph-font);
}

.procurement_sec_5 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.procurement_sec_5 .text-secondary {
  color: #666666 !important;
}

/* Step Card Styles */
.procurement_sec_5 .step-card {
  position: relative;
  background-color: #ffffff;
  padding: 2rem 1.75rem;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-small);
  height: 100%;
  transition: all 0.3s ease;
}

.procurement_sec_5 .step-card:hover {
  box-shadow: var(--shadow-base);
  border-color: var(--theme-color-second);
  transform: translateY(-3px);
}

.procurement_sec_5 .step-number {
  display: inline-block;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--theme-color-three);
  line-height: 1;
}

.procurement_sec_5 .step-card h5 {
  font-size: 1.125rem;
  color: var(--theme-color);
}


/* Container & Layout Base */
.procurement_sec_6 {
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.procurement_sec_6.sec-padding {
  padding: 5rem 0;
}

/* Form Container Card */
.procurement_sec_6 .form-box {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-large);
}

/* Typography */
.procurement_sec_6 h2 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.procurement_sec_6 p,
.procurement_sec_6 span,
.procurement_sec_6 label,
.procurement_sec_6 input,
.procurement_sec_6 select,
.procurement_sec_6 textarea,
.procurement_sec_6 button {
  font-family: var(--paragraph-font);
}

.procurement_sec_6 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.procurement_sec_6 .text-secondary {
  color: #666666 !important;
}

.procurement_sec_6 .form-label {
  color: var(--theme-color);
  margin-bottom: 0.375rem;
}

/* Form Controls */
.procurement_sec_6 .form-control,
.procurement_sec_6 .form-select {
  border: 1px solid #cbd5e1;

  padding: 0.625rem 0.875rem;
  font-size: 0.9375rem;
  color: #333333;
  background-color: #ffffff;
  box-shadow: var(--shadow-small);
  transition: all 0.2s ease-in-out;
}

.procurement_sec_6 .form-control:focus,
.procurement_sec_6 .form-select:focus {
  border-color: var(--theme-color-second);
  box-shadow: 0 0 0 0.2rem rgba(35, 64, 143, 0.15);
  outline: none;
}

.procurement_sec_6 .form-control::placeholder {
  color: #94a3b8;
}

.procurement_sec_6 .form-check-input:checked {
  background-color: var(--theme-color-second);
  border-color: var(--theme-color-second);
}

.procurement_sec_6 .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(35, 64, 143, 0.15);
  border-color: var(--theme-color-second);
}

/* Submit Button */
.procurement_sec_6 .comon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--theme-color-second);
  color: #ffffff;
  padding: 0.875rem 1.5rem;

  border: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: var(--shadow-small);
  cursor: pointer;
  transition: all 0.3s ease;
}

.procurement_sec_6 .comon-btn.btn-golden {
  background-color: var(--theme-color-three);
  color: #ffffff;
}

.procurement_sec_6 .comon-btn.btn-golden:hover {
  background-color: #b38e3c;
  color: #ffffff;
  box-shadow: var(--shadow-base);
}

/* Section Base & Layout */
.procurement_sec_7 {
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  background-color: #ffffff;
}

.procurement_sec_7.sec-padding {
  padding: 5rem 0;
}



/* Typography */
.procurement_sec_7 h2 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.procurement_sec_7 p,
.procurement_sec_7 span,
.procurement_sec_7 a,
.procurement_sec_7 button,
.procurement_sec_7 div {
  font-family: var(--paragraph-font);
}

.procurement_sec_7 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.procurement_sec_7 .text-secondary {
  color: #666666 !important;
}

/* Accordion Styles */
.procurement_sec_7 .accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-small);
}

.procurement_sec_7 .accordion-button {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--theme-color);
  background-color: #ffffff;
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  box-shadow: none;
}

.procurement_sec_7 .accordion-button:not(.collapsed) {
  color: var(--theme-color-second);
  background-color: rgba(35, 64, 143, 0.03);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

.procurement_sec_7 .accordion-button:focus {
  box-shadow: none;
  border-color: var(--theme-color-second);
}

.procurement_sec_7 .accordion-button::after {
  background-size: 1.125rem;
}

.procurement_sec_7 .accordion-body {
  padding: 1.25rem 1.5rem;
  color: #444444;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* CTA Box */
.procurement_sec_7 .cta-box {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-left: 5px solid var(--theme-color-second);
  border-radius: 0.75rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-large);
}


.procurement_sec_7 .comon-btn:hover {
  background-color: var(--theme-color);
  color: #ffffff;
  box-shadow: var(--shadow-base);
}

.procurement_sec_7 .comon-btn.btn-golden {
  background-color: var(--theme-color-three);
  color: #ffffff;
}

.procurement_sec_7 .comon-btn.btn-golden:hover {
  background-color: #b38e3c;
  color: #ffffff;
}

/* Container & Section Base */
.specs-hero {
  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  padding: 7.6rem 0 5rem 0;
}

/* Typography & Headings */
.specs-hero h1,
.specs-hero h5,
.specs-hero .display-5 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.specs-hero p,
.specs-hero span,
.specs-hero a,
.specs-hero li {
  font-family: var(--paragraph-font);
}

.specs-hero .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.specs-hero .text-secondary {
  color: #555555 !important;
}

.specs-hero .leading-relaxed {
  line-height: 1.6;
}

/* Action Buttons */


.specs-hero .comon-btn:hover {
  background-color: var(--theme-color);
  color: #ffffff;
  box-shadow: var(--shadow-base);
}

.specs-hero .comon-btn.btn-golden {
  background-color: var(--theme-color-three);
  color: #ffffff;
}

.specs-hero .comon-btn.btn-golden:hover {
  background-color: #b38e3c;
  color: #ffffff;
}

/* Feature Card */
.specs-hero .bg-white-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-large);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.specs-hero .bg-white-card h5 {
  color: var(--theme-color-second);
  display: flex;
  align-items: center;
}

.specs-hero .bg-white-card .text-primary {
  color: var(--theme-color-second) !important;
}

.specs-hero .bg-white-card ul li {
  color: #444444;
}

.specs-hero .bg-white-card .text-success {
  color: var(--theme-color-three) !important;
}


/* Container & Layout Base */
.tech_space_1 {
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.tech_space_1.sec-padding {
  padding: 5rem 0;
}



/* Typography & Headings */
.tech_space_1 h2,
.tech_space_1 h3 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.tech_space_1 p,
.tech_space_1 span {
  font-family: var(--paragraph-font);
}

.tech_space_1 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.tech_space_1 .text-secondary {
  color: #666666 !important;
}

/* Subsystem Cards */
.tech_space_1 .tech-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-small);
  height: 100%;
  transition: all 0.3s ease;
}

.tech_space_1 .tech-card:hover {
  box-shadow: var(--shadow-base);
  border-color: var(--theme-color-second);
  transform: translateY(-3px);
}

.tech_space_1 .tech-card h5 {
  color: var(--theme-color);
  font-size: 1rem;
}

/* Subsystem Icons */
.tech_space_1 .tech-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(35, 64, 143, 0.08);
  color: var(--theme-color-second);

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.tech_space_1 .tech-card:hover .tech-icon {
  background-color: var(--theme-color-second);
  color: #ffffff;
}

/* Container & Base Styles */
.tech_space_2 {
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.tech_space_2.sec-padding {
  padding: 5rem 0;
}

/* Typography */
.tech_space_2 h2 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.tech_space_2 p,
.tech_space_2 span,
.tech_space_2 td,
.tech_space_2 th {
  font-family: var(--paragraph-font);
}

.tech_space_2 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.tech_space_2 .text-secondary {
  color: #666666 !important;
}

/* Table Card Wrapper */
.tech_space_2 .table-container {
  background-color: #ffffff;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-small);
  overflow: hidden;
}

/* Table General Styling */
.tech_space_2 .table {
  border-color: #e2e8f0;
  font-size: 0.9375rem;
}

.tech_space_2 .table thead {
  background-color: var(--theme-color-second);
  color: #ffffff;
}

.tech_space_2 .table thead th {
  font-family: var(--heading-font);
  font-weight: 700;
  padding: 1rem 1.25rem;
  border-bottom: none;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
}

.tech_space_2 .table tbody td {
  padding: 1rem 1.25rem;
  color: #333333;
  border-color: #e2e8f0;
}

.tech_space_2 .table tbody td.bg-light {
  background-color: #f8fafc !important;
  color: var(--theme-color);
}

/* Status Badges */
.tech_space_2 .status-badge {
  display: inline-block;
  padding: 0.35em 0.75em;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 0.25rem;
  line-height: 1.2;
}

.tech_space_2 .status-badge.confirmed {
  background-color: rgba(35, 64, 143, 0.1);
  color: var(--theme-color-second);
  border: 1px solid rgba(35, 64, 143, 0.25);
}

.tech_space_2 .status-badge.interim {
  background-color: rgba(201, 162, 74, 0.15);
  color: #8c6a1e;
  border: 1px solid rgba(201, 162, 74, 0.3);
}

/* Section Base & Layout */
.tech_space_3 {
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.tech_space_3.sec-padding {
  padding: 5rem 0;
}

/* Typography */
.tech_space_3 h2,
.tech_space_3 h6 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.tech_space_3 p,
.tech_space_3 span,
.tech_space_3 a {
  font-family: var(--paragraph-font);
}

.tech_space_3 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.tech_space_3 .text-secondary {
  color: #666666 !important;
}

.tech_space_3 .text-muted {
  color: #718096 !important;
}



.tech_space_3 .comon-btn.btn-golden {
  background-color: var(--theme-color-three);
  color: #ffffff;
}

.tech_space_3 .comon-btn.btn-golden:hover {
  background-color: #b38e3c;
  color: #ffffff;
  box-shadow: var(--shadow-base);
}

/* Document Item Card */
.tech_space_3 .doc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
}

.tech_space_3 .doc-item:last-child {
  margin-bottom: 0;
}

.tech_space_3 .doc-item:hover {
  box-shadow: var(--shadow-base);
  border-color: rgba(35, 64, 143, 0.3);
  transform: translateX(4px);
}

/* Document Item Action Buttons */
.tech_space_3 .btn-pill-custom {
  border-radius: 50rem;
  padding: 0.375rem 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.tech_space_3 .btn-outline-dark {
  color: var(--theme-color);
  border-color: #cbd5e1;
}

.tech_space_3 .btn-outline-dark:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: #ffffff;
}

.tech_space_3 .btn-outline-primary {
  color: var(--theme-color-second);
  border-color: var(--theme-color-second);
}

.tech_space_3 .btn-outline-primary:hover {
  background-color: var(--theme-color-second);
  border-color: var(--theme-color-second);
  color: #ffffff;
}

/* Section Base & Layout */
.tech_space_4 {
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  background-color: #f8fafc;
}

.tech_space_4.sec-padding {
  padding: 5rem 0;
}

/* Typography */
.tech_space_4 h2 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.tech_space_4 p,
.tech_space_4 span,
.tech_space_4 label,
.tech_space_4 input,
.tech_space_4 select,
.tech_space_4 textarea,
.tech_space_4 button {
  font-family: var(--paragraph-font);
}

.tech_space_4 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.tech_space_4 .text-secondary {
  color: #666666 !important;
}

.tech_space_4 .text-muted {
  color: #718096 !important;
}

/* Form Container Card */
.tech_space_4 .form-box {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-base);
}

/* Form Controls Styling */
.tech_space_4 .form-label {
  color: var(--theme-color);
  margin-bottom: 0.375rem;
}

.tech_space_4 .form-control,
.tech_space_4 .form-select {
  border: 1px solid #cbd5e1;

  padding: 0.625rem 0.875rem;
  font-size: 0.9375rem;
  color: #333333;
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tech_space_4 .form-control:focus,
.tech_space_4 .form-select:focus {
  border-color: var(--theme-color-second);
  box-shadow: 0 0 0 3px rgba(35, 64, 143, 0.15);
  outline: none;
}

.tech_space_4 .form-control::placeholder {
  color: #94a3b8;
}

/* Checkbox Customization */
.tech_space_4 .form-check-input {
  border-color: #cbd5e1;
  cursor: pointer;
}

.tech_space_4 .form-check-input:checked {
  background-color: var(--theme-color-second);
  border-color: var(--theme-color-second);
}

.tech_space_4 .form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(35, 64, 143, 0.15);
}

.tech_space_4 .form-check-label {
  cursor: pointer;
}

/* Submit Button Styling */
.tech_space_4 .comon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--theme-color-second);
  color: #ffffff;
  padding: 0.875rem 1.5rem;

  border: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
  cursor: pointer;
}

.tech_space_4 .comon-btn.btn-golden {
  background-color: var(--theme-color-three);
  color: #ffffff;
}

.tech_space_4 .comon-btn.btn-golden:hover {
  background-color: #b38e3c;
  color: #ffffff;
  box-shadow: var(--shadow-base);
}

/* Responsive Padding */
@media (max-width: 767.98px) {
  .tech_space_4 .form-box {
    padding: 1.5rem;
  }
}


/* Section Base & Layout */
.tech_space_5 {
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.tech_space_5.sec-padding {
  padding: 5rem 0;
}



/* Typography */
.tech_space_5 h2 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.tech_space_5 p,
.tech_space_5 span,
.tech_space_5 button,
.tech_space_5 .accordion-body {
  font-family: var(--paragraph-font);
}

.tech_space_5 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.tech_space_5 .text-secondary {
  color: #666666 !important;
}

/* Accordion Container Styling */
.tech_space_5 .accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-small);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tech_space_5 .accordion-item:last-child {
  margin-bottom: 0;
}

.tech_space_5 .accordion-item:hover {
  border-color: rgba(35, 64, 143, 0.3);
}

/* Accordion Header & Button */
.tech_space_5 .accordion-button {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
  color: var(--theme-color);
  background-color: #ffffff;
  padding: 1.25rem 1.5rem;
  box-shadow: none !important;
}

.tech_space_5 .accordion-button:not(.collapsed) {
  color: var(--theme-color-second);
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.tech_space_5 .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

/* Accordion Chevron Icon Adjustments */
.tech_space_5 .accordion-button::after {
  background-size: 1.125rem;
  transition: transform 0.2s ease-in-out;
}

.tech_space_5 .accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(20%) sepia(51%) saturate(2311%) hue-rotate(211deg) brightness(96%) contrast(92%);
}

/* Accordion Body */
.tech_space_5 .accordion-body {
  padding: 1.25rem 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4a5568;
  background-color: #ffffff;
}

/* Section Base & Layout */
.tech_space_6 {
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.tech_space_6.sec-padding {
  padding-top: 2.5rem;
}

/* Call to Action Box */
.tech_space_6 .cta-box {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 5px solid var(--theme-color-second);
  border-radius: 0.5rem;
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-large);
}

/* Typography */
.tech_space_6 h2 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.tech_space_6 p,
.tech_space_6 span,
.tech_space_6 a {
  font-family: var(--paragraph-font);
}

.tech_space_6 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}

.tech_space_6 .text-secondary {
  color: #666666 !important;
}


.tech_space_6 .comon-btn:hover {
  background-color: var(--theme-color);
  color: #ffffff;
  box-shadow: var(--shadow-base);
}

.tech_space_6 .comon-btn.btn-golden {
  background-color: var(--theme-color-three);
  color: #ffffff;
}

.tech_space_6 .comon-btn.btn-golden:hover {
  background-color: #b38e3c;
  color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .tech_space_6 .cta-box {
    padding: 2rem;
  }

  .tech_space_6 .d-flex.flex-wrap {
    width: 100%;
  }

  .tech_space_6 .comon-btn {
    flex: 1 1 auto;
  }
}


/* Section Layout & Base Styles */
.doc_space_1 {
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  padding-top: 7.5rem;
  padding-bottom: 5rem;
  background-color: #f8fafc;
}

/* Typography */
.doc_space_1 h1,
.doc_space_1 h5 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.doc_space_1 p,
.doc_space_1 span,
.doc_space_1 a,
.doc_space_1 li {
  font-family: var(--paragraph-font);
}

.doc_space_1 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.doc_space_1 .text-secondary {
  color: #666666 !important;
}

.doc_space_1 .leading-relaxed {
  line-height: 1.65;
}

/* Buttons */
.doc_space_1 .comon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--theme-color-second);
  color: #ffffff;
  padding: 0.75rem 1.5rem;

  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
}

.doc_space_1 .comon-btn:hover {
  background-color: var(--theme-color);
  color: #ffffff;
  box-shadow: var(--shadow-base);
}

.doc_space_1 .comon-btn.btn-golden {
  background-color: var(--theme-color-three);
  color: #ffffff;
}

.doc_space_1 .comon-btn.btn-golden:hover {
  background-color: #b38e3c;
  color: #ffffff;
}

/* Document Category Card */
.doc_space_1 .bg-white-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: var(--shadow-base);
}

.doc_space_1 .bg-white-card i.text-primary {
  color: var(--theme-color-second) !important;
}

.doc_space_1 .bg-white-card ul li {
  color: #4a5568;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .doc_space_1 {
    padding-top: 5rem;
  }
}


/* Section Base & Layout */
.doc_space_2 {
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.doc_space_2.sec-padding {
  padding: 5rem 0;
}


/* Typography */
.doc_space_2 h2,
.doc_space_2 h3 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.doc_space_2 p,
.doc_space_2 span {
  font-family: var(--paragraph-font);
}

.doc_space_2 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.doc_space_2 .text-secondary {
  color: #666666 !important;
}

/* Resource Card Custom Styling */
.doc_space_2 .resource-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  height: 100%;
  box-shadow: var(--shadow-small);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.doc_space_2 .resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-base);
  border-color: rgba(35, 64, 143, 0.3);
}

.doc_space_2 .resource-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.5rem;
  background-color: rgba(35, 64, 143, 0.08);
  color: var(--theme-color-second);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.doc_space_2 .resource-card:hover .resource-icon {
  background-color: var(--theme-color-second);
  color: #ffffff;
}

/* Section Base Layout */
.doc_space_3 {
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  background-color: #f8fafc;
}

.doc_space_3.sec-padding {
  padding: 5rem 0;
}

/* Typography */
.doc_space_3 h2,
.doc_space_3 h6 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.doc_space_3 p,
.doc_space_3 span,
.doc_space_3 a {
  font-family: var(--paragraph-font);
}

.doc_space_3 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.doc_space_3 .text-secondary {
  color: #666666 !important;
  font-size: 0.875rem;
}

.doc_space_3 .text-muted {
  color: #718096 !important;
  font-size: 0.875rem;
}

/* Document Item Card */
.doc_space_3 .doc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
}

.doc_space_3 .doc-item:last-child {
  margin-bottom: 0;
}

.doc_space_3 .doc-item:hover {
  box-shadow: var(--shadow-base);
  border-color: rgba(35, 64, 143, 0.3);
  transform: translateX(4px);
}

/* Status Tags / Badges */
.doc_space_3 .doc-tag {
  display: inline-block;
  padding: 0.2em 0.6em;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.25rem;
  line-height: 1;
}

.doc_space_3 .doc-tag.public {
  background-color: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.doc_space_3 .doc-tag.restricted {
  background-color: rgba(234, 179, 8, 0.12);
  color: #b45309;
  border: 1px solid rgba(234, 179, 8, 0.25);
}

/* Action Buttons */
.doc_space_3 .btn-pill-custom {
  border-radius: 50rem;
  padding: 0.375rem 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.doc_space_3 .btn-outline-dark {
  color: var(--theme-color);
  border-color: #cbd5e1;
}

.doc_space_3 .btn-outline-dark:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: #ffffff;
}

.doc_space_3 .btn-outline-primary {
  color: var(--theme-color-second);
  border-color: var(--theme-color-second);
}

.doc_space_3 .btn-outline-primary:hover {
  background-color: var(--theme-color-second);
  border-color: var(--theme-color-second);
  color: #ffffff;
}

/* Responsive Handling */
@media (max-width: 575.98px) {
  .doc_space_3 .doc-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .doc_space_3 .btn-pill-custom {
    align-self: flex-end;
  }
}


/* Section Base & Layout */
.doc_space_4 {
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.doc_space_4.sec-padding {
  padding: 5rem 0;
}

/* Form Container Box */
.doc_space_4 .form-box {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-base);
}

/* Typography */
.doc_space_4 h2 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.doc_space_4 p,
.doc_space_4 span,
.doc_space_4 label,
.doc_space_4 input,
.doc_space_4 textarea,
.doc_space_4 button {
  font-family: var(--paragraph-font);
}

.doc_space_4 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.doc_space_4 .text-secondary {
  color: #666666 !important;
  font-size: 0.875rem;
}

.doc_space_4 .text-muted {
  color: #718096 !important;
  font-size: 0.875rem;
}

/* Form Elements */
.doc_space_4 .form-label {
  color: var(--theme-color);
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}

.doc_space_4 .form-control {
  border: 1px solid #cbd5e1;
  border-radius: 0.375rem;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  color: #333333;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.doc_space_4 .form-control:focus {
  border-color: var(--theme-color-second);
  box-shadow: 0 0 0 3px rgba(35, 64, 143, 0.15);
  outline: none;
}

.doc_space_4 .form-control::placeholder {
  color: #94a3b8;
}

.doc_space_4 .form-check-input {
  border-color: #cbd5e1;
  cursor: pointer;
}

.doc_space_4 .form-check-input:checked {
  background-color: var(--theme-color-second);
  border-color: var(--theme-color-second);
}

.doc_space_4 .form-check-label {
  cursor: pointer;
  line-height: 1.4;
}

/* Button Styling */
.doc_space_4 .comon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--theme-color-second);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  border: none;
  font-weight: 600;
  font-size: 0.9375rem;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
  cursor: pointer;
}

.doc_space_4 .comon-btn.btn-golden {
  background-color: var(--theme-color-three);
  color: #ffffff;
}

.doc_space_4 .comon-btn.btn-golden:hover {
  background-color: #b38e3c;
  box-shadow: var(--shadow-base);
}

/* Responsive Adjustments */
@media (max-width: 575.98px) {
  .doc_space_4 .form-box {
    padding: 1.5rem;
  }
}

/* ==========================================
   Section 5: Documentation FAQ (.doc_space_5)
   ========================================== */
.doc_space_5 {
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  background-color: #f8fafc;
}

.doc_space_5.sec-padding {
  padding: 5rem 0;
}


/* Typography */
.doc_space_5 h2 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.doc_space_5 p,
.doc_space_5 span,
.doc_space_5 button,
.doc_space_5 .accordion-body {
  font-family: var(--paragraph-font);
}

.doc_space_5 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.doc_space_5 .text-secondary {
  color: #666666 !important;
  font-size: 0.875rem;
}

/* Accordion Styling */
.doc_space_5 .accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem !important;
  margin-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: var(--shadow-small);
}

.doc_space_5 .accordion-item:last-child {
  margin-bottom: 0;
}

.doc_space_5 .accordion-button {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--theme-color);
  background-color: #ffffff;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  box-shadow: none;
  transition: all 0.2s ease;
}

.doc_space_5 .accordion-button:not(.collapsed) {
  color: var(--theme-color-second);
  background-color: rgba(35, 64, 143, 0.04);
}

.doc_space_5 .accordion-button:focus {
  border-color: rgba(35, 64, 143, 0.25);
  box-shadow: none;
}

.doc_space_5 .accordion-body {
  padding: 1.25rem 1.5rem;
  color: #4a5568;
  font-size: 0.9375rem;
  line-height: 1.6;
  background-color: #ffffff;
  border-top: 1px solid #f1f5f9;
}


/* ==========================================
   Section 6: CTA Banner (.doc_space_6)
   ========================================== */
.doc_space_6 {
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.doc_space_6.sec-padding {
  padding-top: 5rem;
}

.doc_space_6.pb-5 {
  padding-bottom: 3rem;
}

/* CTA Card Box */
.doc_space_6 .cta-box {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-base);
}

/* Typography */
.doc_space_6 h2 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.doc_space_6 p,
.doc_space_6 span,
.doc_space_6 a {
  font-family: var(--paragraph-font);
}

.doc_space_6 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.doc_space_6 .text-secondary {
  color: #666666 !important;
  font-size: 0.875rem;
}



.doc_space_6 .comon-btn:hover {
  background-color: var(--theme-color);
  color: #ffffff;
  box-shadow: var(--shadow-base);
}

.doc_space_6 .comon-btn.btn-golden {
  background-color: var(--theme-color-three);
  color: #ffffff;
}

.doc_space_6 .comon-btn.btn-golden:hover {
  background-color: #b38e3c;
  color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .doc_space_6 .cta-box {
    padding: 2rem 1.5rem;
  }
}


/* Section Layout & Base Styles */
.funding_space_1 {
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  padding-top: 7.5rem;
  padding-bottom: 5rem;
  background-color: #f8fafc;
}

/* Typography */
.funding_space_1 h1,
.funding_space_1 h5 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.funding_space_1 p,
.funding_space_1 span,
.funding_space_1 a,
.funding_space_1 li {
  font-family: var(--paragraph-font);
}

.funding_space_1 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.funding_space_1 .text-secondary {
  color: #666666 !important;
  font-size: 0.875rem;
}

.funding_space_1 .leading-relaxed {
  line-height: 1.65;
  font-size: 1rem;
}

/* Buttons */
.funding_space_1 .comon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--theme-color-second);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 50rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
}

.funding_space_1 .comon-btn:hover {
  background-color: var(--theme-color);
  color: #ffffff;
  box-shadow: var(--shadow-base);
}

.funding_space_1 .comon-btn.btn-golden {
  background-color: var(--theme-color-three);
  color: #ffffff;
}

.funding_space_1 .comon-btn.btn-golden:hover {
  background-color: #b38e3c;
  color: #ffffff;
}

/* Institutional Value Card */
.funding_space_1 .bg-white-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: var(--shadow-base);
}

.funding_space_1 .bg-white-card i.text-primary {
  color: var(--theme-color-second) !important;
}

.funding_space_1 .bg-white-card ul li {
  color: #4a5568;
  font-size: 0.875rem;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .funding_space_1 {
    padding-top: 5rem;
  }
}


/* Section Base Layout */
.funding_space_2 {
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.funding_space_2.sec-padding {
  padding: 5rem 0;
}


/* Typography */
.funding_space_2 h2,
.funding_space_2 h3 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.funding_space_2 p,
.funding_space_2 span {
  font-family: var(--paragraph-font);
}

.funding_space_2 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.funding_space_2 .text-secondary {
  color: #666666 !important;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Cards & Icons */
.funding_space_2 .funding-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-small);
  height: 100%;
  transition: all 0.3s ease;
}

.funding_space_2 .funding-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-base);
  border-color: rgba(35, 64, 143, 0.3);
}

.funding_space_2 .funding-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: rgba(35, 64, 143, 0.08);
  color: var(--theme-color-second);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.funding_space_2 .funding-card:hover .funding-icon {
  background-color: var(--theme-color-second);
  color: #ffffff;
}

/* Section Base Layout */
.funding_space_3 {
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  background-color: #f8fafc;
}

.funding_space_3.sec-padding {
  padding: 5rem 0;
}

/* Typography */
.funding_space_3 h2 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.funding_space_3 p,
.funding_space_3 span,
.funding_space_3 th,
.funding_space_3 td {
  font-family: var(--paragraph-font);
}

.funding_space_3 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.funding_space_3 .text-secondary {
  color: #666666 !important;
  font-size: 0.875rem;
}

/* Table Styling */
.funding_space_3 .table-container {
  background-color: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-small);
  overflow: hidden;
}

.funding_space_3 .table {
  border-color: #e2e8f0;
}

.funding_space_3 .table thead {
  background-color: rgba(35, 64, 143, 0.04);
}

.funding_space_3 .table th {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 1rem 1.25rem;
  border-bottom: 2px solid #e2e8f0;
}

.funding_space_3 .table td {
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: #4a5568;
}

.funding_space_3 .table tbody tr:hover {
  background-color: rgba(248, 250, 252, 0.75);
}

/* Status Badges */
.funding_space_3 .status-badge {
  display: inline-block;
  padding: 0.35em 0.75em;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.25rem;
  line-height: 1;
  text-align: center;
}

.funding_space_3 .status-badge.eligible {
  background-color: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.funding_space_3 .status-badge.review {
  background-color: rgba(234, 179, 8, 0.12);
  color: #b45309;
  border: 1px solid rgba(234, 179, 8, 0.25);
}

/* Responsive Table Buffer */
@media (max-width: 767.98px) {
  .funding_space_3 .table-responsive {
    border: 0;
  }
}


/* Section Base Layout */
.funding_space_4 {
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.funding_space_4.sec-padding {
  padding: 5rem 0;
}


/* Typography */
.funding_space_4 h2,
.funding_space_4 h3 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.funding_space_4 p,
.funding_space_4 span {
  font-family: var(--paragraph-font);
}

.funding_space_4 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.funding_space_4 .text-secondary {
  color: #666666 !important;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Step Cards */
.funding_space_4 .step-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-small);
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.funding_space_4 .step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-base);
  border-color: rgba(35, 64, 143, 0.3);
}

.funding_space_4 .step-number {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--theme-color-second);
  line-height: 1;
  background-color: rgba(35, 64, 143, 0.08);
  padding: 0.35rem 0.65rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.funding_space_4 .step-card:hover .step-number {
  background-color: var(--theme-color-second);
  color: #ffffff;
}

/* Section Base & Layout */
.funding_space_5 {
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  background-color: #ffffff;
}

.funding_space_5.sec-padding {
  padding: 5rem 0;
}

/* Form Container Box */
.funding_space_5 .form-box {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-base);
}

/* Typography */
.funding_space_5 h2 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.funding_space_5 p,
.funding_space_5 span,
.funding_space_5 label,
.funding_space_5 input,
.funding_space_5 select,
.funding_space_5 textarea,
.funding_space_5 button {
  font-family: var(--paragraph-font);
}

.funding_space_5 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.funding_space_5 .text-secondary {
  color: #666666 !important;
  font-size: 0.875rem;
}

.funding_space_5 .text-muted {
  color: #718096 !important;
  font-size: 0.875rem;
}

/* Form Controls */
.funding_space_5 .form-label {
  color: var(--theme-color);
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}

.funding_space_5 .form-control,
.funding_space_5 .form-select {
  border: 1px solid #cbd5e1;
  border-radius: 0.375rem;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  color: #333333;
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.funding_space_5 .form-control:focus,
.funding_space_5 .form-select:focus {
  border-color: var(--theme-color-second);
  box-shadow: 0 0 0 3px rgba(35, 64, 143, 0.15);
  outline: none;
}

.funding_space_5 .form-control::placeholder {
  color: #94a3b8;
}

.funding_space_5 .form-check-input {
  border-color: #cbd5e1;
  cursor: pointer;
}

.funding_space_5 .form-check-input:checked {
  background-color: var(--theme-color-second);
  border-color: var(--theme-color-second);
}

.funding_space_5 .form-check-label {
  cursor: pointer;
  line-height: 1.4;
}

/* Button Styling */
.funding_space_5 .comon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--theme-color-second);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 50rem;
  border: none;
  font-weight: 600;
  font-size: 0.9375rem;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
  cursor: pointer;
}

.funding_space_5 .comon-btn.btn-golden {
  background-color: var(--theme-color-three);
  color: #ffffff;
}

.funding_space_5 .comon-btn.btn-golden:hover {
  background-color: #b38e3c;
  color: #ffffff;
  box-shadow: var(--shadow-base);
}

/* Responsive Adjustments */
@media (max-width: 575.98px) {
  .funding_space_5 .form-box {
    padding: 1.5rem;
  }
}

/* Section Base Layout */
.funding_space_6 {
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.funding_space_6.sec-padding {
  padding: 5rem 0;
}


/* Typography */
.funding_space_6 h2 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.funding_space_6 p,
.funding_space_6 span,
.funding_space_6 .accordion-button,
.funding_space_6 .accordion-body {
  font-family: var(--paragraph-font);
}

.funding_space_6 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.funding_space_6 .text-secondary {
  color: #666666 !important;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Accordion Component */
.funding_space_6 .accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.funding_space_6 .accordion-item {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem !important;
  overflow: hidden;
  box-shadow: var(--shadow-small);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.funding_space_6 .accordion-item:hover {
  border-color: rgba(35, 64, 143, 0.3);
}

.funding_space_6 .accordion-button {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
  color: var(--theme-color);
  background-color: #ffffff;
  padding: 1.25rem 1.5rem;
  box-shadow: none;
  transition: all 0.3s ease;
}

.funding_space_6 .accordion-button:not(.collapsed) {
  color: var(--theme-color-second);
  background-color: rgba(35, 64, 143, 0.04);
  box-shadow: inset 0 -1px 0 #e2e8f0;
}

.funding_space_6 .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(35, 64, 143, 0.125);
}

.funding_space_6 .accordion-button::after {
  background-size: 1.125rem;
  transition: transform 0.3s ease;
}

.funding_space_6 .accordion-body {
  padding: 1.25rem 1.5rem;
  font-size: 0.9375rem;
  color: #4a5568;
  line-height: 1.65;
  background-color: #ffffff;
}

/* Section Base & Layout */
.funding_space_7 {
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.funding_space_7.sec-padding {
  padding-top: 5rem;
}

/* CTA Container Box */
.funding_space_7 .cta-box {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-base);
  position: relative;
  overflow: hidden;
}

.funding_space_7 .cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: var(--theme-color-second);
}

/* Typography */
.funding_space_7 h2 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.funding_space_7 p,
.funding_space_7 span,
.funding_space_7 a {
  font-family: var(--paragraph-font);
}

.funding_space_7 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.funding_space_7 .text-secondary {
  color: #666666 !important;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Buttons Styling */
.funding_space_7 .comon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--theme-color-second);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 50rem;
  border: 1px solid var(--theme-color-second);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.funding_space_7 .comon-btn:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

.funding_space_7 .comon-btn.btn-golden {
  background-color: var(--theme-color-three);
  border-color: var(--theme-color-three);
  color: #ffffff;
}

.funding_space_7 .comon-btn.btn-golden:hover {
  background-color: #b38e3c;
  border-color: #b38e3c;
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .funding_space_7 .cta-box {
    padding: 2.25rem 1.75rem;
    text-align: center;
  }

  .funding_space_7 .cta-box::before {
    width: 100%;
    height: 6px;
  }

  .funding_space_7 .d-flex.flex-wrap {
    justify-content: center;
    width: 100%;
  }

  .funding_space_7 .comon-btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Section Base & Layout */
.loi_space_1 {
  font-family: 'Jost', var(--paragraph-font), sans-serif;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  padding: 7.8rem 0 5rem 0;
  background-color: #f8fafc;
}

/* Typography */
.loi_space_1 h1,
.loi_space_1 h5 {
  font-family: 'Jost', var(--heading-font), sans-serif;
  color: var(--theme-color);
  font-weight: 700;
}

.loi_space_1 h1.display-5 {
  font-size: 2.5rem;
  line-height: 1.2;
}

.loi_space_1 p,
.loi_space_1 span,
.loi_space_1 li,
.loi_space_1 a {
  font-family: 'Jost', var(--paragraph-font), sans-serif;
}

.loi_space_1 .eyebrow {
  display: inline-block;
  font-family: 'Jost', var(--span-font), sans-serif;
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.loi_space_1 .text-secondary {
  color: #666666 !important;
}

.loi_space_1 .leading-relaxed {
  line-height: 1.65;
  font-size: 1.05rem;
}

/* Card Styling */
.loi_space_1 .bg-white-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2.25rem;
  box-shadow: var(--shadow-base);
}

.loi_space_1 .text-primary {
  color: var(--theme-color-second) !important;
}

.loi_space_1 .text-success {
  color: #10b981 !important;
  font-size: 1.1rem;
}

.loi_space_1 ul li {
  color: #475569;
  font-size: 0.9375rem;
}

/* Buttons Styling */
.loi_space_1 .comon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--theme-color-second);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 50rem;
  border: 1px solid var(--theme-color-second);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.loi_space_1 .comon-btn:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

.loi_space_1 .comon-btn.btn-golden {
  background-color: var(--theme-color-three);
  border-color: var(--theme-color-three);
  color: #ffffff;
}

.loi_space_1 .comon-btn.btn-golden:hover {
  background-color: #b38e3c;
  border-color: #b38e3c;
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .loi_space_1 {
    padding: 3.5rem 0;
  }

  .loi_space_1 h1.display-5 {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .loi_space_1 .bg-white-card {
    padding: 1.5rem;
  }

  .loi_space_1 .comon-btn {
    width: 100%;
  }
}

/* Section Base Layout */
.loi_space_2 {
  font-family: 'Jost', var(--paragraph-font), sans-serif;
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.loi_space_2.sec-padding {
  padding: 5rem 0;
}


/* Typography */
.loi_space_2 h2,
.loi_space_2 h3 {
  font-family: 'Jost', var(--heading-font), sans-serif;
  color: var(--theme-color);
  font-weight: 700;
}

.loi_space_2 h3.h6 {
  font-size: 1.125rem;
  line-height: 1.4;
}

.loi_space_2 p,
.loi_space_2 span {
  font-family: 'Jost', var(--paragraph-font), sans-serif;
}

.loi_space_2 .eyebrow {
  display: inline-block;
  font-family: 'Jost', var(--span-font), sans-serif;
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.loi_space_2 .text-secondary {
  color: #666666 !important;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Card Styling */
.loi_space_2 .loi-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.875rem;
  padding: 2rem 1.75rem;
  height: 100%;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
}

.loi_space_2 .loi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(35, 64, 143, 0.25);
  box-shadow: var(--shadow-base);
}

/* Icon Container */
.loi_space_2 .loi-icon {
  width: 52px;
  height: 52px;
  border-radius: 0.625rem;
  background-color: rgba(35, 64, 143, 0.08);
  color: var(--theme-color-second);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.loi_space_2 .loi-card:hover .loi-icon {
  background-color: var(--theme-color-second);
  color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .loi_space_2.sec-padding {
    padding: 3.5rem 0;
  }
}

@media (max-width: 575.98px) {
  .loi_space_2 .loi-card {
    padding: 1.5rem;
  }
}


/* Section Base Layout */
.loi_space_3 {
  font-family: 'Jost', var(--paragraph-font), sans-serif;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  background-color: #f8fafc;
}

.loi_space_3.sec-padding {
  padding: 5rem 0;
}


/* Typography */
.loi_space_3 h2,
.loi_space_3 h3 {
  font-family: 'Jost', var(--heading-font), sans-serif;
  color: var(--theme-color);
  font-weight: 700;
}

.loi_space_3 h3.h6 {
  font-size: 1.125rem;
  line-height: 1.4;
}

.loi_space_3 p,
.loi_space_3 span {
  font-family: 'Jost', var(--paragraph-font), sans-serif;
}

.loi_space_3 .eyebrow {
  display: inline-block;
  font-family: 'Jost', var(--span-font), sans-serif;
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.loi_space_3 .text-secondary {
  color: #666666 !important;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Process Card Styling */
.loi_space_3 .process-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.875rem;
  padding: 2rem 1.5rem;
  height: 100%;
  position: relative;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
}

.loi_space_3 .process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(35, 64, 143, 0.25);
  box-shadow: var(--shadow-base);
}

/* Process Numbering */
.loi_space_3 .process-number {
  display: inline-block;
  font-family: 'Jost', var(--heading-font), sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--theme-color-second);
  line-height: 1;
  opacity: 0.85;
}

.loi_space_3 .process-card:hover .process-number {
  color: var(--theme-color-three);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .loi_space_3.sec-padding {
    padding: 3.5rem 0;
  }
}

@media (max-width: 575.98px) {
  .loi_space_3 .process-card {
    padding: 1.5rem;
  }
}

/* Section Base Layout */
.loi_space_4 {
  font-family: 'Jost', var(--paragraph-font), sans-serif;
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.loi_space_4.sec-padding {
  padding: 5rem 0;
}

/* Typography */
.loi_space_4 h2 {
  font-family: 'Jost', var(--heading-font), sans-serif;
  color: var(--theme-color);
  font-weight: 700;
}

.loi_space_4 p,
.loi_space_4 label,
.loi_space_4 span,
.loi_space_4 input,
.loi_space_4 select,
.loi_space_4 textarea,
.loi_space_4 button {
  font-family: 'Jost', var(--paragraph-font), sans-serif;
}

.loi_space_4 .eyebrow {
  display: inline-block;
  font-family: 'Jost', var(--span-font), sans-serif;
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.loi_space_4 .text-secondary {
  color: #666666 !important;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Form Container Box */
.loi_space_4 .form-box {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: var(--shadow-base);
}

/* Form Controls */
.loi_space_4 .form-label {
  color: #1e293b;
  margin-bottom: 0.375rem;
}

.loi_space_4 .form-control,
.loi_space_4 .form-select {
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: #333333;
  background-color: #f8fafc;
  transition: all 0.2s ease-in-out;
}

.loi_space_4 .form-control:focus,
.loi_space_4 .form-select:focus {
  background-color: #ffffff;
  border-color: var(--theme-color-second);
  box-shadow: 0 0 0 0.2rem rgba(35, 64, 143, 0.15);
  outline: none;
}

.loi_space_4 .form-control::placeholder {
  color: #94a3b8;
}

.loi_space_4 .form-check-input {
  border-color: #cbd5e1;
  cursor: pointer;
}

.loi_space_4 .form-check-input:checked {
  background-color: var(--theme-color-second);
  border-color: var(--theme-color-second);
}

.loi_space_4 .form-check-label {
  cursor: pointer;
  line-height: 1.4;
}

/* Button Styling */
.loi_space_4 .comon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--theme-color-three);
  color: #ffffff;
  padding: 0.875rem 1.5rem;
  border-radius: 50rem;
  border: 1px solid var(--theme-color-three);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
  cursor: pointer;
}

.loi_space_4 .comon-btn:hover {
  background-color: #b38e3c;
  border-color: #b38e3c;
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .loi_space_4.sec-padding {
    padding: 3.5rem 0;
  }
}

@media (max-width: 575.98px) {
  .loi_space_4 .form-box {
    padding: 1.5rem;
  }
}

/* Section Base Layout */
.loi_space_5 {
  font-family: 'Jost', var(--paragraph-font), sans-serif;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  background-color: #f8fafc;
}

.loi_space_5.sec-padding {
  padding: 5rem 0;
}

/* Typography */
.loi_space_5 h2,
.loi_space_5 h3 {
  font-family: 'Jost', var(--heading-font), sans-serif;
  color: var(--theme-color);
  font-weight: 700;
}

.loi_space_5 p,
.loi_space_5 span,
.loi_space_5 button,
.loi_space_5 .accordion-body {
  font-family: 'Jost', var(--paragraph-font), sans-serif;
}

.loi_space_5 .eyebrow {
  display: inline-block;
  font-family: 'Jost', var(--span-font), sans-serif;
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.loi_space_5 .text-secondary {
  color: #666666 !important;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Accordion Component Styling */
.loi_space_5 .accordion-item {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.875rem !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
}

.loi_space_5 .accordion-item:last-child {
  margin-bottom: 0;
}

.loi_space_5 .accordion-item:hover {
  border-color: rgba(35, 64, 143, 0.25);
  box-shadow: var(--shadow-base);
}

.loi_space_5 .accordion-header {
  margin-bottom: 0;
}

.loi_space_5 .accordion-button {
  font-family: 'Jost', var(--heading-font), sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--theme-color);
  background-color: #ffffff;
  padding: 1.25rem 1.5rem;
  border: none;
  box-shadow: none;
  transition: all 0.2s ease-in-out;
}

.loi_space_5 .accordion-button:not(.collapsed) {
  color: var(--theme-color-second);
  background-color: #ffffff;
  box-shadow: none;
}

.loi_space_5 .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.loi_space_5 .accordion-button::after {
  background-size: 1.125rem;
  transition: transform 0.2s ease-in-out;
}

.loi_space_5 .accordion-body {
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.65;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .loi_space_5.sec-padding {
    padding: 3.5rem 0;
  }
}

@media (max-width: 575.98px) {
  .loi_space_5 .accordion-button {
    font-size: 0.975rem;
    padding: 1rem 1.25rem;
  }

  .loi_space_5 .accordion-body {
    padding: 0 1.25rem 1rem 1.25rem;
    font-size: 0.875rem;
  }
}


/* Section Base Layout */
.loi_space_6 {
  font-family: 'Jost', var(--paragraph-font), sans-serif;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  background-color: #ffffff;
}

.loi_space_6.sec-padding {
  padding: 5rem 0;
}

.loi_space_6.pb-5 {
  padding-bottom: 3rem !important;
}

/* Typography */
.loi_space_6 h2 {
  font-family: 'Jost', var(--heading-font), sans-serif;
  color: var(--theme-color);
  font-weight: 700;
}

.loi_space_6 p,
.loi_space_6 span,
.loi_space_6 a {
  font-family: 'Jost', var(--paragraph-font), sans-serif;
}

.loi_space_6 .eyebrow {
  display: inline-block;
  font-family: 'Jost', var(--span-font), sans-serif;
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.loi_space_6 .text-secondary {
  color: #666666 !important;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* CTA Box Container */
.loi_space_6 .cta-box {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
}

.loi_space_6 .cta-box:hover {
  border-color: rgba(35, 64, 143, 0.25);
  box-shadow: var(--shadow-base);
}

/* Button Styling */
.loi_space_6 .comon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--theme-color-second);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 50rem;
  border: 1px solid var(--theme-color-second);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.loi_space_6 .comon-btn:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

.loi_space_6 .comon-btn.btn-golden {
  background-color: var(--theme-color-three);
  border-color: var(--theme-color-three);
  color: #ffffff;
}

.loi_space_6 .comon-btn.btn-golden:hover {
  background-color: #b38e3c;
  border-color: #b38e3c;
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .loi_space_6.sec-padding {
    padding: 3.5rem 0;
  }
}

@media (max-width: 575.98px) {
  .loi_space_6 .cta-box {
    padding: 1.5rem;
    text-align: center;
  }

  .loi_space_6 .cta-box .d-flex.gap-3 {
    width: 100%;
    flex-direction: column;
  }

  .loi_space_6 .comon-btn {
    width: 100%;
  }
}

/* Section Base Layout */
.loi_space_8 {
  font-family: 'Jost', var(--paragraph-font), sans-serif;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  background-color: #f8fafc;

}

.loi_space_8.sec-padding {
  padding: 5rem 0;
  padding-top: 7.8rem;
}

/* Typography */
.loi_space_8 h1.display-5 {
  font-family: 'Jost', var(--heading-font), sans-serif;
  color: var(--theme-color);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
}

.loi_space_8 h2.h5 {
  font-family: 'Jost', var(--heading-font), sans-serif;
  color: var(--theme-color);
  font-weight: 600;
  font-size: 1.25rem;
}

.loi_space_8 p,
.loi_space_8 span,
.loi_space_8 li,
.loi_space_8 a {
  font-family: 'Jost', var(--paragraph-font), sans-serif;
}

.loi_space_8 .eyebrow {
  display: inline-block;
  font-family: 'Jost', var(--span-font), sans-serif;
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.loi_space_8 .text-secondary {
  color: #666666 !important;
  font-size: 1rem;
}

.loi_space_8 .leading-relaxed {
  line-height: 1.65;
}

.loi_space_8 .small {
  font-size: 0.875rem;
}

/* Base Card */
.loi_space_8 .bg-white-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2.25rem;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
}

.loi_space_8 .bg-white-card:hover {
  border-color: rgba(35, 64, 143, 0.25);
  box-shadow: var(--shadow-base);
}

/* List Items & Icons */
.loi_space_8 .text-primary {
  color: var(--theme-color-second) !important;
}

.loi_space_8 .text-success {
  color: #10b981 !important;
  font-size: 1.125rem;
}

.loi_space_8 ul li {
  color: #475569;
}

/* Button Styling */
.loi_space_8 .comon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--theme-color-second);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 50rem;
  border: 1px solid var(--theme-color-second);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.loi_space_8 .comon-btn:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

.loi_space_8 .comon-btn.btn-golden {
  background-color: var(--theme-color-three);
  border-color: var(--theme-color-three);
  color: #ffffff;
}

.loi_space_8 .comon-btn.btn-golden:hover {
  background-color: #b38e3c;
  border-color: #b38e3c;
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .loi_space_8.sec-padding {
    padding: 3.5rem 0;
  }

  .loi_space_8 h1.display-5 {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .loi_space_8 .bg-white-card {
    padding: 1.5rem;
  }

  .loi_space_8 .d-flex.gap-3 {
    width: 100%;
    flex-direction: column;
  }

  .loi_space_8 .comon-btn {
    width: 100%;
  }
}


/* Section Base Layout */
.loi_space_9 {
  font-family: 'Jost', var(--paragraph-font), sans-serif;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  background-color: #ffffff;
}

.loi_space_9.sec-padding {
  padding: 5rem 0;
}


/* Typography */
.loi_space_9 h2,
.loi_space_9 h3 {
  font-family: 'Jost', var(--heading-font), sans-serif;
  color: var(--theme-color);
  font-weight: 700;
}

.loi_space_9 h3.h6 {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 600;
}

.loi_space_9 p,
.loi_space_9 span {
  font-family: 'Jost', var(--paragraph-font), sans-serif;
}

.loi_space_9 .eyebrow {
  display: inline-block;
  font-family: 'Jost', var(--span-font), sans-serif;
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.loi_space_9 .text-secondary {
  color: #666666 !important;
  line-height: 1.6;
}

.loi_space_9 .small {
  font-size: 0.875rem;
}

/* Card Component Styling */
.loi_space_9 .bg-white-card.wr-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2.25rem 1.75rem;
  height: 100%;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
  position: relative;
}

.loi_space_9 .bg-white-card.wr-card:hover {
  transform: translateY(-5px);
  border-color: rgba(35, 64, 143, 0.25);
  box-shadow: var(--shadow-base);
}

/* Icon Styling */
.loi_space_9 .wr-icon {
  width: 52px;
  height: 52px;
  background-color: rgba(35, 64, 143, 0.08);
  color: var(--theme-color-second);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.loi_space_9 .bg-white-card.wr-card:hover .wr-icon {
  background-color: var(--theme-color-second);
  color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .loi_space_9.sec-padding {
    padding: 3.5rem 0;
  }
}

@media (max-width: 575.98px) {
  .loi_space_9 .bg-white-card.wr-card {
    padding: 1.75rem 1.25rem;
  }
}

/* Section Base Layout */
.loi_space_10 {
  font-family: 'Jost', var(--paragraph-font), sans-serif;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  background-color: #f8fafc;
}

.loi_space_10.sec-padding {
  padding: 5rem 0;
}

/* Typography */
.loi_space_10 h2,
.loi_space_10 h3 {
  font-family: 'Jost', var(--heading-font), sans-serif;
  color: var(--theme-color);
  font-weight: 700;
}

.loi_space_10 h3.h5 {
  font-size: 1.25rem;
  line-height: 1.3;
}

.loi_space_10 p,
.loi_space_10 span,
.loi_space_10 li,
.loi_space_10 a {
  font-family: 'Jost', var(--paragraph-font), sans-serif;
}

.loi_space_10 .eyebrow {
  display: inline-block;
  font-family: 'Jost', var(--span-font), sans-serif;
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.loi_space_10 .text-secondary {
  color: #666666 !important;
  line-height: 1.6;
}

.loi_space_10 .small {
  font-size: 0.875rem;
}

/* Plan Card Base */
.loi_space_10 .plan-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2.25rem 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
}

.loi_space_10 .plan-card:hover {
  transform: translateY(-5px);
  border-color: rgba(35, 64, 143, 0.25);
  box-shadow: var(--shadow-base);
}

/* Featured Plan Variant */
.loi_space_10 .plan-card.featured {
  border: 2px solid var(--theme-color-second);
  box-shadow: var(--shadow-base);
}

.loi_space_10 .plan-badge {
  position: absolute;
  top: -14px;
  right: 1.5rem;
  background-color: var(--theme-color-second);
  color: #ffffff;
  font-family: 'Jost', var(--span-font), sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.875rem;
  border-radius: 50rem;
  box-shadow: var(--shadow-small);
}

/* List Styling */
.loi_space_10 ul li {
  color: #475569;
}

.loi_space_10 .text-primary {
  color: var(--theme-color-second) !important;
  font-size: 1.1rem;
}

/* Button Styling */
.loi_space_10 .comon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--theme-color-second);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 50rem;
  border: 1px solid var(--theme-color-second);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.loi_space_10 .comon-btn:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

.loi_space_10 .comon-btn.btn-golden {
  background-color: var(--theme-color-three);
  border-color: var(--theme-color-three);
  color: #ffffff;
}

.loi_space_10 .comon-btn.btn-golden:hover {
  background-color: #b38e3c;
  border-color: #b38e3c;
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .loi_space_10.sec-padding {
    padding: 3.5rem 0;
  }
}

@media (max-width: 575.98px) {
  .loi_space_10 .plan-card {
    padding: 1.75rem 1.25rem;
  }
}

/* Section Base Layout */
.loi_space_11 {
  font-family: 'Jost', var(--paragraph-font), sans-serif;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  background-color: #ffffff;
}

.loi_space_11.sec-padding {
  padding: 5rem 0;
}

/* Typography */
.loi_space_11 h2 {
  font-family: 'Jost', var(--heading-font), sans-serif;
  color: var(--theme-color);
  font-weight: 700;
}

.loi_space_11 p,
.loi_space_11 span,
.loi_space_11 label,
.loi_space_11 input,
.loi_space_11 select,
.loi_space_11 textarea,
.loi_space_11 button {
  font-family: 'Jost', var(--paragraph-font), sans-serif;
}

.loi_space_11 .eyebrow {
  display: inline-block;
  font-family: 'Jost', var(--span-font), sans-serif;
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.loi_space_11 .text-secondary {
  color: #666666 !important;
  line-height: 1.6;
}

.loi_space_11 .small {
  font-size: 0.875rem;
}

/* Form Container Box */
.loi_space_11 .form-box {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: var(--shadow-base);
}

/* Form Controls */
.loi_space_11 .form-label {
  color: #1e293b;
  margin-bottom: 0.375rem;
}

.loi_space_11 .form-control,
.loi_space_11 .form-select {
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: #333333;
  background-color: #f8fafc;
  transition: all 0.2s ease-in-out;
}

.loi_space_11 .form-control:focus,
.loi_space_11 .form-select:focus {
  background-color: #ffffff;
  border-color: var(--theme-color-second);
  box-shadow: 0 0 0 0.2rem rgba(35, 64, 143, 0.15);
  outline: none;
}

.loi_space_11 .form-control::placeholder {
  color: #94a3b8;
}

.loi_space_11 .form-check-input {
  border-color: #cbd5e1;
  cursor: pointer;
}

.loi_space_11 .form-check-input:checked {
  background-color: var(--theme-color-second);
  border-color: var(--theme-color-second);
}

.loi_space_11 .form-check-label {
  cursor: pointer;
  line-height: 1.4;
}

/* Button Styling */
.loi_space_11 .comon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--theme-color-three);
  color: #ffffff;
  padding: 0.875rem 1.5rem;
  border-radius: 50rem;
  border: 1px solid var(--theme-color-three);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
  cursor: pointer;
}

.loi_space_11 .comon-btn:hover {
  background-color: #b38e3c;
  border-color: #b38e3c;
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .loi_space_11.sec-padding {
    padding: 3.5rem 0;
  }
}

@media (max-width: 575.98px) {
  .loi_space_11 .form-box {
    padding: 1.5rem;
  }
}

/* Section Base Layout */
.loi_space_12 {
  font-family: 'Jost', var(--paragraph-font), sans-serif;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  background-color: #f8fafc;
}

.loi_space_12.sec-padding {
  padding: 5rem 0;
}


/* Typography */
.loi_space_12 h2 {
  font-family: 'Jost', var(--heading-font), sans-serif;
  color: var(--theme-color);
  font-weight: 700;
}

.loi_space_12 p,
.loi_space_12 span,
.loi_space_12 button,
.loi_space_12 .accordion-body {
  font-family: 'Jost', var(--paragraph-font), sans-serif;
}

.loi_space_12 .eyebrow {
  display: inline-block;
  font-family: 'Jost', var(--span-font), sans-serif;
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.loi_space_12 .text-secondary {
  color: #666666 !important;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Accordion Component Customization */
.loi_space_12 .accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem !important;
  background-color: #ffffff;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-small);
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.loi_space_12 .accordion-item:hover {
  border-color: rgba(35, 64, 143, 0.2);
  box-shadow: var(--shadow-base);
}

.loi_space_12 .accordion-header {
  margin-bottom: 0;
}

.loi_space_12 .accordion-button {
  font-family: 'Jost', var(--heading-font), sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--theme-color);
  background-color: #ffffff;
  padding: 1.25rem 1.5rem;
  box-shadow: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.loi_space_12 .accordion-button:not(.collapsed) {
  color: var(--theme-color-second);
  background-color: rgba(35, 64, 143, 0.03);
  box-shadow: none;
}

.loi_space_12 .accordion-button:focus {
  border-color: rgba(35, 64, 143, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(35, 64, 143, 0.1);
}

.loi_space_12 .accordion-button::after {
  background-size: 1rem;
  transition: transform 0.2s ease-in-out;
}

.loi_space_12 .accordion-body {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
  padding: 1.25rem 1.5rem 1.5rem 1.5rem;
  background-color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .loi_space_12.sec-padding {
    padding: 3.5rem 0;
  }
}

@media (max-width: 575.98px) {
  .loi_space_12 .accordion-button {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
  }

  .loi_space_12 .accordion-body {
    padding: 1rem 1.25rem 1.25rem 1.25rem;
    font-size: 0.875rem;
  }
}

/* Section Base Layout */
.loi_space_13 {
  font-family: 'Jost', var(--paragraph-font), sans-serif;
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.loi_space_13.sec-padding {
  padding: 5rem 0;
}

.loi_space_13.pb-5 {
  padding-bottom: 3rem !important;
}

/* Typography */
.loi_space_13 h2 {
  font-family: 'Jost', var(--heading-font), sans-serif;
  color: var(--theme-color);
  font-weight: 700;
}

.loi_space_13 p,
.loi_space_13 span,
.loi_space_13 a {
  font-family: 'Jost', var(--paragraph-font), sans-serif;
}

.loi_space_13 .eyebrow {
  display: inline-block;
  font-family: 'Jost', var(--span-font), sans-serif;
  color: var(--theme-color-second);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.loi_space_13 .text-secondary {
  color: #666666 !important;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* CTA Box Card Styling */
.loi_space_13 .cta-box {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: var(--shadow-base);
  position: relative;
  overflow: hidden;
}

/* Button Styling */
.loi_space_13 .comon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--theme-color-second);
  color: #ffffff;
  padding: 0.875rem 1.5rem;
  border-radius: 50rem;
  border: 1px solid var(--theme-color-second);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.loi_space_13 .comon-btn:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

.loi_space_13 .comon-btn.btn-golden {
  background-color: var(--theme-color-three);
  border-color: var(--theme-color-three);
  color: #ffffff;
}

.loi_space_13 .comon-btn.btn-golden:hover {
  background-color: #b38e3c;
  border-color: #b38e3c;
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .loi_space_13.sec-padding {
    padding: 3.5rem 0;
  }

  .loi_space_13 .cta-box {
    padding: 2.25rem 1.75rem;
    text-align: center;
  }

  .loi_space_13 .cta-box>div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 575.98px) {
  .loi_space_13 .cta-box {
    padding: 1.75rem 1.25rem;
  }

  .loi_space_13 .comon-btn {
    width: 100%;
  }
}


/* Hero Section Styling */
.exec-hero {
  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);
  padding: 80px 0;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

/* Eyebrow Label */
.exec-hero .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--theme-color-second);
  background-color: rgba(35, 64, 143, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* Main Heading */
.exec-hero .hero-heading {
  font-family: var(--heading-font);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--theme-color);
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Paragraph text */
.exec-hero .hero-description {
  font-family: var(--paragraph-font);
  font-size: 1.125rem;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 32px;
}

/* Action Buttons Container */
.exec-hero .hero-action-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Button Base Style */
.exec-hero .btn-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--paragraph-font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}

/* Golden Accent Button */
.exec-hero .btn-golden {
  background-color: var(--theme-color-three);
  color: #ffffff;
  border: 1px solid var(--theme-color-three);
  box-shadow: var(--shadow-small);
}

.exec-hero .btn-golden:hover {
  background-color: #b38e3e;
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

/* Secondary / Outline Button */
.exec-hero .btn-outline {
  background-color: #ffffff;
  color: var(--theme-color-second);
  border: 1px solid var(--theme-color-second);
  box-shadow: var(--shadow-small);
}

.exec-hero .btn-outline:hover {
  background-color: var(--theme-color-second);
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

/* Right Column Card */
.exec-hero .executive-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-large);
  transition: box-shadow 0.3s ease;
}

.executive-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.exec-hero .card-logo-wrapper {
  text-align: center;
  margin-bottom: 20px;
}

.exec-hero .card-logo {
  max-height: 55px;
  width: auto;
  object-fit: contain;
}

.exec-hero .card-title {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #777777;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eeeeee;
}

/* Corporate Snapshot List */
.exec-hero .snapshot-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.exec-hero .snapshot-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.925rem;
  line-height: 1.4;
  color: #444444;
}

.exec-hero .snapshot-list li strong {
  color: var(--theme-color);
}

.exec-hero .icon-check {
  color: var(--theme-color-second);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}


/* Section Base */
.company_sec_2 {
  padding: 80px 0;
  background-color: #ffffff;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}


/* Eyebrow Tag */
.company_sec_2 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--theme-color-second);
  background-color: rgba(35, 64, 143, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* Section Header Typography */
.company_sec_2 .sec-title {
  font-family: var(--heading-font);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--theme-color);
  line-height: 1.25;
  margin-bottom: 10px;
}

.company_sec_2 .sec-description {
  font-family: var(--paragraph-font);
  font-size: 1rem;
  color: #666666;
  margin: 0;
}

/* Feature Card Styling */
.company_sec_2 .feature-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: var(--shadow-small);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.company_sec_2 .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
  border-color: rgba(35, 64, 143, 0.2);
}

/* Icon Container */
.company_sec_2 .exec-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background-color: rgba(35, 64, 143, 0.06);
  color: var(--theme-color-second);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Golden Accent on Icon Hover */
.company_sec_2 .feature-card:hover .exec-icon {
  background-color: var(--theme-color-three);
  color: #ffffff;
}

/* Card Content */
.company_sec_2 .card-title {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 12px;
  line-height: 1.3;
}

.company_sec_2 .card-text {
  font-family: var(--paragraph-font);
  font-size: 0.938rem;
  line-height: 1.6;
  color: #555555;
  margin: 0;
}


/* Section Base */
.company_sec_3 {
  padding: 80px 0;
  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

/* Eyebrow Tag */
.company_sec_3 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--theme-color-second);
  background-color: rgba(35, 64, 143, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* Typography */
.company_sec_3 .sec-title {
  font-family: var(--heading-font);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--theme-color);
  line-height: 1.25;
  margin-bottom: 18px;
}

.company_sec_3 .sec-description {
  font-family: var(--paragraph-font);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 16px;
}

/* Partner Logo Box */
.company_sec_3 .partner-logo-box {
  display: inline-block;
  background-color: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 16px 24px;
  margin-top: 12px;
  box-shadow: var(--shadow-small);
}

.company_sec_3 .partner-logo {
  max-height: 55px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Process Cards Styling */
.company_sec_3 .process-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: var(--shadow-small);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.company_sec_3 .process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-base);
  border-color: rgba(35, 64, 143, 0.25);
}

/* Process Step Number */
.company_sec_3 .process-number {
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--theme-color-three);
  background: rgba(201, 162, 74, 0.12);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.company_sec_3 .process-card:hover .process-number {
  background-color: var(--theme-color-three);
  color: #ffffff;
}

/* Process Card Titles & Text */
.company_sec_3 .card-title {
  font-family: var(--heading-font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.company_sec_3 .card-text {
  font-family: var(--paragraph-font);
  font-size: 0.875rem;
  line-height: 1.5;
  color: #666666;
  margin: 0;
}


/* Section Base */
.company_sec_4 {
  padding: 60px 0;
  background-color: transparent;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

/* Call-to-Action Card Wrapper */
.company_sec_4 .cta-banner {
  background: linear-gradient(135deg, #ffffff 0%, #f4f7fa 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: var(--shadow-large);
  position: relative;
  overflow: hidden;
}

/* Accent Line Accent on Top Border */
.company_sec_4 .cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--theme-color-second) 0%, var(--theme-color-three) 100%);
}

/* Eyebrow Tag */
.company_sec_4 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--theme-color-second);
  background-color: rgba(35, 64, 143, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* Section Header Typography */
.company_sec_4 .cta-title {
  font-family: var(--heading-font);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--theme-color);
  line-height: 1.25;
  margin-bottom: 10px;
}

.company_sec_4 .cta-description {
  font-family: var(--paragraph-font);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555555;
  margin: 0;
}

/* Action Buttons Container */
.company_sec_4 .cta-action-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
}

@media (min-width: 992px) {
  .company_sec_4 .cta-action-group {
    justify-content: flex-end;
  }
}

/* Base Button Styling */
.company_sec_4 .btn-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--paragraph-font);
  font-weight: 600;
  font-size: 0.925rem;
  padding: 12px 22px;
  border-radius: 60px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease-in-out;
}

/* Golden Accent Button */
.company_sec_4 .btn-golden {
  background-color: var(--theme-color-three);
  color: #ffffff;
  border: 1px solid var(--theme-color-three);
  box-shadow: var(--shadow-small);
}

.company_sec_4 .btn-golden:hover {
  background-color: #b38e3e;
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

/* Secondary / Outline Button */
.company_sec_4 .btn-outline {
  background-color: #ffffff;
  color: var(--theme-color-second);
  border: 1px solid var(--theme-color-second);
  box-shadow: var(--shadow-small);
}

.company_sec_4 .btn-outline:hover {
  background-color: var(--theme-color-second);
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

/* Hero Section Styling */
.about-hero {
  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);
  padding: 80px 0;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

/* Eyebrow Tag */
.about-hero .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--theme-color-second);
  background-color: rgba(35, 64, 143, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* Main Heading */
.about-hero .hero-heading {
  font-family: var(--heading-font);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--theme-color);
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Description Text */
.about-hero .hero-description {
  font-family: var(--paragraph-font);
  font-size: 1.125rem;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 32px;
}

/* Action Buttons Container */
.about-hero .hero-action-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Button Base Style */
.about-hero .btn-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--paragraph-font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}

/* Golden Button */
.about-hero .btn-golden {
  background-color: var(--theme-color-three);
  color: #ffffff;
  border: 1px solid var(--theme-color-three);
  box-shadow: var(--shadow-small);
}

.about-hero .btn-golden:hover {
  background-color: #b38e3e;
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

/* Outline Button */
.about-hero .btn-outline {
  background-color: #ffffff;
  color: var(--theme-color-second);
  border: 1px solid var(--theme-color-second);
  box-shadow: var(--shadow-small);
}

.about-hero .btn-outline:hover {
  background-color: var(--theme-color-second);
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

/* Right Column Card Container */
.about-hero .logo-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-large);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-hero .logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.about-hero .logo-wrapper {
  margin-bottom: 20px;
}

.about-hero .hero-logo {
  max-height: 75px;
  width: auto;
  object-fit: contain;
}

.about-hero .tagline {
  font-family: var(--span-font);
  font-size: 0.95rem;
  font-weight: 500;
  color: #666666;
  margin: 0;
  letter-spacing: 0.2px;
}

/* Container Scope */
.about_sec_1 {
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.about_sec_1 .sec-padding {
  padding: 80px 0;
}


/* Eyebrow Label */
.about_sec_1 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--theme-color-second);
  background-color: rgba(35, 64, 143, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* Typography */
.about_sec_1 .sec-title {
  font-family: var(--heading-font);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--theme-color);
  line-height: 1.25;
  margin-bottom: 16px;
}

.about_sec_1 .sec-description {
  font-family: var(--paragraph-font);
  font-size: 0.975rem;
  line-height: 1.65;
  color: #555555;
  margin-bottom: 16px;
}

/* Evolution Section */
.about_sec_1 .evolution-section {
  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);
}

/* Target Sectors Card */
.about_sec_1 .sectors-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-large);
  transition: transform 0.3s ease;
}

.about_sec_1 .sectors-card:hover {
  transform: translateY(-2px);
}

.about_sec_1 .card-header-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eeeeee;
}

.about_sec_1 .header-icon {
  font-size: 1.35rem;
  color: var(--theme-color-second);
}

.about_sec_1 .card-header-title {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--theme-color);
  margin: 0;
}

/* Sectors List */
.about_sec_1 .sectors-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about_sec_1 .sectors-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.925rem;
  font-weight: 500;
  color: #444444;
}

.about_sec_1 .check-icon {
  color: var(--theme-color-second);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Pillars Section */
.about_sec_1 .pillars-section {
  background-color: #f8f9fa;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* Pillar Card Styling */
.about_sec_1 .pillar-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: var(--shadow-small);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.about_sec_1 .pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
  border-color: rgba(35, 64, 143, 0.2);
}

/* Icon Container */
.about_sec_1 .about-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background-color: rgba(35, 64, 143, 0.06);
  color: var(--theme-color-second);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.about_sec_1 .pillar-card:hover .about-icon {
  background-color: var(--theme-color-three);
  color: #ffffff;
}

.about_sec_1 .card-title {
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 12px;
  line-height: 1.3;
}

.about_sec_1 .card-text {
  font-family: var(--paragraph-font);
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555555;
  margin: 0;
}

/* Section Base */
.about_sec_2 {
  padding: 80px 0;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

/* Eyebrow Label */
.about_sec_2 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--theme-color-second);
  background-color: rgba(35, 64, 143, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* Typography */
.about_sec_2 .sec-title {
  font-family: var(--heading-font);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--theme-color);
  line-height: 1.25;
  margin-bottom: 16px;
}

.about_sec_2 .sec-description {
  font-family: var(--paragraph-font);
  font-size: 0.975rem;
  line-height: 1.65;
  color: #555555;
  margin-bottom: 16px;
}

/* Partner Logo Card */
.about_sec_2 .partner-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: var(--shadow-base);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about_sec_2 .partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
}

.about_sec_2 .logo-wrapper {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.about_sec_2 .partner-logo {
  max-height: 75px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* NATO Badge */
.about_sec_2 .partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--span-font);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--theme-color-second);
  background-color: #f0f4fa;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(35, 64, 143, 0.15);
}

/* Section Base */
.about_sec_3 {
  padding: 60px 0;
  background-color: transparent;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

/* Light Call-to-Action Card Banner */
.about_sec_3 .cta-banner-light {
  background: linear-gradient(180deg, #eef2f7 0%, #f8fafc 100%);
  border: 1px solid rgba(35, 64, 143, 0.1);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: var(--shadow-base);
  position: relative;
  overflow: hidden;
}

/* Accent Line on Top Border */
.about_sec_3 .cta-banner-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--theme-color-second) 0%, var(--theme-color-three) 100%);
}

/* Eyebrow Label */
.about_sec_3 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--theme-color-second);
  background-color: rgba(35, 64, 143, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* Section Header Typography */
.about_sec_3 .cta-title {
  font-family: var(--heading-font);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--theme-color);
  line-height: 1.25;
  margin-bottom: 10px;
}

.about_sec_3 .cta-description {
  font-family: var(--paragraph-font);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555555;
  margin: 0;
}

/* Action Buttons Container */
.about_sec_3 .cta-action-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
}

@media (min-width: 992px) {
  .about_sec_3 .cta-action-group {
    justify-content: flex-end;
  }
}

/* Base Button Styling */
.about_sec_3 .btn-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--paragraph-font);
  font-weight: 600;
  font-size: 0.925rem;
  padding: 12px 22px;
  border-radius: 60px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease-in-out;
}

/* Golden Accent Button */
.about_sec_3 .btn-golden {
  background-color: var(--theme-color-three);
  color: #ffffff;
  border: 1px solid var(--theme-color-three);
  box-shadow: var(--shadow-small);
}

.about_sec_3 .btn-golden:hover {
  background-color: #b38e3e;
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

/* Secondary / Outline Button */
.about_sec_3 .btn-outline {
  background-color: #ffffff;
  color: var(--theme-color-second);
  border: 1px solid var(--theme-color-second);
  box-shadow: var(--shadow-small);
}

.about_sec_3 .btn-outline:hover {
  background-color: var(--theme-color-second);
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

/* Section Base */
.leadership_hero {
  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);
  padding: 150px 0 80px 0;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

/* Eyebrow Tag */
.leadership_hero .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--theme-color-second);
  background-color: rgba(35, 64, 143, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* Main Heading */
.leadership_hero .hero-heading {
  font-family: var(--heading-font);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--theme-color);
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Description Text */
.leadership_hero .hero-description {
  font-family: var(--paragraph-font);
  font-size: 1.125rem;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 32px;
}

/* Action Buttons Container */
.leadership_hero .hero-action-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Base Button Styling */
.leadership_hero .btn-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--paragraph-font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}

/* Golden Button */
.leadership_hero .btn-golden {
  background-color: var(--theme-color-three);
  color: #ffffff;
  border: 1px solid var(--theme-color-three);
  box-shadow: var(--shadow-small);
}

.leadership_hero .btn-golden:hover {
  background-color: #b38e3e;
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

/* Outline Button */
.leadership_hero .btn-outline {
  background-color: #ffffff;
  color: var(--theme-color-second);
  border: 1px solid var(--theme-color-second);
  box-shadow: var(--shadow-small);
}

.leadership_hero .btn-outline:hover {
  background-color: var(--theme-color-second);
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

/* Governance Card Container */
.leadership_hero .governance-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-large);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leadership_hero .governance-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Card Header */
.leadership_hero .card-header-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eeeeee;
}

.leadership_hero .header-icon {
  font-size: 1.35rem;
  color: var(--theme-color-second);
}

.leadership_hero .card-header-title {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--theme-color);
  margin: 0;
}

.leadership_hero .card-subtitle {
  font-family: var(--paragraph-font);
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 16px;
}

/* Governance List */
.leadership_hero .governance-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.leadership_hero .governance-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #444444;
  font-weight: 500;
}

.leadership_hero .check-icon {
  color: var(--theme-color-second);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Section Base */
.leadership_sec_2 {
  padding: 80px 0;
  background-color: #ffffff;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

/* Eyebrow Label */
.leadership_sec_2 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--theme-color-second);
  background-color: rgba(35, 64, 143, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* Typography */
.leadership_sec_2 .sec-title {
  font-family: var(--heading-font);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--theme-color);
  line-height: 1.25;
  margin-bottom: 10px;
}

.leadership_sec_2 .sec-description {
  font-family: var(--paragraph-font);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555555;
  margin: 0;
}

/* Leader Cards */
.leadership_sec_2 .leader-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-small);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.leadership_sec_2 .leader-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
  border-color: rgba(35, 64, 143, 0.2);
}

.leadership_sec_2 .card-body-content {
  flex-grow: 1;
}

/* Avatar Icon Container */
.leadership_sec_2 .leader-avatar-icon {
  width: 52px;
  height: 52px;
  background-color: rgba(35, 64, 143, 0.08);
  color: var(--theme-color-second);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.leadership_sec_2 .leader-card:hover .leader-avatar-icon {
  background-color: var(--theme-color-second);
  color: #ffffff;
}

/* Card Content Details */
.leadership_sec_2 .leader-name {
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 4px;
}

.leadership_sec_2 .leader-role {
  display: inline-block;
  font-family: var(--span-font);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--theme-color-three);
  margin-bottom: 12px;
}

.leadership_sec_2 .leader-bio {
  font-family: var(--paragraph-font);
  font-size: 0.885rem;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
}

/* Card Footer */
.leadership_sec_2 .card-footer-content {
  padding-top: 16px;
  border-top: 1px solid #eeeeee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.leadership_sec_2 .footer-meta {
  font-size: 0.8rem;
  color: #777777;
  display: inline-flex;
  align-items: center;
}

.leadership_sec_2 .contact-link {
  font-family: var(--paragraph-font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--theme-color-second);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.leadership_sec_2 .contact-link:hover {
  color: var(--theme-color);
  gap: 6px;
}

/* Section Base */
.leadership_sec_3 {
  padding: 80px 0;
  background-color: #f8fafc;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}



/* Eyebrow Tag */
.leadership_sec_3 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--theme-color-second);
  background-color: rgba(35, 64, 143, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* Typography */
.leadership_sec_3 .sec-title {
  font-family: var(--heading-font);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--theme-color);
  line-height: 1.25;
  margin-bottom: 10px;
}

.leadership_sec_3 .sec-description {
  font-family: var(--paragraph-font);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555555;
  margin: 0;
}

/* Commitment Cards */
.leadership_sec_3 .commitment-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 32px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-small);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Top Accent Highlight Line */
.leadership_sec_3 .commitment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--theme-color-second);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.leadership_sec_3 .commitment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
  border-color: rgba(35, 64, 143, 0.15);
}

.leadership_sec_3 .commitment-card:hover::before {
  opacity: 1;
}

/* Icon Box */
.leadership_sec_3 .gov-icon-box {
  width: 56px;
  height: 56px;
  background-color: rgba(35, 64, 143, 0.08);
  color: var(--theme-color-second);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.leadership_sec_3 .commitment-card:hover .gov-icon-box {
  background-color: var(--theme-color-second);
  color: #ffffff;
}

/* Card Content Details */
.leadership_sec_3 .card-title {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 10px;
  line-height: 1.3;
}

.leadership_sec_3 .card-text {
  font-family: var(--paragraph-font);
  font-size: 0.885rem;
  line-height: 1.6;
  color: #555555;
  margin: 0;
}

/* Section Base */
.leadership_sec_4 {
  background-color: transparent;
  font-family: var(--paragraph-font);
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* Dark Call-to-Action Banner Card */
.leadership_sec_4 .cta-banner-dark {
  background: linear-gradient(135deg, var(--theme-color) 0%, #172a5a 100%);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: var(--shadow-large);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Accent Bar on Left Border */
.leadership_sec_4 .cta-banner-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--theme-color-three) 0%, var(--theme-color-second) 100%);
}

/* Eyebrow Label */
.leadership_sec_4 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--theme-color-three);
  background-color: rgba(212, 175, 55, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Typography */
.leadership_sec_4 .cta-title {
  font-family: var(--heading-font);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 10px;
}

.leadership_sec_4 .cta-description {
  font-family: var(--paragraph-font);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Action Buttons Container */
.leadership_sec_4 .cta-action-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
}

@media (min-width: 992px) {
  .leadership_sec_4 .cta-action-group {
    justify-content: flex-end;
  }
}

/* Base Button Styling */
.leadership_sec_4 .btn-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--paragraph-font);
  font-weight: 600;
  font-size: 0.925rem;
  padding: 12px 22px;
  border-radius: 600px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease-in-out;
}

/* Golden Primary Button */
.leadership_sec_4 .btn-golden {
  background-color: var(--theme-color-three);
  color: #ffffff;
  border: 1px solid var(--theme-color-three);
  box-shadow: var(--shadow-small);
}

.leadership_sec_4 .btn-golden:hover {
  background-color: #b38e3e;
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

/* White Outline Secondary Button */
.leadership_sec_4 .btn-outline-light {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.leadership_sec_4 .btn-outline-light:hover {
  background-color: #ffffff;
  color: var(--theme-color);
  border-color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}


/* Section Base */
.canadian_innovation_hero {
  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);
  padding: 120px 0 80px 0;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

/* Eyebrow Tag */
.canadian_innovation_hero .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--theme-color-second);
  background-color: rgba(35, 64, 143, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* Main Heading */
.canadian_innovation_hero .hero-heading {
  font-family: var(--heading-font);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--theme-color);
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Description Text */
.canadian_innovation_hero .hero-description {
  font-family: var(--paragraph-font);
  font-size: 1.125rem;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 32px;
}

/* Action Buttons Container */
.canadian_innovation_hero .hero-action-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Base Button Styling */
.canadian_innovation_hero .btn-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--paragraph-font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}

/* Golden Primary Button */
.canadian_innovation_hero .btn-golden {
  background-color: var(--theme-color-three);
  color: #ffffff;
  border: 1px solid var(--theme-color-three);
  box-shadow: var(--shadow-small);
}

.canadian_innovation_hero .btn-golden:hover {
  background-color: #b38e3e;
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

/* Outline Secondary Button */
.canadian_innovation_hero .btn-outline {
  background-color: #ffffff;
  color: var(--theme-color-second);
  border: 1px solid var(--theme-color-second);
  box-shadow: var(--shadow-small);
}

.canadian_innovation_hero .btn-outline:hover {
  background-color: var(--theme-color-second);
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

/* Network Overview Card Container */
.canadian_innovation_hero .network-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-large);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.canadian_innovation_hero .network-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Card Header */
.canadian_innovation_hero .card-header-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eeeeee;
}

.canadian_innovation_hero .header-icon {
  font-size: 1.35rem;
  color: var(--theme-color-second);
}

.canadian_innovation_hero .card-header-title {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--theme-color);
  margin: 0;
}

.canadian_innovation_hero .card-subtitle {
  font-family: var(--paragraph-font);
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 16px;
}

/* Network List */
.canadian_innovation_hero .network-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.canadian_innovation_hero .network-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #444444;
  font-weight: 500;
}

.canadian_innovation_hero .check-icon {
  color: var(--theme-color-second);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Section Base */
.canadian_innovation_sec_2 {
  padding: 80px 0;
  background-color: #ffffff;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

/* Eyebrow Label */
.canadian_innovation_sec_2 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--theme-color-second);
  background-color: rgba(35, 64, 143, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* Typography */
.canadian_innovation_sec_2 .sec-title {
  font-family: var(--heading-font);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--theme-color);
  line-height: 1.25;
  margin-bottom: 16px;
}

.canadian_innovation_sec_2 .sec-description {
  font-family: var(--paragraph-font);
  font-size: 0.975rem;
  line-height: 1.65;
  color: #555555;
  margin-bottom: 16px;
}

/* Partner Card */
.canadian_innovation_sec_2 .partner-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: var(--shadow-base);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.canadian_innovation_sec_2 .partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
}

.canadian_innovation_sec_2 .logo-wrapper {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.canadian_innovation_sec_2 .partner-logo {
  max-height: 75px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Badge Styling */
.canadian_innovation_sec_2 .partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--span-font);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--theme-color-second);
  background-color: #f0f4fa;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(35, 64, 143, 0.15);
}

/* Section Base */
.canadian_innovation_sec_3 {
  padding: 80px 0;
  background-color: #f8fafc;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

/* Header Elements */
.canadian_innovation_sec_3 .header-wrapper {
  max-width: 720px;
}

.canadian_innovation_sec_3 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--theme-color-second);
  background-color: rgba(35, 64, 143, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.canadian_innovation_sec_3 .sec-title {
  font-family: var(--heading-font);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--theme-color);
  line-height: 1.25;
  margin-bottom: 12px;
}

.canadian_innovation_sec_3 .sec-description {
  font-family: var(--paragraph-font);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

/* Step Card Container */
.canadian_innovation_sec_3 .step-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 32px 24px;
  height: 100%;
  box-shadow: var(--shadow-small);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.canadian_innovation_sec_3 .step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-large);
  border-color: rgba(35, 64, 143, 0.2);
}

/* Card Header (Step & Number) */
.canadian_innovation_sec_3 .card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f4fa;
}

.canadian_innovation_sec_3 .step-badge {
  font-family: var(--span-font);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-color-second);
}

.canadian_innovation_sec_3 .step-number {
  font-family: var(--heading-font);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--theme-color-three);
  line-height: 1;
}

/* Typography */
.canadian_innovation_sec_3 .step-title {
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 10px;
}

.canadian_innovation_sec_3 .step-text {
  font-family: var(--paragraph-font);
  font-size: 0.9rem;
  line-height: 1.55;
  color: #555555;
  margin: 0;
}

/* Section Base */
.canadian_innovation_sec_4 {
  padding: 80px 0;
  background-color: #ffffff;
  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

/* Eyebrow Badge */
.canadian_innovation_sec_4 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--theme-color-second);
  background-color: rgba(35, 64, 143, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* Typography */
.canadian_innovation_sec_4 .sec-title {
  font-family: var(--heading-font);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--theme-color);
  line-height: 1.25;
  margin-bottom: 16px;
}

.canadian_innovation_sec_4 .sec-description {
  font-family: var(--paragraph-font);
  font-size: 0.975rem;
  line-height: 1.65;
  color: #555555;
  margin-bottom: 16px;
}

/* Highlight Card */
.canadian_innovation_sec_4 .scale-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 36px 30px;
  box-shadow: var(--shadow-base);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.canadian_innovation_sec_4 .scale-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
  border-color: rgba(35, 64, 143, 0.2);
}

/* Card Icon Box */
.canadian_innovation_sec_4 .icon-box {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, rgba(35, 64, 143, 0.1) 0%, rgba(35, 64, 143, 0.03) 100%);
  border: 1px solid rgba(35, 64, 143, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--theme-color-second);
  font-size: 1.65rem;
}

.canadian_innovation_sec_4 .card-title {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 10px;
}

.canadian_innovation_sec_4 .card-text {
  font-family: var(--paragraph-font);
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

/* Section Base */
.canadian_innovation_sec_5 {
  background-color: transparent;
  font-family: var(--paragraph-font);
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* Dark Call-to-Action Banner Card */
.canadian_innovation_sec_5 .cta-banner-dark {
  background: linear-gradient(135deg, var(--theme-color) 0%, #172a5a 100%);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: var(--shadow-large);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Accent Bar on Left Border */
.canadian_innovation_sec_5 .cta-banner-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--theme-color-three) 0%, var(--theme-color-second) 100%);
}

/* Eyebrow Label */
.canadian_innovation_sec_5 .eyebrow {
  display: inline-block;
  font-family: var(--span-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--theme-color-three);
  background-color: rgba(212, 175, 55, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Typography */
.canadian_innovation_sec_5 .cta-title {
  font-family: var(--heading-font);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 10px;
}

.canadian_innovation_sec_5 .cta-description {
  font-family: var(--paragraph-font);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Action Buttons Container */
.canadian_innovation_sec_5 .cta-action-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
}

@media (min-width: 992px) {
  .canadian_innovation_sec_5 .cta-action-group {
    justify-content: flex-end;
  }
}

/* Base Button Styling */
.canadian_innovation_sec_5 .btn-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--paragraph-font);
  font-weight: 600;
  font-size: 0.925rem;
  padding: 12px 22px;
  border-radius: 60px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease-in-out;
}

/* Golden Primary Button */
.canadian_innovation_sec_5 .btn-golden {
  background-color: var(--theme-color-three);
  color: #ffffff;
  border: 1px solid var(--theme-color-three);
  box-shadow: var(--shadow-small);
}

.canadian_innovation_sec_5 .btn-golden:hover {
  background-color: #b38e3e;
  color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

/* White Outline Secondary Button */
.canadian_innovation_sec_5 .btn-outline-light {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.canadian_innovation_sec_5 .btn-outline-light:hover {
  background-color: #ffffff;
  color: var(--theme-color);
  border-color: #ffffff;
  box-shadow: var(--shadow-base);
  transform: translateY(-2px);
}

/* Scoped Section Styles using .wearable-new-sec-1 */
.wearable-new-sec-1 {
  padding: 60px 0;
  font-family: var(--paragraph-font);
  color: #333333;
}

.wearable-new-sec-1 h1,
.wearable-new-sec-1 h2,
.wearable-new-sec-1 h3,
.wearable-new-sec-1 h4 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.wearable-new-sec-1 .wearable-main-title {
  color: var(--theme-color-second);
  margin-bottom: 0.5rem;
}

.wearable-new-sec-1 .wearable-subtitle {
  color: var(--theme-color-three);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.wearable-new-sec-1 .wearable-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow-base);
}

.wearable-new-sec-1 img {
  border-radius: 8px;
  box-shadow: var(--shadow-small);
  max-width: 100%;
  height: auto;
}

.wearable-new-sec-1 span {
  font-family: var(--span-font);
}

.wearable-new-sec-2 {
  padding: 0 0 60px 0;
  font-family: var(--paragraph-font);
  color: #333333;
}

.wearable-new-sec-2 h2,
.wearable-new-sec-2 h3,
.wearable-new-sec-2 h4 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.wearable-new-sec-2 .wearable-section-title {
  color: var(--theme-color-second);
  margin-bottom: 1rem;
}

.wearable-new-sec-2 .wearable-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow-base);
}

.wearable-new-sec-2 img {
  border-radius: 8px;
  box-shadow: var(--shadow-small);
  max-width: 100%;
  height: auto;
}

.wearable-new-sec-2 span {
  font-family: var(--span-font);
}

.wearable-new-sec-3 {
  padding: 0 0 60px 0;
  font-family: var(--paragraph-font);
  color: #333333;
}

.wearable-new-sec-3 h2,
.wearable-new-sec-3 h3,
.wearable-new-sec-3 h4 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.wearable-new-sec-3 .wearable-section-title {
  color: var(--theme-color-second);
  margin-bottom: 1rem;
}

.wearable-new-sec-3 .wearable-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow-base);
}

.wearable-new-sec-3 .wearable-alert-card {
  background: #fff8e6;
  border-left: 4px solid var(--theme-color-three);
  border-radius: 4px;
  padding: 15px 20px;
  margin-top: 1.5rem;
}

.wearable-new-sec-3 img {
  border-radius: 8px;
  box-shadow: var(--shadow-small);
  max-width: 100%;
  height: auto;
}

.wearable-new-sec-3 span {
  font-family: var(--span-font);
}

.wearable-new-sec-4 {
  padding: 0 0 60px 0;
  font-family: var(--paragraph-font);
  color: #333333;
}

.wearable-new-sec-4 h2,
.wearable-new-sec-4 h3,
.wearable-new-sec-4 h4 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.wearable-new-sec-4 .wearable-section-title {
  color: var(--theme-color-second);
  margin-bottom: 1rem;
}

.wearable-new-sec-4 .wearable-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow-base);
}

.wearable-new-sec-4 img {
  border-radius: 8px;
  box-shadow: var(--shadow-small);
  max-width: 100%;
  height: auto;
}

.wearable-new-sec-4 span {
  font-family: var(--span-font);
}

.home_new-sec_2 {
  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);
  font-family: var(--paragraph-font);
  color: #333333;
}

.home_new-sec_2 .home_new-sec_2-subtitle {
  font-family: var(--span-font);
  color: var(--theme-color-three);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.875rem;
  display: inline-block;
}

.home_new-sec_2 .home_new-sec_2-title {
  font-family: var(--heading-font);
  color: var(--theme-color-second);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.2;
}

.home_new-sec_2 .home_new-sec_2-lead {
  font-family: var(--paragraph-font);
  font-size: 1.125rem;
  line-height: 1.6;
  color: #4a5568;
}

.home_new-sec_2 .home_new-sec_2-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-base);
  border-top: 4px solid var(--theme-color-second);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home_new-sec_2 .home_new-sec_2-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.home_new-sec_2 .home_new-sec_2-card-highlight {
  border-top-color: var(--theme-color-three);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.home_new-sec_2 .home_new-sec_2-card-title {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.home_new-sec_2 .home_new-sec_2-text {
  font-family: var(--paragraph-font);
  color: #555555;
  line-height: 1.6;
  margin-bottom: 0;
}

.home_new-sec_2 .home_new-sec_2-banner {
  background-color: var(--theme-color-second);
  color: #ffffff;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-base);
}

.home_new-sec_2 .home_new-sec_2-banner-text {
  font-family: var(--paragraph-font);
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

.home_new-sec_2 .home_new-sec_2-banner-text strong {
  color: var(--theme-color-three);
}


.funding_space_6 .accordion-body p {

  font-size: 0.9375rem;
  color: #4a5568;
  line-height: 1.65;

}


/* Base CSS Variables scoped to new section structure */

.hand_standards_hero h1,
.canadian_guidance_sec h2,
.international_guidance_sec h2,
.ipac_best_practice_sec h2,
.protocol_to_practice_sec h2,
.beyond_healthcare_sec h2,
.policy_to_need_sec h2 {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.hand_standards_hero .text-primary,
.canadian_guidance_sec .text-primary,
.international_guidance_sec .text-primary,
.ipac_best_practice_sec .text-primary,
.protocol_to_practice_sec .text-primary,
.beyond_healthcare_sec .text-primary,
.policy_to_need_sec .text-primary {
  font-family: var(--heading-font);
  color: var(--theme-color-second) !important;
}

.section-eyebrow,
.eyebrow {
  font-family: var(--heading-font);
  color: var(--theme-color-three);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* Hero Section Specifics */
.hand_standards_hero {
  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);
  padding: 80px 0 60px 0;
}

/* Guidance & Moment Cards Styling */
.international_guidance_sec {
  background-color: #fcfaf4;
}

.international_guidance_sec .moment-card {
  border: 1px solid #f0e6d2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.international_guidance_sec .moment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large) !important;
  border-color: var(--theme-color-second);
}

/* IPAC Highlight Card */
.ipac_best_practice_sec .ipac-highlight-card {
  background-color: #fcfaf4;
  border-color: #f0e6d2;
}

/* Practice & Access Cards Styling */
.protocol_to_practice_sec {
  background-color: #ffffff;
}

.protocol_to_practice_sec .practice-card,
.policy_to_need_sec .access-card {
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.protocol_to_practice_sec .practice-card:hover,
.policy_to_need_sec .access-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large) !important;
}

/* Process Chain Styling */
.protocol_to_practice_sec .process-chain-wrapper {
  border: 1px solid #e2e8f0;
  background-color: #f8fafc;
}

/* Policy To Point Of Need Section */
.policy_to_need_sec {
  background-color: #fcfaf4;
}

a.btn-fit {
  width: fit-content;
}

.access_to_accountability_sec {
  --theme-color: #000000;
  --theme-color-second: #23408f;
  --theme-color-three: #c9a24a;
  --heading-font: "Lato", sans-serif;
  --paragraph-font: "Inter", sans-serif;
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);

  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

.access_to_accountability_sec h2,
.access_to_accountability_sec h3 {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.access_to_accountability_sec .eyebrow {
  font-family: var(--heading-font);
  color: var(--theme-color-three);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}

.access_to_accountability_sec .card_block_wrapper .border {
  border-color: #e2e8f0 !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.access_to_accountability_sec .card_block_wrapper .border:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large) !important;
}

.access_to_accountability_sec .support-list span {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5568;
}

.text-primary {
  color: var(--theme-color-second) !important;
}

.one-system-workforces .img-public {
  border-radius: 15px;
  overflow: hidden;
  /* Clips the scaling image within the rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
}

.one-system-workforces .img-public img {
  object-fit: cover;
  aspect-ratio: 1/1;
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}



.one-system-workforces .img-public:hover img {
  transform: scale(1.05);
}

.data_or_analogue_sec {
  --theme-color: #000000;
  --theme-color-second: #23408f;
  --theme-color-three: #c9a24a;
  --heading-font: "Lato", sans-serif;
  --paragraph-font: "Inter", sans-serif;
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);

  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

.data_or_analogue_sec h2,
.data_or_analogue_sec h3 {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.data_or_analogue_sec .eyebrow {
  font-family: var(--heading-font);
  color: var(--theme-color-three);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}

.data_or_analogue_sec .workflow-card {
  border-color: #e2e8f0 !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.data_or_analogue_sec .workflow-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-large) !important;
}

.data_or_analogue_sec .step-badge {
  background-color: #f8fafc !important;
  border-color: #e2e8f0 !important;
  font-size: 0.875rem;
  color: #2d3748;
}

.healthcare_data_sec {
  --theme-color: #000000;
  --theme-color-second: #23408f;
  --theme-color-three: #c9a24a;
  --heading-font: "Lato", sans-serif;
  --paragraph-font: "Inter", sans-serif;
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);

  font-family: var(--paragraph-font);
  color: #333333;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

.healthcare_data_sec h2,
.healthcare_data_sec h3 {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.healthcare_data_sec .eyebrow {
  font-family: var(--heading-font);
  color: var(--theme-color-three);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}

.healthcare_data_sec .feature-card {
  border-color: #e2e8f0 !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.healthcare_data_sec .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large) !important;
}

.healthcare_data_sec .icon-box i {
  color: var(--theme-color-second);
}
/* New css */
/* Desktop Menu Fix - matches actual WP output classes */
#main_header #my-nav .navbar-nav {
    gap: 8px;
}
#main_header ul.dropdown-menu.fade-up li a {
    font-size: 14px;
}
#my-nav .navbar-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
#my-nav .navbar-nav > li.menu-item {
  position: relative;
}

#my-nav .navbar-nav > li > a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 13px;
  display: inline-block;
  align-items: center;
   padding: 26px 15px;
}

#my-nav .dropdown-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
}

#my-nav .menu-item-has-children.show .dropdown-icon {
  transform: rotate(180deg);
}

#my-nav ul.sub-menu {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
}

#my-nav ul.sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: #333;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
}

#my-nav ul.sub-menu li a:hover {
  background: #f5f5f5;
  color: #1c3faa;
}

/* Show on hover — desktop */
@media (min-width: 992px) {
  #my-nav .menu-item-has-children:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Show on click via existing JS .show class — touch devices */
#my-nav .menu-item-has-children.show > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#my-nav li.dropdown {
  display: flex;
  align-items: center;
}

#my-nav .dropdown-icon {
  display: inline-block !important;
  position: static !important;
  margin-left: 5px;
  font-size: 10px;
  color: #666666;
  vertical-align: middle;
}

@media all and (min-width: 992px) {
  .navbar li.dropdown.show .dropdown-menu.fade-up {
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}
/* Bootstrap ka default caret rakho, apna fa-angle-down icon hide karo */
#my-nav .dropdown-icon {
  display: none !important;
}
/* ===================mobile menu new css============================ */
/* Mobile menu: top-level items ke beech spacing + chevron arrow */
.small #mobile-menu > li {
  margin-bottom: 10px;
}

.small #mobile-menu > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  color: #1e1e1e;
}

/* Chevron icon add karo har dropdown item ke aage */
.small #mobile-menu > li.menu-item-has-children > a::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  color: #555;
  transition: transform 0.3s ease;
}

/* Click hone par chevron ulta ho jaye */
.small #mobile-menu > li.menu-item-has-children.dropdown-open > a::after {
  transform: rotate(180deg);
}

/* Submenu default mein band rahe, click pe khule */
.small #mobile-menu > li.menu-item-has-children > ul.sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding-left: 25px;
}

.small #mobile-menu > li.menu-item-has-children.dropdown-open > ul.sub-menu {
  max-height: 600px;
}

/* Submenu items ki styling */
.small #mobile-menu .sub-menu li a {
  display: block;
  font-size: 14px;

}
.small #mobile-menu .sub-menu {
  padding-left: 25px !important;
}
/* add by develpment team for faq page*/
.faq_sec {
	padding: 80px 0;
}

.faq-accordion .accordion-item {
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	margin-bottom: 15px;
	overflow: hidden;
}

.faq-accordion .accordion-button {
	font-size: 18px;
	font-weight: 600;
	padding: 22px 25px;
	color: #222;
	background: #fff;
	box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
	color: #fff;
	background: #294798;
	box-shadow: none;
}

.faq-accordion .accordion-button:focus {
	box-shadow: none;
}

.faq-accordion .accordion-body {
	padding: 25px;
	font-size: 16px;
	line-height: 1.7;
	color: #555;
	background: #fff;
}

.faq-accordion .accordion-body p:last-child {
	margin-bottom: 0;
}

.faq-accordion .accordion-body a {
	color: #294798;
	font-weight: 600;
	text-decoration: none;
}

.faq-accordion .accordion-body a:hover {
	text-decoration: underline;
}
