:root {
  --accent_color: #FF5C00;
  --primary_font: "Exo 2", sans-serif;
  --secondary_font: "Oswald", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: "Exo 2", sans-serif;
  background: #000;
  position: relative;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
}

h1 {
  font-size: 68px;
  font-weight: 700;
  line-height: 1em;
  text-transform: uppercase;
  color: #fff;
  font-family: var(--secondary_font);
}

h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1em;
  text-transform: uppercase;
  color: #fff;
  font-family: var(--secondary_font);
}

h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1em;
  text-transform: uppercase;
  color: #fff;
  font-family: var(--secondary_font);
}

h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1em;
  text-transform: uppercase;
  color: #fff;
  margin: 20px 0;
}

h1 span {
  color: var(--accent_color);
}

h2 span {
  color: var(--accent_color);
}

h3 span {
  color: var(--accent_color);
}

h4 span {
  color: var(--accent_color);
}

p span {
  color: var(--accent_color);
}

p {
  font-size: 18px;
  color: #fff;
  line-height: 1.5em;
  margin-top: 0;
  margin-bottom: 30px;
}

p:last-child {
  margin-bottom: 0px;
}

a {
  font-size: 18px;
  line-height: 1.5em;
  color: var(--accent_color);
  text-decoration: none;
  transition: .2s linear;
}

a:hover {
  color: #fff;
  transition: .2s linear;
}

.orange_text span {
  color: var(--orange_color);
}

.btn-primary {
  background: var(--accent_color);
  color: #fff;
  font-size: 14px;
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: 1.12px;
  font-family: var(--primary_font);
  text-decoration: none;
  padding: 15px 20px;
  letter-spacing: 1.12px;
  display: inline-block;
  transition: .2s linear;
  font-weight: 600;
}

.btn-primary .fa-angle-right {
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus{
  background: #fff;
  color: var(--accent_color);
  transition: .2s linear;
}

.btn-primary:hover .fa-angle-right {
  color: var(--orange_color);
}

.btn-outline {
  background: transparent;
  color: var(--accent_color);
  border: 1px solid var(--accent_color);
  font-size: 14px;
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: 1.12px;
  font-family: var(--primary_font);
  text-decoration: none;
  padding: 15px 20px;
  font-weight: 600;
  letter-spacing: 1.12px;
  display: inline-block;
  transition: .2s linear;
}

.btn-outline:hover {
  background: var(--accent_color);
  color: #fff;
}

.m_0 {
  margin: 0px;
}

.mt_32 {
  margin-top: 32px;
}

.mb_32 {
  margin-bottom: 32px;
}

.mt_0 {
  margin-top: 0px;
}

.mb_0 {
  margin-bottom: 0px;
}

.p_0 {
  padding: 0px !important;
}

.pb_0 {
  padding-bottom: 0px !important;
}

.pt_80 {
  padding-top: 80px;
}

.pb_80 {
  padding-bottom: 80px;
}

.text_center {
  text-align: center;
}

.text_left {
  text-align: left;
}

.text_right {
  text-align: right;
}

.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0px 30px;
}

.d_flex {
  display: flex;
  gap: 20px;
  align-items: center;
}

.align_items_center {
  align-items: center;
}

.align_items_start {
  align-items: flex-start;
}

.align_items_end {
  align-items: flex-end;
}

.justify_center {
  justify-content: center;
}

.justify_start {
  justify-content: flex-start;
}

.justify_end {
  align-items: flex-end;
}

.row {
  display: flex;
  gap: 32px;
}

.w_100 {
  width: 100%;
}

/* Global CSS End */
/* Header Start */
.header_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #000;
  /* Ensure background is visible */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.admin-bar .header_wrapper {
  top: 32px;
  /* Adjust for admin bar height */
}

.header_wrapper.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.topbar {
  display: none;
  /* background: #FFD61F;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms linear;*/
}

.topbar a {
  gap: 10px;
  justify-content: center;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2em;
  letter-spacing: 1.12px;
  text-transform: uppercase;
  font-weight: 600;
  color: #000;
  animation: flash 0.5s ease-in-out infinite alternate;
}

@keyframes flash {
  from {
    opacity: 1;
  }

  to {
    opacity: 0.1;
  }
}

@-moz-keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 230px;
  }

  100% {
    background-position: 230px;
  }
}

@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 230px;
  }

  100% {
    background-position: 230px;
  }
}

@-o-keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 230px;
  }

  100% {
    background-position: 230px;
  }
}

@keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 230px;
  }

  100% {
    background-position: 230px;
  }
}


.topbar i {
  font-size: 18px;
}

.header {
  padding: 24px;
  width: 100%;
  background-color: #000;
  box-shadow: none;
  transition: all 0.3s ease;
}

.header_wrapper.scrolled .header {
  padding: 15px 24px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header_wrapper.scrolled .topbar {
  height: 0;
}

.header .container {
  position: relative;
}

.header .row {
  justify-content: space-between;
  align-items: center;
}

.menu_toggle {
  display: none;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.links_wrapper ul {
  justify-content: flex-end;
  gap: 30px;
  list-style: none;
  padding: 0px;
}

.links_wrapper ul li a {
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
  transition: .2s linear;
  letter-spacing: 1.12px;
  position: relative;
  font-weight: 600;
}

.sub_menu_icon_list img {
  height: 35px;
}

.sub_menu_icon_list.align_center {
  text-align: center;
}

.links_wrapper ul li a:before {
  content: '';
  height: 2px;
  width: 0%;
  position: absolute;
  bottom: -10px;
  background: var(--accent_color);
  transition: .2s linear;
}

.links_wrapper ul li a:hover:before {
  width: 100%;
  transition: .2s linear;
}

.links_wrapper ul li a:hover {
  color: var(--accent_color);
  transition: .2s linear;
}

.links_wrapper .header_info a:before {
  display: none
}

.header_info {
  display: flex;
  align-items: center;
}

.links_wrapper ul li .highlighted_link {
  color: var(--accent_color);
  font-weight: 600;
}

.links_wrapper ul li .highlighted_link:before {
  display: none;
}

.links_wrapper .menu-item .btn-primary:before {
  display: none;
}

.links_wrapper ul li .highlighted_link i {
  font-size: 20px;
  margin-right: 5px;
}

.links_wrapper ul li .highlighted_link:hover {
  color: #fff;
}

.sub_menu {
  position: absolute;
  left: 0px;
  z-index: 999;
  background: #000;
  top: calc(100% - 18px);
  padding: 24px 30px;
  width: 100%;
  display: none;
}

.has_sub_menu a {
  position: relative;
}

.has_sub_menu a:not(.sub_menu_icon_list):after {
  content: '\f107';
  font-family: 'FontAwesome';
  margin-left: 5px;
}

.sub_menu_row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.sub_menu_row a:before,
.sub_menu_row a:after {
  display: none;
}

.sub_menu_icon_list {
  width: calc(100% / 5 - 15px);
}

.sub_menu_icon_list h4 {
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.sub_menu_icon_list p {
  color: rgba(255, 255, 255, 0.50);
  font-size: 12px;
  margin: 0px;
  text-transform: none;
}

/* Homepage Banner */
.banner_content {
  position: relative;
  z-index: 99;
}

.banner_content h1 {
  max-width: 1000px;
  line-height: 1em;
}

.banner_content p {
  font-size: 32px;
  font-family: var(--primary_font);
  font-weight: 500;
}

.hompage_banner {
  /* background: url(../img/homepage_banner.png); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: calc(100dvh - 175px);
  align-content: center;
  background-attachment: fixed;
}

.hompage_banner .container{
  position: relative;
}

.hompage_banner:before {
  content: '';
  background: rgba(0, 0, 0, 0.3);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 9;
}

.hompage_banner .background_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.urgent-request-cta {
  position: absolute;
  top: calc(100% - 20px);
  right: 150px;
  background: rgb(255 92 0 / 80%);
  backdrop-filter: blur(10px);
  padding: 15px;
  box-shadow: 0 8px 32px rgb(0 0 0 / 12%);
  z-index: 10;
  max-width: 300px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.urgent-cta-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.urgent-cta-icon {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.urgent-cta-text {
  flex: 1;
  min-width: 0;
}

.urgent-cta-title {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  display: flex;
  gap: 5px;
  flex-direction: column;
  margin-bottom: 10px;
  align-items: center;
}

.urgent-cta-description {
  margin: 0 0 15px 0;
  color: #fff;
  line-height: 1.4;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 920px) {
  .urgent-request-cta {
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    margin-top: 30px;
  }

  .urgent-cta-icon {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 480px) {
  .urgent-request-cta {
    /* bottom: 15px; */
    /* right: 15px; */
    /* left: 15px; */
    padding: 14px;
  }

  .urgent-cta-content {
    /* flex-direction: column; */
    /* align-items: center; */
    /* text-align: center; */
    /* gap: 8px; */
  }

  .urgent-cta-icon {
    margin-bottom: 4px;
  }
}

/* Animation for entrance */
@keyframes urgentCTAFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.urgent-request-cta {
  animation: urgentCTAFadeIn 0.6s ease-out 0.5s both;
}

/* Pulse animation for attention */
.urgent-request-cta::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff0000, #ff5c00, #ff0000);
  opacity: 0;
  z-index: -1;
  animation: urgentPulse 3s infinite;
}

@keyframes urgentPulse {

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

  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

/* Ensure parent section has relative positioning */
.hompage_banner.parallax-banner {
  position: relative;
}

.page_section.two_column_section {
  position: relative;
  padding: 180px 0px;
}

.two_column_section .row {
  justify-content: flex-end;
}

.col_left {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  /* padding-right: 10%; */
}

.col_left img {
  width: 100%;
}

.col_wrapper {
  width: calc(100% / 2 - 30px);
  box-sizing: border-box;
}


.image-caption {
  position: absolute;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  left: 40%;
  bottom: 20%;
}

.image-caption p {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}

.image-caption p:last-child {
  margin-bottom: 0;
}

.image-caption h3,
.image-caption h4,
.image-caption h5,
.image-caption h6 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

@media (max-width: 768px) {
  .image-caption {
    margin-top: 10px;
    padding: 10px 0;
  }

  .image-caption p,
  .image-caption li {
    font-size: 13px;
  }
}

.col_right p {
  font-size: 20px;
  line-height: 1.5em;
}

.col_right a {
  margin-top: 32px;
}

.page_section {
  padding: 112px 0px;
}

.page_section_cta {
  text-align: center;
  margin-top: 80px
}

.stats_section {
  background: url(../img/stats_bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.stats_disclaimer {
  text-align: center;
  margin-top: 50px;
}

.stats_disclaimer p {
  margin: 0px;
  color: rgba(255, 255, 255, 0.40);
  font-size: 15px;
  margin-bottom: 5px;
}

.page_section p.page_section_subhead {
  font-size: 25px;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
  display: inline-block;
  margin: 0px;
  padding-bottom: 15px;
}

.page_section_subhead.text-left:before {
  content: '';
  height: 5px;
  width: 60px;
  background: var(--accent_color);
  position: absolute;
  bottom: 0;
}

.page_section p.page_section_subhead.line-top {
  padding-bottom: 0;
  padding-top: 15px;
  margin-top: 15px;
}

.page_section_subhead.text-left.line-top:before {
  content: '';
  height: 5px;
  width: 60px;
  background: var(--accent_color);
  position: absolute;
  top: -5px;
}

.stats_section .row {
  gap: 80px;
}

.stats_col {
  width: calc(100% / 2 - 40px);
}

.stats_col_right p {
  font-size: 20px;
}

.btn-secondary {
  background: #fff;
  color: #0C0A09;
  padding: 10px 20px;
  display: inline-block;
  text-decoration: none;
  margin-top: 32px;
  text-transform: uppercase;
  letter-spacing: 1.12px;
  font-weight: 600;
  font-family: var(--primary_font);
  transition: .2s linear;
}

.btn-secondary:hover {
  background: var(--accent_color);
  color: #fff;
  transition: .2s linear;
}

.stats_wrapper {
  padding-top: 80px;
}

.stats_wrapper .row {
  flex-wrap: wrap;
  gap: 48px 32px;
}

.stats_wrapper .stats_info {
  width: calc(100% / 2 - 16px);
}

.stats_info {
  padding: 16px 0px 16px 32px;
  border-left: 1px solid var(--accent_color);
}

.stats_info:nth-child(odd) {
  padding: 16px 150px 16px 32px;
}

.stats_info h3 {
  font-size: 80px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 32px;
}

.stats_info p {
  font-size: 26px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.60);
  margin: 0px;
}

.stats_info pre {
  color: rgba(255, 255, 255, 0.40);
  margin-bottom: 0;
}

.page_section_subhead.text-center:before {
  content: '';
  height: 5px;
  width: 60px;
  background: var(--accent_color);
  position: absolute;
  bottom: 0;
  left: 0px;
  right: 0px;
  margin: 0px auto;
}

.page_section_header h2 {
  margin: 24px 0;
}

.page_section_header p {
  font-size: 20px;
  margin: 0;
}

.left_card_col {
  gap: 32px;
}

.right_card_col {
  width: calc(37% / 1 - 15px);
}

.left_card_col,
.right_card_col {
  display: flex;
  flex-direction: column;
}

.cards_wrapper {
  padding-top: 80px;
}

.cards_wrapper .row {
  align-items: stretch;
}

.fullwidth_card_col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card_row {
  display: flex;
  gap: 32px;
  /* padding-top: 32px; */
  align-items: start;
}

.card_col {
  width: calc(100% / 2 - 15px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card_box {
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  padding: 32px;
  height: 100%;
}

.card_box.fullwidth_card_col {
  text-align: center;
}

.card_box h3 {
  margin-top: 0px;
  margin-bottom: 16px;
}

.right_card_col .card_box h3 {
  margin: 0px;
}

.right_card_col .card_box p {
  margin: 16px 0px;
}

.right_card_col .card_box a {
  width: fit-content;
}

.process_cection {
  position: relative;
}

.process_cection .row {
  align-items: flex-start;
  gap: 80px;
}

.process_left_col {
  position: sticky;
  top: 50%;
  width: 50%;
}

.process_right_col {
  width: 50%;
}

.process_content .btn-outline {
  color: #fff;
}

.process_info_wrapper h4 {
  font-size: 32px;
  font-family: var(--secondary_font);
  margin-bottom: 16px;
  margin-top: 0px;
}

.process_info_wrapper p {
  font-size: 19px;
  max-width: 560px;
}

.process_info_wrapper {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100dvh;
  align-content: center;
  padding: 40px;
}

.process_info_wrapper::after {
  content: '';
  background: rgba(0, 0, 0, 0.85);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
}

.process_info_wrapper h4,
.process_info_wrapper p {
  position: relative;
  z-index: 2;
}

.border_wrapper {
  padding-top: 96px;
}

.border_wrapper .row {
  gap: 0px;
}

.border_col {
  width: calc(100% / 4);
  padding: 40px 28px 100px 28px;
  position: relative;
}

.border_col:nth-child(odd) {
  border-width: 5px 5px 0px 5px;
  border-color: var(--accent_color);
  border-style: solid;
}

.border_col:nth-child(odd):before {
  content: '';
  background-image: url(../img/icon_right.svg);
  position: absolute;
  top: -26px;
  left: 0px;
  right: 0px;
  height: 46px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.border_col:nth-child(even):before {
  content: '';
  background-image: url(../img/icon_right.svg);
  position: absolute;
  bottom: -25px;
  left: 0px;
  right: 0px;
  height: 46px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.border_col:nth-child(even) {
  border-bottom: 5px solid var(--accent_color);
}

.border_col:last-child {
  border-right: 5px solid var(--accent_color);
}

.step_head {
  font-size: 26px;
  text-transform: uppercase;
}

.border_col h3 {
  color: var(--accent_color);
  margin: 25px 0px;
}

.border_col p {
  font-size: 20px;
}

.steps_box_btn {
  text-transform: uppercase;
  position: absolute;
  bottom: 70px;
  left: 0px;
  right: 0px;
}

.steps_box_btn i {
  margin-left: 10px;
}

.why_choose_us_top {
  position: relative;
  min-height: 80dvh;
  display: flex;
  align-items: center;
}

.why_choose_us_content_right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 5%;
  width: 50%;
}

.why_choose_us_content_right img {
  width: 100%;
}

.why_choose_us_content h3 {
  font-size: 26px;
  font-family: var(--primary_font);
  font-weight: 400;
}

.why_choose_us_content {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

.why_choose_us_content_left {
  max-width: 50%
}

.page_section.why_choose_us {
  padding: 0px;
}

.elite_support {
  position: relative;
  padding: 112px 0px !important;
}

.elite_support .container {
  position: relative;
  z-index: 2;
}

.elite_support_bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100dvh;
}

.elite_support h3 {
  max-width: 45%;
}

.elite_support_bg img {
  height: 100%;
  width: auto;
  object-fit: cover;
}

.elite_support_bg::before {
  content: '';
  background-image: linear-gradient(90deg, #000000 3%, rgba(255, 255, 255, 0) 25%);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
}

.elite_support_bg::after {
  content: '';
  background-image: linear-gradient(0deg, #000000 3%, rgba(255, 255, 255, 0) 25%);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.elite_support_list {
  gap: 64px;
  max-width: 53%;
}

.elite_support_list .row {
  align-items: flex-start;
  flex-direction: column;
}

.elite_support_left_col {
  /* width: calc(40% / 1); */
  /* position: sticky; */
  /* top: 130px; */
  padding-top: 20px;
}

.elite_support_right_col {
  /* width: calc(60% / 1); */
  width: 100%;
}

.elite_support_left_col p {
  font-size: 26px;
  max-width: 450px;
  margin: 0px;
  color: var(--accent_color);
}

.elite_support_box {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.elite_support_content {
  padding: 32px;
  backdrop-filter: blur(15px);
}

.elite_support_content.has_image {
  position: absolute;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 20%, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0) 100%);
  padding-bottom: 10px;
  width: 100%;
  left: 0;
  padding-top: 75px;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.elite_support_box p {
  margin-top: 0px;
  font-size: 20px;
  margin-bottom: 10px;
}

.elite_support_box a {
  text-transform: uppercase;
  letter-spacing: 1.12px;
  color: var(--accent_color);
  transition: .2s linear;
  font-size: 14px;
  margin-top: 24px;
  display: block;
  font-weight: 600;
}

.elite_support_box a:hover {
  color: #fff;
  transition: .2s linear;
}

.elite_support_box a i {
  margin-left: 5px;
}

.elite_support_box ul {
  padding-left: 20px;
  margin-top: 24px;
  margin-bottom: 32px;
}

.elite_support_box ul li {
  color: #fff;
  list-style-image: url(../img/check_icon.svg);
  font-size: 20px;
  margin-bottom: 10px;
}

.elite_support_box ul li:last-child {
  margin-bottom: 0px;
}

.about_eq_section_section {
  position: relative;
  height: 80dvh;
  display: flex;
  align-items: center;
}

.about_eq_section_section .container {
  position: relative;
  z-index: 2;
}

.about_eq_image {
  position: absolute;
  left: 0;
  top: 0;
  width: 55%;
  height: 100%;
}

.about_eq_image::before {
  content: '';
  background-image: linear-gradient(-90deg, #000000 15%, rgba(255, 255, 255, 0) 50%);
  height: 100%;
  width: 100%;
  position: absolute;
  right: 0px;
  top: 0px;
}

.about_eq_image img {
  height: 100%;
  width: auto;
  object-fit: cover;
}

.about_eq_section_section .row {
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
}

.about_col {
  width: calc(100% / 2);
}

.about_col h2 {
  margin-top: 32px;
}

.benefits_section {
  position: relative;
  padding: 112px 0px;
}

.benefits_section::after {
  content: '';
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.benefits_section .container {
  position: relative;
  z-index: 2;
}

.benefits_content p {
  font-size: 20px;
}

.benefits_content h2 {
  max-width: 1000px;
  font-size: 68px;
  margin: 24px 0;
  margin-top: 40px;
}

.benefits_content p {
  max-width: 970px;
}

.benefits_row_wrapper {
  margin-top: 80px;
}

.benefit_left_col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 40%;
}

.benefits_left_content {
  max-width: 380px;
}

.benefits_left_content .row {
  gap: 24px;
  align-items: flex-start;
}

.benefits_left_content h4 {
  margin-top: 0px;
  margin-bottom: 24px;
  font-size: 26px;
  font-family: var(--secondary_font);
}

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

.benefits_right_col {
  width: 60%;
}

.benefits_right_col .btn-primary {
  font-size: 18px;
  padding: 18px 25px;
}

.feature_box {
  /* border: 1px solid rgba(255, 255, 255, 0.10); */
  background: rgba(1, 1, 1, 0.95);
  padding: 32px;
}

.feature_box .row {
  justify-content: space-between;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 60px;
}

.feature_box_head h3 {
  font-size: 50px;
  margin: 0px;
}

.feature_price h3 {
  font-size: 68px;
  text-transform: lowercase;
  margin: 0px;
}

.feaure_list {
  margin-top: 64px;
}

.feaure_list ul {
  display: flex;
  gap: 20px 80px;
  flex-wrap: wrap;
  padding-left: 25px;
  margin-bottom: 64px;
}

.feaure_list ul li {
  list-style-image: url(../img/check_icon.svg);
  font-size: 18px;
  color: #fff;
  width: calc(100% / 2 - 40px);
}

.feaure_list ul li:last-child {
  margin-bottom: 0px;
}

.team_members_grid {
  margin-top: 80px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: self-start;
}

.team_members_grid.column-3 .team_member {
  width: calc(100% / 3 - 32px);
}

.team_members_grid.column-4 .team_member {
  width: calc(100% / 4 - 36px);
}

.team_member img {
  width: 100%;
  height: auto;
}

.team_members_grid.column-3 .team_member img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.team_members_grid.column-4 .team_member img {
  aspect-ratio: 1;
  object-fit: cover;
}

.team_member h3 {
  text-align: center;
  font-family: "Exo 2";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 5px;
}

.team_member h4 {
  color: rgba(255, 255, 255, 0.60);
  text-align: center;
  font-family: "Exo 2";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0px;
  word-break: break-word;
}

.team_member p {
  text-align: center;
  margin: 0;
}

.team_member .social_links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
}

/* Hide original team member post content */
.team_member .team_member_post_content ul {
  display: none;
  color: #fff;
  margin-top: 10px;
  border: solid 1px #ff5c0078;
  padding: 20px 30px;
  padding-right: 10px;
}

.team_member_post_content h3 {
  font-size: 22px;
  font-family: var(--secondary_font);
  font-weight: 600;
  margin-bottom: 15px;
}

.team_member_post_content_title {
  text-align: center;
  margin-top: 5px;
  gap: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team_member_post_content_title i {
  font-size: 14px;
  top: 2px;
  position: relative;
  transform-origin: center;
  transition: transform 0.3s ease;
}

.team_member_post_content_title.active i {
  transform: rotate(45deg);
  top: 1px;
}

/* Style the floating content box */
.team-member-floating-content {
  font-size: 14px;
  line-height: 1.5;
}

.team-member-floating-content ul {
  margin: 0;
  padding-left: 20px;
}

.team-member-floating-content li {
  margin-bottom: 5px;
}

/* Make team members feel interactive */
.team_member {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 6;
}

.team_member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team_section .page_section_footer {
  margin-top: 80px;
}

.video_section .video_wrapper {
  max-width: 1200px;
  margin: 0px auto;
  margin-top: 60px;
  padding: 0 30px;
}

.video_section .video_wrapper iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.testimonials_slider {
  margin-top: 80px;
}

.testimonial_item {
  border: solid 1px rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  padding: 32px;
}

.testimonial_item .rating {
  color: var(--accent_color);
  font-size: 20px;
  margin-bottom: 24px;
}

.testimonial_author {
  display: flex;
  gap: 16px;
}

.testimonial_author h4 {
  margin: 0px;
  margin-bottom: 5px;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
}

.cta_section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.cta_section::after {
  content: '';
  background-color: rgba(0, 0, 0, 0.65);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta_section .container {
  position: relative;
  z-index: 2;
}

.cta_section h2 {
  max-width: unset;
}

.footer {
  background-color: #000;
  /* padding: 80px 0px; */
}

.footer .container {
  display: flex;
}

.footer .footer_col {
  width: calc(100% / 4 - 32px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.footer .footer_col h4 {
  margin: 0;
  margin-bottom: 16px;
}

.footer .footer_col ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer .footer_col ul li a {
  color: rgba(255, 255, 255, 0.60);
  font-family: "Exo 2";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.footer_bottom {
  border-top: solid 1px rgba(255, 255, 255, 0.10);
  padding: 32px 0;
  /* margin-top: 80px; */
}

.footer_bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_bottom .container p {
  margin: 0;
  color: rgba(255, 255, 255, 0.60);
}

/* Sections Css */
/* Inner page Banner */
.inner_banner {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 112px 0px;
}

.inner_banner::after {
  content: '';
  background: rgba(0, 0, 0, 0.82);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
}

.inner_banner .container {
  position: relative;
  z-index: 2;
}

.inner_banner_content.align-center {
  margin: 0px auto;
  text-align: center;
  max-width: 768px;
}

.inner_banner_content .row {
  gap: 16px;
}

.inner_banner_content h1 {
  margin: 0px;
}

.inner_banner_content p {
  margin: 32px 0px;
  font-size: 20px;
}

.inner_banner_content .btn-primary {
  border: 1px solid var(--accent_color);
  color: #000;
}

.inner_banner_content .btn-primary:hover {
  background: transparent;
  color: var(--accent_color);
}

.inner_banner_content .btn-outline:hover {
  color: #000;
}

/* Features Section */
.features_content h2 {
  margin: 16px 0px;
}

.features_content p {
  font-size: 20px;
}

.features_content {
  max-width: 770px;
}

.features_icon_grid {
  padding: 80px 0px;
}

.feature_icon_col {
  width: calc(100% / 4 - 16px);
}

.feature_icon_col h3 {
  font-size: 26px;
  margin-bottom: 16px;
  margin-top: 24px;
}

/* Faq Banner */
.inner_banner_tall {
  position: relative;
  height: 80dvh;
  display: flex;
  align-items: center;
  padding-top: 0;
}

.inner_banner_tall .row {
  align-items: center;
  gap: 100px;
  width: 100%;
}

.inner_banner_tall_left_col {
  width: 55%
}

.inner_banner_tall_right {
  width: 45%;
}

.inner_banner_tall_right::after {
  /* black to transparent gradient from bottom to top */
  content: '';
  background: linear-gradient(to top, rgb(0 0 0), transparent);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0px;
  bottom: 0;
  z-index: 1;
}

.inner_banner_tall_left_col h1 {
  margin: 0px;
}

.inner_banner_tall_left_col p {
  margin: 24px 0px;
  font-size: 20px;
}

.inner_banner_tall_left_col .row {
  gap: 16px;
}

.inner_banner_tall_left_col .btn-primary {
  border: 1px solid var(--accent_color);
  color: #fff;
}

.inner_banner_tall_left_col .btn-primary:hover {
  background: transparent;
  color: #fff;
}

.inner_banner_tall_left_col .btn-outline {
  color: #fff;
}

.inner_banner_tall_left_col .btn-outline:hover {
  color: #fff;
}

.inner_banner_tall_right {
  position: absolute;
  right: 0px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  top: 0;
  padding-left: 30px;
}

.inner_banner_tall_right img {
  width: 100%;
  height: 95%;
  object-fit: cover;
  border-top-left-radius: 35%;
  overflow: hidden;
  aspect-ratio: 1;
}

/* Contact Us Section */
.contact_section {
  position: relative;
  padding: 0;
}

.contact_section .row {
  align-items: center;
  gap: 100px;
  justify-content: flex-end;
}

.contact_section .fullwidth .row {
  justify-content: center;
  text-align: center;
}

.form_wrapper {
  text-align: left;
}

.contact_col {
  width: calc(100% / 2 - 50px);
}

.contact_left_col {
  position: absolute;
  left: 0px;
  height: 100%;
}

.contact_left_col img {
  height: 100%;
  object-fit: cover;
}

.contact_right_col {
  padding: 80px 0;
}

.contact_right_col .page_section_subhead {
  position: relative;
}

.contact_right_col h2 {
  margin: 24px 0px;
}

.contact_right_col p {
  font-size: 20px;
}

.form input {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

.form input::placeholder,
.form textarea::placeholder {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.60);
  font-family: var(--primary_font);
}

.gform_required_legend {
  display: none !important;
}

body .gform_wrapper .gform_body .gform_fields .gfield .gfield_label {
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
  display: block;
  width: 100%;
  text-transform: capitalize;
}

body .gform_wrapper .gform_body .gform_fields .gfield .gfield_label .gfield_required {
  color: var(--accent_color);
  font-size: 19px;
  display: inline-block;
  margin-left: 1px;
}

body .gform_wrapper .gform_body .gform_fields .gfield input[type=text],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=email],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=tel],
body .gform_wrapper .gform_body .gform_fields .gfield textarea {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.05);
  min-height: 35px;
  transition: border .2s linear;
  min-height: 50px;
  color: #fff;
}

body .gform_wrapper .gform_body .gform_fields .gfield input[type=text]::placeholder,
body .gform_wrapper .gform_body .gform_fields .gfield input[type=email]::placeholder,
body .gform_wrapper .gform_body .gform_fields .gfield input[type=tel]::placeholder,
body .gform_wrapper .gform_body .gform_fields .gfield textarea::placeholder {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.60);
  font-family: var(--primary_font);
}

.form textarea {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.05);
  min-height: 190px;
  box-sizing: content-box;
  width: 100%;
  transition: border .2s linear;
}

body .gform_wrapper .gform_body .gform_fields .gfield input[type=text]:focus,
body .gform_wrapper .gform_body .gform_fields .gfield input[type=email]:focus,
body .gform_wrapper .gform_body .gform_fields .gfield input[type=tel]:focus,
body .gform_wrapper .gform_body .gform_fields .gfield textarea:focus {
  border: 1px solid var(--accent_color);
  outline: none;
  transition: border .2s linear;
}

body .gform_wrapper .gform_footer input[type=submit] {
  cursor: pointer;
  width: fit-content;
  display: inline-block;
  margin-top: 30px;
  background-color: var(--accent_color) !important;
  min-width: 100px;
  border: 1px solid var(--accent_color) !important;
  text-transform: uppercase !important;
  font-family: 'Exo 2' !important;
  font-weight: 600 !important;
  padding: 12px 24px !important;
}

body .gform_wrapper .gform_footer input[type=submit]:hover {
  background: transparent;
}

/* Contact Icon Box Section */
.contact_icon_section .row {
  padding: 80px 0px;
  gap: 32px;
}

.contact_icon_box_col h3 {
  margin-top: 24px;
  margin-bottom: 0px;
}

.contact_icon_box_col p {
  margin-top: 16px;
  margin-bottom: 24px;
}

.contact_icon_box_col a {
  color: #fff;
  text-decoration: underline;
}

.contact_icon_box_col a:hover {
  color: var(--accent_color);
}

.contact_icon_box_col {
  width: calc(100% / 3 - 16px);
}

.social_icons ul {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.social_icons ul li {
  list-style-type: none;
}

.social_icons ul li i {
  font-size: 30px;
}

.page_section.bio_section {
  padding-top: 200px;
  /* min-height: 91dvh; */
}

.bio_section .container {
  max-width: 900px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
}

/* Ambassador Section */
.bio_section .row {
  gap: 100px;
  justify-content: flex-end;
}

.bio_col {
  width: calc(100% / 2 - 50px);
}

.bio_left_col {
  position: absolute;
  left: 0px;
}

.bio_image {
  position: relative;
  /* align-self: baseline; */
  flex-basis: 268px;
  flex-shrink: 0;
}

.bio_image img {
  /* position: sticky; */
  /* top: 100px; */
  /* height: 100%; */
}

.bio_section h2 {
  margin: 0px;
  margin-bottom: 10px;
}

.bio_position {
  margin-bottom: 20px;
}

.college_info_content .college_info {
  font-size: 20px;
  margin-bottom: 0px;
  /* margin-top: 32px; */
}

.college_info_content .achivements {
  font-size: 16px;
}

.bio_header {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
}

.member_post_content {
  margin-top: 30px;
}

.bio_section ul {
  /* padding-left: 15px; */
  /* margin-bottom: 25px; */
}

.bio_section ul li {
  list-style-type: none;
  list-style-image: url(../img/orange_right_icon.svg);
  color: #fff;
  font-size: 17px;
  margin-bottom: 5px;
  line-height: 1.5em;
}

.bio_section ul li:last-child {
  margin-bottom: 0px;
}

.bio_section h3 {
  margin-bottom: 20px;
  margin-top: 0px;
}

.bio_section .bio_section {
  margin-bottom: 40px;
  padding: 0;
}

.bio_section .bio_section:last-child {
  margin-bottom: 0px;
}

.bio_section ul {
  justify-content: flex-start;
  padding: 0px;
  padding-left: 25px;
}

.bio_section ul li a i {
  font-size: 24px;
}

/* Media Queries */
@media(max-width: 1340px) {
  .links_wrapper ul {
    gap: 12px;
  }
}

@media(max-width: 1200px) {
  .menu_toggle {
    display: block;
    text-align: right;
  }

  .links_wrapper {
    position: fixed;
    display: none;
    left: 0;
    width: 100%;
    background-color: #000;
    top: 141px;
    height: calc(100dvh - 88px);
    overflow: auto;
  }

  .scrolled .links_wrapper {
    top: 88px;
  }

  .links_wrapper ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    margin-top: 0px;
    min-height: 80%;
    overflow: auto;
    gap: 20px;
    opacity: 0;
    transform: translateY(10%);
    transition: all 500ms linear;
  }

  .links_wrapper.active ul {
    opacity: 1;
    transform: none;
  }

  .links_wrapper ul li {
    text-align: center;
  }

  .links_wrapper ul li a {
    font-size: 28px;
  }

  .menu_toggle i {
    color: #fff;
    font-size: 40px;
    cursor: pointer;
  }

  .close_icon {
    display: none;
  }

  .menu_open .open_icon {
    display: none;
  }

  .menu_open .close_icon {
    display: inline;
  }

  .has_sub_menu .sub_menu {
    position: relative;
    top: 0;
    margin-top: 20px;
  }

  .sub_menu_icon_list {
    width: calc(100% / 2 - 8px);
  }

  .stats_info:nth-child(odd) {
    padding: 16px 32px;
  }

  .card_box {
    padding: 20px;
  }

  .feature_box .row {
    flex-direction: column;
  }

  .benefits_row_wrapper>.row {
    align-items: center;
  }

  .bio_section .row {
    gap: 60px;
  }

  .bio_col {
    width: 100%;
    position: relative;
    padding: 0 15px;
  }

  .member_post_content .bio_section p {
    font-size: 16px;
  }
}

@media(max-width: 1024px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 42px;
  }

  .page_section.two_column_section {
    padding: 112px 0px;
  }

  .stats_section .container>.row {
    gap: 40px;
  }

  .stats_col {
    width: calc(100% / 2 - 20px);
  }

  .stats_col_right p {
    font-size: 18px;
  }

  .stats_info h3 {
    font-size: 68px;
  }

  .stats_info p {
    font-size: 18px;
  }

  .card_row {
    flex-direction: column;
  }

  .card_col {
    width: 100%;
  }

  .left_card_col {
    /* width: calc(65% - 15px); */
  }

  .right_card_col {
    width: calc(35% - 15px);
  }

  .process_cection .row {
    gap: 40px;
  }

  .process_info_wrapper {
    min-height: 600px;
  }

  .border_col {
    padding: 40px 15px 80px 15px
  }

  .border_col h3 {
    margin: 18px 0px;
    font-size: 24px;
  }

  .border_col p {
    font-size: 16px;
  }

  .elite_support_left_col p {
    font-size: 20px;
  }

  .team_members_grid {
    flex-wrap: wrap;
  }

  .team_members_grid.column-4 .team_member {
    width: calc(100% / 2 - 24px);
  }

  .benefits_content h2 {
    font-size: 42px;
  }

  .benefit_left_col {
    width: calc(45% / 1 - 32px);
  }

  .benefit_right_col {
    width: calc(55% / 1 - 32px);
  }

  .benefit_icon {
    width: 15%;
  }
}

@media(max-width: 992px) {
  .cards_wrapper .row {
    flex-direction: column;
  }

  .left_card_col,
  .right_card_col {
    width: 100%;
  }

  .feaure_list ul {
    flex-direction: column;
  }

  .feaure_list ul li {
    width: 100%;
  }

  .benefit_icon {
    width: 15%;
  }

  .footer .container {
    flex-wrap: wrap;
    gap: 32px 0px;
  }

  .footer .footer_col {
    width: calc(100% / 2 - 32px);
  }

  .links_wrapper ul li a {
    font-size: 22px;
  }
}

@media(max-width: 767px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 28px;
  }

  p {
    font-size: 16px;
  }

  .container {
    padding: 0px 15px;
  }

  .row {
    flex-direction: column;
  }

  .page_section {
    padding: 64px 0px;
  }

  .bio_section {
    padding-top: 150px;
  }

  .header .row {
    flex-direction: row;
  }

  .sub_menu_icon_list {
    width: 100%;
  }

  .sub_menu {
    padding: 12px 15px;
  }

  .banner_content p {
    font-size: 24px;
  }

  .page_section.two_column_section {
    padding: 80px 0px;
  }

  .col_wrapper {
    width: 100%;
  }

  .col_left {
    position: relative;
    top: 0px;
    transform: translatey(0px);
  }

  .stats_section .row {
    gap: 32px;
  }

  .stats_col {
    width: 100%;
  }

  .stats_wrapper .stats_info {
    width: 100%;
  }

  .stats_info h3 {
    font-size: 48px;
  }

  .stats_info p {
    font-size: 20px;
  }

  .process_left_col {
    position: relative;
    top: 0px;
    width: 100%;
  }

  .process_right_col {
    width: 100%;
  }

  .border_col {
    width: 100%;
  }

  .border_col:nth-child(odd) {
    border-bottom: 5px solid var(--accent_color);
  }

  .border_col:nth-child(even) {
    border-bottom: 0px;
    border-right: 5px solid var(--accent_color);
    border-left: 5px solid var(--accent_color);
  }

  .border_col:last-child {
    border-bottom: 5px solid var(--accent_color);
  }

  .border_col:nth-child(odd):before,
  .border_col:nth-child(even):before {
    transform: rotate(90deg);
    pointer-events: none;
  }

  .border_col:nth-child(odd):after {
    content: '';
    background-image: url(../img/icon_right.svg);
    position: absolute;
    bottom: -26px;
    left: 0px;
    right: 0px;
    height: 46px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(90deg);
    pointer-events: none;
  }

  .border_col:last-child:before {
    display: none;
  }

  .why_choose_us_content {
    max-width: 100%;
    flex-direction: column-reverse;
  }

  .elite_support {
    gap: 32px;
  }

  .elite_support_list {
    max-width: unset;
  }

  .benefits_col {
    width: 100%;
  }

  .about_col {
    width: 100%;
  }

  .elite_support_bg {
    display: none;
  }

  .team_members_grid.column-4 .team_member {
    width: 100%;
  }

  .footer .container {
    flex-direction: column;
  }

  .footer .footer_col {
    width: 100%;
    flex: auto;
  }

  .feature_box {
    padding: 0px;
  }

  .feature_price h3 {
    font-size: 42px;
  }

  .page_section.bio_section {
    padding-top: 140px;
  }

  .bio_header {
    flex-direction: column;
  }

  .process_content {
    padding: 0px 30px;
  }

  .team_members_grid {
    gap: 24px;
    flex-wrap: nowrap;
    overflow: auto;
  }

  .team_member {
    min-width: 300px;
  }

  .team_member .team_member_post_content {
    display: block;
  }

  .team_member_post_content h3 {
    display: none;
  }

  .team_member_post_content ul li {
    list-style-image: url(../img/orange_right_icon.svg);
    font-size: 16px;
    color: #fff;
    margin-bottom: 5px;
  }

  .contact_col {
    width: 100%;
  }

  .team_member h4 {
    font-size: 18px;
  }

  .links_wrapper ul li a {
    font-size: 18px;
  }

  .why_choose_us_content_left {
    max-width: 100%;
  }

  .about_eq_image {
    display: none;
  }

  .elite_support h3 {
    max-width: unset;
  }

  .why_choose_us_top {
    flex-direction: column-reverse;
  }

  .why_choose_us_content_right {
    position: relative;
    top: 0px;
    transform: translatey(0px);
    width: 100%;
  }
}

/* GSAP ScrollSmoother Styles - Simplified for compatibility */
body.gsap-scroll-ready {
  overflow: auto;
  margin: 0;
  padding: 0;
  height: 100%;
}

/* Default styles before ScrollSmoother initializes */
.smooth-scroll-wrapper {
  position: relative;
  overflow: visible;
  height: auto;
  width: 100%;
}

.smooth-scroll-container {
  position: relative;
  min-height: 100vh;
  width: 100%;
  padding-bottom: 141px;
}

/* Styles applied by ScrollSmoother after initialization */
body.gsap-scroll-ready .smooth-scroll-wrapper {
  overflow: hidden;
}

/* Fallback if initialization fails */
body.scroll-init-failed {
  overflow: auto;
}

body.scroll-init-failed .smooth-scroll-wrapper,
body.scroll-init-failed .smooth-scroll-container {
  position: relative;
  overflow: visible;
  height: auto;
}

.parallax-element {
  will-change: transform;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 125px;
}

.anchor-section {
  scroll-margin-top: 125px;
}

.parallax-banner {
  position: relative;
  overflow: hidden;
}

.parallax-banner .background_video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.parallax-title {
  will-change: transform;
  position: relative;
  z-index: 2;
}

.parallax-subtitle {
  will-change: transform;
  position: relative;
  z-index: 2;
}

.parallax-button {
  will-change: transform;
  position: relative;
  z-index: 2;
}

.parallax-title {
  text-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5);
}

[data-speed] {
  will-change: transform;
}

[data-speed="0.8"] {
  transition: transform 0.2s ease-out;
}

[data-speed="1.1"],
[data-speed="1.05"],
[data-speed="1.02"] {
  transition: transform 0.2s ease-out;
}

.parallax-section .parallax-image-container {
  overflow: hidden;
  will-change: transform;
}

.parallax-section .parallax-image-container img {
  width: 100%;
  display: block;
  transform-origin: center center;
}

.parallax-section .parallax-heading {
  will-change: transform;
}

.parallax-section .parallax-content {
  will-change: transform;
}

[data-speed] {
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reveal-section {
  position: relative;
}

.fade-in {
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation-name: fadeInUp;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.animate-stat {
  opacity: 0;
  transform: translateY(30px);
  animation-name: fadeInUp;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  animation-delay: var(--delay, 0s);
}

.count-up {
  display: inline-block;
  color: #000;
  position: relative;
  transition: transform 0.3s color 0.3s;
}

.count-up.animated {
  animation: numberPop 0.5s forwards;
}

@keyframes numberPop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
    color: #fff;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.reveal-section .fade-in,
.reveal-section .fade-in-up {
  opacity: 0;
  transition: opacity 0.6s, transform 0.6s;
}

.reveal-section.in-view .fade-in {
  opacity: 1;
}

.reveal-section.in-view .fade-in-up {
  opacity: 1;
  transform: translateY(0);
}

.process-progress-bar {
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
  margin-bottom: 15px;
  --progress-width: 0%;
}

.process-progress-bar:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--progress-width);
  /* Updated by JS */
  background-color: var(--accent_color);
  transition: width 0.5s ease;
}

/* Process Section Slider Styles */
.process-slider-section {
  overflow: hidden;
  position: relative;
}

.process-slider-container {
  display: flex;
  min-height: 100dvh;
  justify-content: end;
  gap: 10%;
}

/* Left fixed column */
.process-left-column {
  width: 30%;
  padding: 0;
  position: sticky;
  top: 0;
  /* Match header height */
  align-self: flex-start;
  height: calc(100vh - 125px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process_content {
  max-width: 90%;
  position: relative;
}

/* Progress indicator */
.process-progress {
  margin-top: 60px;
  position: relative;
}

.process-counter {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.current-step {
  color: var(--accent_color);
  font-weight: bold;
}

/* Right scrolling column */
.process-right-column {
  width: 50%;
  overflow: visible;
}

.process-slides-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-slide {
  width: 100%;
  height: 90vh;
  min-height: 600px;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.process-slide.active {
  opacity: 1;
}

.process_info_wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.process-slide-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  opacity: 0;
  transform-origin: center;
  will-change: transform, opacity;
}

.process-slide-content h4,
.process-slide-content p {
  will-change: transform, opacity;
}

.process-slide-content h4 {
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.process-slide-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  max-width: 90%;
}

/* Add a subtle highlight effect to active slides */
.process-slide.active .process_info_wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(135deg, rgba(255, 92, 0, 0.3) 0%, rgba(0, 0, 0, 0) 60%); */
  z-index: 1;
  border-radius: inherit;
  opacity: 0;
  animation: fadeInGradient 0.8s forwards 0.2s;
}

@keyframes fadeInGradient {
  to {
    opacity: 1;
  }
}

/* Improve background image contrast */
.process_info_wrapper::after {
  /* background: rgba(0, 0, 0, 0.5); */
  transition: background 0.5s ease;
}

.process-slide.active .process_info_wrapper::after {
  background: rgba(0, 0, 0, 0.5);
}

.step-number {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent_color);
  font-family: var(--secondary_font);
}

@media (max-width: 992px) {
  .process-slider-container {
    flex-direction: column;
  }

  .process-left-column,
  .process-right-column {
    width: 100%;
  }

  .process-left-column {
    position: relative;
    top: 0;
    height: auto;
    padding: 40px 0;
  }

  .process-slide {
    height: auto;
    min-height: 400px;
    opacity: 1;
  }
}

/* Original process section styles - keeping for compatibility */
.process_cection .row {
  align-items: flex-start;
}

.process_left_col {
  position: sticky;
  top: 0;
  width: 40%;
}

.process_right_col {
  width: 60%;
}

/* Card Animation Styles */
.cards_section .card_box {
  transform-origin: center;
  will-change: transform, opacity;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.cards_section .card_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cards_section .card-content {
  will-change: transform, opacity;
}

.cards_section .card-image {
  transform-origin: center;
  will-change: transform, opacity;
  transition: transform 0.5s ease;
}

.cards_section .card_img_col:hover .card-image {
  transform: scale(1.03);
}

/* Hide cards initially to prevent flash before animations */
.reveal-section .card-item,
.reveal-section .card-content {
  opacity: 0;
}

/* Card Header Animation Styles */
.cards_section .page_section_header {
  position: relative;
  margin-bottom: 40px;
  min-height: 800px;
  display: flex;
  align-items: center;
}

.section_header_image {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  max-width: 50%;
}

.cards_section .page_section_header h2,
.cards_section .page_section_header p {
  will-change: transform, opacity;
  max-width: 45%;
  margin: 24px 0;
}

/* Fix for reveal sections to prevent flash of unstyled content */
.reveal-section .page_section_header h2,
.reveal-section .page_section_header .page_section_subhead,
.reveal-section .page_section_header p {
  opacity: 0;
}

.holler-button-cta button::before {
  content: "\f071";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  margin-right: 5px;
}

@media(max-width: 767px) {
  .cards_section .page_section_header {
    flex-direction: column;
  }

  .section_header_image {
    position: relative;
    max-width: 90%;
    top: auto;
    transform: unset;
    margin-left: 10%;
  }

  .page_section_header p,
  .page_section_header h2 {
    max-width: unset;
  }

  .cards_section .page_section_header h2,
  .cards_section .page_section_header p {
    max-width: unset;
  }
}
