@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html {
  margin-top: 0px !important;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: Montserrat, sans-serif !important;
}

button {
  font-family: Montserrat, sans-serif !important;
}

/* header START */
.header-navbar__end {
  justify-content: flex-end;
  display: flex;
  margin-left: auto;
}

/* Desktop Nav Menu Reset and Layout - Robust selectors targeting nav wrapper children */
.header-navbar__menu ul {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
  gap: 8px;
}

.header-navbar__menu li {
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  list-style: none !important;
  list-style-type: none !important;
  position: relative !important;
}

.header-navbar__menu li a {
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 24px !important;
  text-align: left !important;
  padding: 15px !important;
  text-transform: none !important;
  transition: opacity 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
  gap: 10px;
}

/* .header-navbar__menu li a:hover {
  opacity: 0.8 !important;
} */

header .header-navbar {
  padding: 0 150px;
  width: 100%;
}

@media only screen and (max-width: 1300px) {
  header .header-navbar {
    padding: 0 24px;
  }
}

@media only screen and (max-width: 1200px) and (min-width: 768px) {
  header .header-navbar {
    padding: 0 30px;
  }
}

.header-navbar .header-navbar__menu {
  margin: 0;
}

/* Caret Dropdown Chevron for Desktop Submenus */
.header-navbar__menu li.menu-item-has-children::after,
.header-navbar__menu li.page_item_has_children::after {
  content: '\f107' !important;
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900 !important;
  margin-left: -12px !important;
  margin-right: 12px !important;
  color: #ffffff !important;
  font-size: 11px !important;
  transition: transform 0.3s ease !important;
  pointer-events: none !important;
}

.header-navbar__menu li.menu-item-has-children:has(.trigger-arrow)::after,
.header-navbar__menu li.page_item_has_children:has(.trigger-arrow)::after {
  content: none !important;
}

.header-navbar__menu li.active.menu-item-has-children::after,
.header-navbar__menu li.active.page_item_has_children::after {
  transform: rotate(180deg) !important;
}

.header-navbar__menu li .trigger-arrow {
  transition: transform 0.3s ease !important;
}

.header-navbar__menu li.active .trigger-arrow {
  transform: rotate(180deg) !important;
}

/* Submenu layout on Desktop */
.header-navbar__menu ul.children,
.header-navbar__menu ul.sub-menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  background-color: rgba(24, 25, 29, 0.95) !important;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2) !important;
  min-width: 220px !important;
  padding: 10px 0 !important;
  border-radius: 8px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(10px) !important;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s ease-in-out !important;
  z-index: 999 !important;
}

.header-navbar__menu li:hover>ul.children,
.header-navbar__menu li:hover>ul.sub-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.header-navbar__menu ul.children li,
.header-navbar__menu ul.sub-menu li {
  width: 100% !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.header-navbar__menu ul.children li a,
.header-navbar__menu ul.sub-menu li a {
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  padding: 10px 20px !important;
  display: block !important;
  text-align: left !important;
  text-transform: none !important;
  transition: background-color 0.2s ease !important;
}

.header-navbar__menu ul.children li a:hover,
.header-navbar__menu ul.sub-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  opacity: 1 !important;
}

/* Language and Contact Buttons */
.header-language {
  background-color: transparent;
  border: none;
  padding: 15px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  white-space: nowrap;
  outline: none;
}

.header-language:hover {
  color: #FC3441 !important;
}

.header-language:hover .current-label {
  color: #FC3441 !important;
}

.header-contact-btn {
  background-color: #FC3441;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  height: 54px;
  max-width: max-content;
  border: none;
  padding-left: 2rem;
  padding-right: 2rem;
  white-space: nowrap;
  font-family: inherit;
}

.header-contact-btn:hover {
  background-color: #FC3441CC;
}

.header-navbar .header-navbar__start {
  background-color: transparent;
  gap: 30px;
}

/* mobile menu START */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: flex;
  justify-content: flex-end;
}

.mobile-drawer.active {
  visibility: visible;
  opacity: 1;
}

.mobile-drawer__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.mobile-drawer__content {
  position: relative;
  height: 100%;
  width: 85%;
  max-width: 400px;
  background-color: rgba(18, 18, 18, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  box-sizing: border-box;
  color: #ffffff;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.mobile-drawer.active .mobile-drawer__content {
  transform: translateX(0);
}

.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mobile-drawer__logo {
  height: 46px;
  max-height: 46px;
  display: flex;
  align-items: center;
}

.mobile-drawer__logo img,
.mobile-drawer__logo svg {
  height: 40px;
  width: auto;
  color: #ffffff;
}

.mobile-drawer__close {
  background: transparent;
  border: none;
  color: #ffffff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-drawer__close:hover {
  color: #FC3441;
  transform: rotate(90deg);
}

.mobile-drawer__close svg {
  width: 24px;
  height: 24px;
}

.mobile-drawer__divider {
  height: 0px;
  border: 1px solid #D8D7D7;
  margin: 0 0 30px 0;
  width: 100%;
}

.mobile-drawer__nav {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mobile-drawer__nav::-webkit-scrollbar {
  display: none;
}

.mobile-drawer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-drawer__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px 0;
  gap: 16px;
}

.mobile-drawer__link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  transition: color 0.3s ease;
  text-transform: capitalize;
  width: 100%;
  box-sizing: border-box;
}

.mobile-drawer__link:hover {
  color: #FC3441;
}

.mobile-drawer__link .submenu-arrow {
  transition: transform 0.3s ease;
  color: currentColor;
  width: 16px;
  height: 16px;
}

.mobile-drawer__item.active>.mobile-drawer__link {
  color: #FC3441;
  font-weight: 500;
}

.mobile-drawer__item.active>.mobile-drawer__link .submenu-arrow {
  transform: rotate(180deg);
}

.mobile-drawer__submenu {
  /* padding-top: 16px; */
  padding-left: 8px;
  padding-right: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-sizing: border-box;
}

.submenu-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.submenu-group__title {
  color: #FC3441;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px;
  gap: 15px;
}

.submenu-group__list {
  list-style: none;
  padding: 0 0 0 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.submenu-group__item {
  display: block;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 15px;
}

.submenu-group__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

.submenu-group__link:hover {
  color: #FC3441;
  padding-left: 5px;
}

.mobile-drawer__footer {
  margin-top: auto;
  padding-top: 20px;
  width: 100%;
}

.mobile-drawer__contact-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 54px;
  background-color: #FC3441;
  border-radius: 100px;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none !important;
  transition: background-color 0.3s ease;
  border: none;
  outline: none;
  box-sizing: border-box;
}

.mobile-drawer__contact-btn:hover {
  background-color: #FC3441CC;
}

/* mobile menu END */
.header-navbar__burger>a i {
  font-size: 16px;
  display: block
}

.header-navbar__burger ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: none
}

.header-navbar__burger ul li {
  margin: 0;
  position: relative;
}

.header-navbar__burger ul li:not(:last-child) {
  margin-bottom: .5rem
}

.header-navbar__burger ul li.menu-item-has-children::after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: auto;
  content: '\f105';
  color: rgba(7, 36, 86, .25);
  font-size: 18px;
  position: absolute;
  right: 0;
  top: .2rem;
  transition: transform .25s
}

.header-navbar__burger ul li.menu-item-has-children.active::after {
  transform: rotate(90deg)
}

.header-navbar__burger ul li a {
  color: inherit
}

.header-navbar__burger ul li ul {
  padding-left: 2rem;
  margin-top: .5rem;
  display: none
}

.header-navbar__burger ul li:focus-within>ul {
  display: block
}

.header-navbar__burger>ul {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff;
  padding: 1.5rem 2rem
}


.header-navbar__burger>ul::before:hover {
  color: rgba(7, 36, 86, .35)
}

.header-navbar__burger>ul>li {
  padding: .25rem 0
}

.header-navbar__burger>ul>li:not(:last-child) {
  margin-bottom: 0
}

.header-navbar__burger>ul>li.current-menu-item::before {
  position: absolute;
  top: 0;
  left: -2rem;
  bottom: 0;
  display: block;
  width: 3px;
  content: '';
  background-color: #ffc107
}

.header-navbar__burger>ul>li.menu-item-has-children::after {
  top: .5rem
}

.header-navbar__burger>ul>li>a {
  font-size: 1.125rem
}

header.site-header {
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 9999;
  display: flex;
  align-items: center;
  height: 94px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 1024px) {
  header.site-header {
    height: 74px;
  }
}

#menu-header {
  z-index: 10;
  padding: 0px;
  top: 134px;
  background: linear-gradient(180deg, #E5A559 0%, rgba(0, 51, 102, 0.4) 100%);
}

#menu-header .menu-item {
  padding: 0px;
  width: 100%;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

#menu-header .menu-item a {
  color: white;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  display: flex;
  width: 100%;
  height: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-family: Noto Sans JP, sans-serif !important;
}

#menu-header .menu-item a.active {
  color: #003366;
  background-color: white;
}

header.site-header .header-navbar__burger {
  display: none;
  align-items: center;
  justify-content: center;
}

header.site-header .header-navbar__burger>a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

header.site-header .header-navbar__burger>a .icon-hamburger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 20px;
}

header.site-header .header-navbar__burger>a .icon-hamburger .nth {
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 50px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}

header.site-header .header-navbar__burger>a .icon-hamburger .nth-1 {
  width: 25px;
  top: 0%;
}

header.site-header .header-navbar__burger>a .icon-hamburger .nth-2 {
  width: 19px;
}

header.site-header .header-navbar__burger>a .icon-hamburger .nth-3 {
  width: 30px;
  bottom: 0;
  top: auto;
}

/* header.site-header .header-navbar__burger>a.active .icon-hamburger .nth-1 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.3s ease;
}

header.site-header .header-navbar__burger>a.active .icon-hamburger .nth-2 {
  opacity: 0;
}

header.site-header .header-navbar__burger>a.active .icon-hamburger .nth-3 {
  bottom: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
} */


@media (max-width: 1024px) {
  #menu-header {
    top: 60px;
  }
}

@media (max-width: 1536px) {
  .header-navbar .header-navbar__menu .menu-item a {
    font-size: 18px;
  }
}


@media only screen and (max-width: 1023px) {
  header.site-header .header-navbar__burger {
    display: inline-flex;
  }

  .header-navbar .header-navbar__burger>ul>li>a,
  .header-navbar .hp-menu--user-account li a {
    justify-content: center;
  }
}

@media not all and (min-width: 768px) {
  .content-gap-md {
    gap: 15px !important;
  }
}

.header-navbar__menu>ul {
  overflow: visible;
}


@media only screen and (max-width: 1023px) {
  .header-navbar__burger {
    display: inline-flex !important;
  }

  .header-navbar__menu {
    display: none !important;
  }

  .header-navbar_login {
    display: none;
  }
}


@media screen and (max-width: 1440px) {
  .header-navbar__menu ul li {
    font-size: 18px;
    font-weight: 700;
    padding: 0 20px
  }
}

@media screen and (max-width: 1220px) {
  .header-navbar__menu ul li {
    font-size: 14px;
    font-weight: 700;
    padding: 0 15px
  }
}


.contentInner {
  max-width: 1240px;
  width: 100%;
}

@media screen and (max-width: 1536px) {
  .contentInner {
    max-width: 1200px;
  }
}

@media screen and (max-width: 1240px) {
  .contentInner {
    max-width: 100%;
  }
}

.transition-opacity {
  transition: opacity 0.5s;
}

.bgFooter {
  background-color: #2D2D2D;
}

/* Sticky Scrolled Header Style */

header.site-header .header-logo a {
  color: #ffffff;
  transition: color 0.3s ease;
}

header.site-header .header-logo .logo-scrolled {
  display: none !important;
}

header.site-header.scrolled .header-logo .logo-default {
  display: none !important;
}

header.site-header.scrolled .header-logo .logo-scrolled {
  display: block !important;
}

header.site-header .header-navbar__menu li a,
header.site-header .header-language {
  transition: color 0.3s ease;
}

header.site-header.scrolled {
  background-color: #ffffff !important;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
}

header.site-header.scrolled .header-logo a {
  color: #333;
  /* Main brand color */
}

header.site-header.scrolled .header-navbar__menu li a {
  color: #333 !important;
}

header.site-header.scrolled .header-navbar__menu li.menu-item-has-children::after,
header.site-header.scrolled .header-navbar__menu li.page_item_has_children::after {
  color: #333 !important;
}

header.site-header.scrolled .header-language {
  color: #333;
}

header.site-header.scrolled .current-label {
  color: #333;
}

.header-contact-btn.scrolled {
  background-color: #fff;
  border: 1px solid #FC3441;
  color: #FC3441;
}

.header-contact-btn.scrolled:hover {
  background-color: #FC3441CC;
  color: #fff;
}

.current-label {
  width: 30px;
  color: #ffffff;
  text-align: left;
  transition: color 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

/* Services Mega Menu Dropdown Style */
.header-navbar__menu ul.mega-menu-sub {
  background-color: #ffffff !important;
  min-width: 500px !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  padding: 15px 15px !important;
  box-shadow: 4px 4px 4px #0000000d !important;
  border-radius: 5px !important;
  gap: 20px !important;
  position: absolute;
  top: 64px !important;
  left: 250px !important;
  transform: translateX(-50%) translateY(10px) !important;
}

.header-navbar__menu ul.mega-menu-sub::before {
  content: "" !important;
  position: absolute !important;
  top: -35px !important;
  left: 0 !important;
  right: 0 !important;
  height: 35px !important;
  background: transparent !important;
  z-index: -1 !important;
}

.header-navbar__menu li:hover>ul.mega-menu-sub {
  transform: translateX(-50%) translateY(0) !important;
}

.header-navbar__menu ul.mega-menu-sub li.mega-menu-column {
  flex: 1 !important;
  display: block !important;
  width: auto !important;
}

.header-navbar__menu ul.mega-menu-sub h4.mega-menu-title {
  color: #FC3441 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  margin: 0 0 30px 0 !important;
  padding: 0 !important;
  line-height: 20px !important;
  font-family: 'Montserrat', sans-serif !important;
}

.header-navbar__menu ul.mega-menu-sub ul.mega-menu-posts {
  display: flex !important;
  flex-direction: column !important;
  gap: 30px !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.header-navbar__menu ul.mega-menu-sub ul.mega-menu-posts li {
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.header-navbar__menu ul.mega-menu-sub ul.mega-menu-posts li a {
  color: #333333 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 0 !important;
  line-height: 20px !important;
  text-transform: none !important;
  transition: color 0.1s ease !important;
  display: inline-block !important;
}

.header-navbar__menu ul.mega-menu-sub ul.mega-menu-posts li a:hover {
  color: #FC3441 !important;
  opacity: 1 !important;
}

.common-layout {
  padding: 0 150px;
  overflow-x: hidden;
}

@media only screen and (max-width: 1300px) {
  .common-layout {
    padding: 0 100px;
  }
}

@media only screen and (max-width: 1200px) {
  .common-layout {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 768px) {
  .common-layout {
    padding: 0 20px;
  }
}

.content-overview {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 50px;
  align-items: stretch;
  height: 100%;
  max-width: 1037px;
}

.title {
  font-size: 30px;
  font-weight: 500;
  line-height: 37px;
  letter-spacing: 0.3em;
  text-align: left;
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin: 0;
}

.other-global {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 10;
}

.title-h2 {
  font-size: 50px;
  font-weight: 500;
  line-height: 61px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin: 0;
}

.title-h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: left;
  max-width: 763px;
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  position: relative;
  z-index: 10;
  margin: 0;
  max-width: 1037px;
}

.action-button {
  gap: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.action-button a {
  text-decoration: none;
}

.about-btn {
  padding: 15px 20px;
  border-radius: 100px;
  border: 1px solid #ffffff;
  display: flex;
  gap: 10px;
  cursor: pointer;
}

.about-btn p {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: #fff;
  white-space: nowrap;
  margin: 0;
  text-decoration: none !important;
}

.about-btn svg {
  color: #fff;
}

.contact-btn {
  background-color: #FC3441;
  border-radius: 100px;
  cursor: pointer;
  max-width: max-content;
  border: none;
  padding: 15px 20px;
  white-space: nowrap;
  font-family: inherit;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-btn:hover {
  background-color: #FC3441CC;
}

.contact-btn p {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: #fff;
  white-space: nowrap;
  margin: 0;
}

.contact-btn svg {
  color: #fff;
}

/*--------------------------------------------------------------
Featured Services Grid Start
--------------------------------------------------------------*/
.banner-slide-item {
  box-sizing: border-box;
  height: 892px !important;
  padding-top: 154px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .banner-slide-item {
    min-height: auto !important;
    padding-top: 104px;
  }
}

.featured-services-bar {
  padding: 0 150px;
  gap: 0px;
  justify-content: center;
  height: 251px;
}

.featured-service-card {
  text-decoration: none !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
  gap: 15px;
}

.featured-service-card.bg-red-card {
  background-color: #FC3441;
  color: #ffffff !important;
}

.featured-service-card.bg-light-card {
  background-color: #D8D7D7;
  color: #4D4E4E !important;
}

.featured-service-card.bg-dark-card {
  background-color: #707070;
  color: #ffffff !important;
}

.featured-service-card.bg-red-card .card-title,
.featured-service-card.bg-dark-card .card-title {
  color: #ffffff !important;
  line-height: 25px;
  margin: 0;
}

.featured-service-card.bg-light-card .card-title {
  color: #4D4E4E !important;
  line-height: 25px;
  margin: 0;
}

.featured-service-card.bg-red-card .card-excerpt,
.featured-service-card.bg-dark-card .card-excerpt {
  color: #FFFFFF !important;
  margin: 0;
}

.featured-service-card.bg-light-card .card-excerpt {
  color: #4D4E4E !important;
  margin: 0;
}

.card-excerpt {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.featured-service-card-content a {
  text-decoration: none;
}

.featured-service-card.bg-red-card .featured-service-card-content a span,
.featured-service-card.bg-dark-card .featured-service-card-content a span {
  color: #FFFFFF;
}

.featured-service-card.bg-light-card .featured-service-card-content a span {
  color: #4D4E4E;
}

.featured-service-card.bg-red-card .featured-service-card-content a svg,
.featured-service-card.bg-dark-card .featured-service-card-content a svg {
  color: #FFFFFF;
}

.featured-service-card.bg-light-card .featured-service-card-content a svg {
  color: #4D4E4E;
}

/* Auto-invert dark image icons inside dark/red cards to make them white */
.featured-service-card.bg-red-card img.filter-icon,
.featured-service-card.bg-dark-card img.filter-icon {
  filter: brightness(0) invert(1);
}

/* Sub-arrow and link colors */
.featured-service-card.bg-red-card svg,
.featured-service-card.bg-dark-card svg {
  color: #ffffff;
}

.featured-service-card.bg-light-card svg {
  color: #333333;
}

.featured-service-card-content {
  gap: 15px;
  max-width: 255px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .featured-service-card-content {
    width: auto !important;
    max-width: none !important;
  }
}

/* Responsiveness overrides for the banner slide item and featured services bar */
@media (max-width: 768px) {
  .banner-slide-item {
    height: auto !important;
    aspect-ratio: auto !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .banner-slide-item .common-layout {
    position: relative !important;
    top: 0 !important;
    height: auto !important;
    padding: 0 24px;
  }

  .banner-slide-item .featured-services-bar {
    position: relative !important;
    bottom: 0;
    left: 0;
    height: auto !important;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }
}

.commonLayout {
  overflow-x: hidden;
  padding: 0 150px;
}

@media screen and (max-width: 1360px) {
  .commonLayout {
    padding: 0 100px;
  }
}

@media screen and (max-width: 1200px) {
  .commonLayout {
    padding: 0 30px;
  }
}


@media screen and (max-width: 480px) {
  .commonLayout {
    padding: 0 24px;
  }
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.heading .title {
  font-size: 30px;
  font-weight: 600;
  line-height: 37px;
  letter-spacing: 0em;
  text-transform: uppercase;
  display: unset !important;
}

@media screen and (max-width: 600px) {
  .heading .title {
    font-size: 20px;
  }
}

.heading .description {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0em;
  margin-top: 8px;
  color: #020817;
}

@media screen and (max-width: 600px) {
  .heading .description {
    font-size: 16px;
  }
}

.feedbackSlider {
    max-width: 954px;
    width: 100%;
}

.feedbackSlider .slider-track .slide-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 340px;
    height: 239px;
    padding: 25px;
    margin: 10px 0;
    width: 33.333%;
    border-radius: 10px;
    box-sizing: border-box;
    background-color: white;
    box-shadow: var(--box-shadow);
}

.feedbackSlider .slider-track {
    user-select: none;
    cursor: grab;
}

.feedbackSlider .slider-track:active {
    cursor: grabbing;
}

@media screen and (min-width: 1440px) {
  .feedbackSlider {
    max-width: 1050px;
  }
}

@media screen and (max-width: 1360px) {
  .feedbackSlider {
    max-width: 680px;
  }

  .feedbackSlider .slider-track .slide-item {
    width: 50%;
  }
}

@media screen and (max-width: 994px) {
  .feedbackSlider {
    max-width: 340px;
  }

  .feedbackSlider .slider-track .slide-item {
    width: 100%;
  }
}

.white-circle {
  width: 85px;
  height: 170px;
  position: absolute;
  top: 155px;
  left: 0;
  background-color: #FFFDFA;
  border-top-right-radius: 90px;
  border-bottom-right-radius: 90px;
}

.red-circle {
  width: 120px;
  height: 240px;
  position: absolute;
  bottom: 276px;
  right: 0;
  background-color: #FC3441;
  border-top-left-radius: 150px;
  border-bottom-left-radius: 150px;
}

.list-dot {
  position: absolute;
  top: 194px;
  right: 100px;
  z-index: 0;
}

.list-dot svg {
  color: #fff;
}