:root {
  --body-bg-color: #F4FAFF;
  --primary-color: #014076;
  --secondary-color: #004B84;
  --tertiary-color: #CBE8FF;
  --footer-bg: #004B84;
  --text-color: #202020;
  --black-color: #000000;
  --white-color: #FFFFFF;
  --section-label-color: #014076;
  --get-in-touch-cta-bg: #51738D;
}
@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?k3zr5g');
  src:  url('../fonts/icomoon.eot?k3zr5g#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?k3zr5g') format('truetype'),
    url('../fonts/icomoon.woff?k3zr5g') format('woff'),
    url('../fonts/icomoon.svg?k3zr5g#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-star:before {
  content: "\e909";
}
.icon-search:before {
  content: "\e904";
}
.icon-cheron-right-icon:before {
  content: "\e905";
}
.icon-cheron-left-icon:before {
  content: "\e906";
}
.icon-arrow-left-icon:before {
  content: "\e900";
}
.icon-youtube-icon:before {
  content: "\e901";
}
.icon-phone-outline-icon:before {
  content: "\e902";
}
.icon-location-icon:before {
  content: "\e903";
}
.icon-linkdin-icon:before {
  content: "\e907";
}
.icon-phone-icon:before {
  content: "\e908";
}
body{
font-family: 'Poppins', sans-serif;
}
h1, h2, h3, h4, h5, h6{
font-family: 'Poppins', sans-serif;
}

p{
line-height: 32px;
}
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  transition: all 0.3s ease-in-out;
  font-family: 'Poppins', sans-serif;
}

a:hover {
  color: var(--primary-color);
}
.site-content .ast-container{
flex-direction: column;
}
.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -20px;
}
.container {
  max-width: 1700px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.btn,
.request-btn .menu-link{
padding: 5px 9px;
display: inline-flex;
align-items: center;
font-size: 16px;
width: auto;
min-width: 154px;
font-weight: 500;
min-height: 56px;
position: relative;
overflow: hidden;
border-radius: 50px;
text-transform: capitalize;
outline: none;
cursor: pointer;
box-shadow: none;
appearance: none;
transition: all 0.3s ease-in-out;
gap: 10px;
}
.btn .arrow-icon {
width: 40px;
height: 40px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background-color: var(--white-color);
color: var(--primary-color);
border: 1px solid var(--primary-color);
position: relative;
overflow: hidden;
}
.btn .arrow-icon::before,
.btn .arrow-icon::after {
content: "\e900";
font-family: 'icomoon' !important;
font-style: normal;
font-weight: normal;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.3s ease-in-out;
margin-left: 1px;
}
.btn .arrow-icon::before {
transform: translateX(0);
}
.btn .arrow-icon::after {
transform: translateX(-100%);
}
.btn:hover .arrow-icon::before {
transform: translateX(100%);
}
.btn:hover .arrow-icon::after {
transform: translateX(0);
}
.btn.btn-primary{
background-color: var(--secondary-color);
color: var(--white-color);
}
.btn.btn-primary .arrow-icon{
background-color: var(--white-color);
color: var(--primary-color);
}
.btn.btn-secondary{
background-color: var(--white-color);
color: var(--secondary-color);
}
.btn.btn-secondary .arrow-icon{
background-color: var(--primary-color);
color: var(--white-color);
}
.section-mb-6{
  margin:0 0 60px;
}

.section-padding {
  padding: 30px 0;
}
button.slick-arrow{
border: 2px solid var(--secondary-color);
width: 40px;
border-radius: 50%;
height: 40px;
}

button.slick-arrow:hover{
background: var(--secondary-color);
color: var(--white-color);
}

button.slick-arrow::before{
font-family: 'icomoon';
color: var(--secondary-color);
opacity: 1;
}
button.slick-arrow:hover::before{
color: var(--white-color);
}
button.slick-arrow.slick-prev::before{
content: '\e906';
}
button.slick-arrow.slick-next::before{
content: '\e905';
}
.top-header-bar{
  background-color: var(--primary-color);
  padding: 10px 0;
}
.top-header-bar .container{
display: flex;
align-items: center;
justify-content: space-between;
}
.top-header-bar .header-connect a{
  color: var(--white-color);
}
.top-header-bar .header-connect a:not(:last-child){
margin-right: 50px;
padding-right: 50px;
border-right: 1px solid var(--white-color);
}
.top-header-bar .header-connect a span{
width: 35px;
height: 35px;
display: inline-flex;
border: 1px solid;
align-items: center;
justify-content: center;
border-radius: 50px;
color: var(--white-color);
margin-right: 15px;
}
.social-icons{
display: flex;
align-items: center;
gap: 15px;
}
.social-icons a{
width: 38px;
height: 38px;
display: inline-flex;
background-color: var(--white-color);
border: 1px solid var(--primary-color);
align-items: center;
justify-content: center;
border-radius: 50px;
color: var(--primary-color);
}
.social-icons a:hover{
background-color: var(--primary-color);
color: var(--white-color);
border-color: var(--white-color);
}

#masthead .ast-container{
padding:0 20px;
max-width:1700px;
}
.ast-logo-title-inline .ast-site-identity{
    padding: 34px 0;
}
.main-header-menu > .menu-item > .menu-link{
color:var(--black-color);
}
.main-header-menu > .menu-item > .menu-link:hover{
color:var(--primary-color);
}
.ast-builder-menu .main-navigation>ul{
align-items:center;
}
.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item.request-a-quote-btn {
padding: 0 0;
margin-left: 35px;
}
.main-header-menu .request-a-quote-btn .menu-link{
  padding: 5px 18px;
  background-color: var(--primary-color);
  font-size: 16px;
  min-height: 56px;
  line-height: 24px;
  color: var(--white-color);
  border: 1px solid var(--primary-color);
  border-radius: 50px;
}
.request-a-quote-btn .menu-link:hover{
background-color:var(--white-color);
color:var(--primary-color);
}
.main-header-menu .astm-search-menu{
margin-left:27px;
width: 56px;
height: 56px;
}
.main-header-menu .astm-search-menu a{
background-color: var(--primary-color) !important;
width: 100%;
height: 100%;
border-radius: 50px;
align-items: center;
display: flex;
justify-content: center;
}
.main-header-menu .astm-search-menu.open a{
display:none;
}
.main-header-menu .menu-link{
padding: 0 15px;
font-size: 18px;
}
.main-header-menu > .menu-item > .menu-link:hover,
.ast-builder-menu-1 .menu-item.current-menu-item > .menu-link,
.ast-builder-menu-1 .menu-item:hover > .menu-link, .ast-builder-menu-1 .inline-on-mobile .menu-item:hover > .ast-menu-toggle,
.ast-builder-menu-mobile .main-navigation .menu-item.current-menu-item > .menu-link{
color: var(--primary-color);
}
.main-header-menu > .menu-item > .sub-menu > .menu-item > .menu-link{
font-size:16px;
padding: 10px 16px;
}
.ast-builder-menu .main-navigation > ul > li:first-child > a{
  padding-left: 0;
}
.astm-search-menu .is-search-form{
  border-radius: 100px;
width: 0px;
top: 10px;
display: flex;
align-items: center;
height: 100%;
overflow: hidden;
top:0 !important;
}
.astm-search-menu.open .is-search-form{
border: 1px solid  var(--primary-color);
}
.astm-search-menu .is-search-form .is-search-input{
height: 56px;
}
.astm-search-menu .is-search-form .is-search-submit{
  width: 56px;
height: 56px;
background-color: rgb(1, 64, 118) !important;
}
.astm-search-menu .is-search-form .is-search-submit .is-search-icon{
padding-top: 0 !important;
height: 100%;
width: 100%;
display: flex !important;
align-items: center;
justify-content: center;
background-color: transparent;
border: 0;
}
.astm-search-menu.is-menu path.search-icon-path{
  fill: #ffffff;
}
/* Hero Section - Video Background */
.hero-section {
position: relative;
width: 100%;
min-height: 700px;
display: flex;
align-items: center;
}
.hero-section::after{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.3);
z-index: 1;
}
.hero-video-wrap {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
background: #1a1d21;
}
.hero-video {
width: 100%;
height: 100%;
object-fit: cover;
}

.hero-content {
position: relative;
z-index: 2;
width: 100%;
display: flex;
align-items: center;
}
.hero-inner {
max-width: 620px;
z-index: 11;
}
.hero-title {
color: var(--white-color);
margin: 0 0 30px;
}
.hero-desc {
color: var(--white-color);
margin: 0 0 38px;
}

.content-block__inner {
display: grid;
grid-template-columns: 1fr 1.12fr;
gap: 0;
min-height: 0;
}
.content-block__text {
padding: 0px 71px 0px 0;
}
.content-block__media {
position: relative;
min-height: 380px;
}
.content-block__img {
width: 100%;
height: 100%;
min-height: 380px;
object-fit: cover;
border-radius: 16px;
display: block;
}
.industries-banner.hero-banner .row{
justify-content: space-between;
}
.industries-banner.hero-banner .row .hero-banner__inner{
max-width: 51.3%;
margin-right: 0px;
}
.industries-banner.hero-banner .row .hero-banner__image {
max-width: 45.71%;
}
/* Common wrapper for section label + heading (use on all pages) */

.section-label {
display: flex;
align-items: center;
gap: 12px;
color: var(--section-label-color);
margin: 0 0 10px;
}
.section-label-line {
display: inline-block;
width: 30px;
height: 2px;
background: var(--primary-color);
flex-shrink: 0;
}
.section-heading {
margin: 0 0 18px;
line-height: 44px;
}
.section-body {
margin-bottom: 28px;
}
.section-body p{
margin: 0 0 18px;
}
.section-body p:last-child{
margin-bottom: 0;
}
.cards-section {
padding: 60px 0;
}
.cards-section--dark {
background: var(--primary-color);
}
.cards-section__header {
margin-bottom: 40px;
}
.cards-section__header .section-label {
margin-bottom: 8px;
}
.section-label--light {
color: var(--white-color);
}
.section-label-line--light {
background: var(--white-color);
}
.section-heading--light {
color: var(--white-color);
margin-bottom: 0;
}

/* Reusable card (use in any section) */
.card {
background: var(--white-color);
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
overflow: hidden;
height: 100%;
display: flex;
flex-direction: column;
transition: box-shadow 0.3s ease;
}
.card:hover {
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.card__img-wrap {
position: relative;
padding-top: 56.8%;
overflow: hidden;
}
.card__img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 10px 10px 0 0;
}
.card__body {
padding: 17px 14px 24px;
flex: 1;
display: flex;
flex-direction: column;
align-items: flex-start;
}
.card__title {
color: var(--text-color);
margin: 0 0 12px;

}
.card__excerpt {
margin: 0 0 20px;
flex: 1;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}

/* Cards slider (Slick) */
.cards-slider-wrap{
max-width: calc(100% - 123px);
width: 100%;
overflow: hidden;
margin-left: auto;
}
.cards-slider {
margin: 0 -12px;
}
.cards-slider .slick-list {
overflow: visible;
}
.cards-slider .slick-slide {
padding: 0 12px;
height: inherit;
}
.cards-slider__slide {
height: 100%;
}
.cards-slider__slide .card {
height: 100%;
}
.cards-section--dark .slick-dots li button:before {
color: rgba(255, 255, 255, 0.5);
}
.cards-section--dark .slick-dots li.slick-active button:before {
color: var(--white-color);
}
.cards-section--dark .slick-prev,
.cards-section--dark .slick-next {
color: var(--white-color);
}
.cards-section--dark .slick-prev:before,
.cards-section--dark .slick-next:before {
color: var(--white-color);
}

.why-choose-section__inner {
display: flex;
}
.why-choose-section__content {
padding-right: 47px;
max-width: calc(100% - 43%);
width: 100%;
}
.why-choose-section__label {
font-size: 15px;
font-weight: 500;
color: #64748B;
margin-bottom: 8px;
letter-spacing: 0.01em;
}
.why-choose-section__heading {
margin-bottom: 25px;
}

/* Reusable feature list (2-col grid of icon + text cards) */
.feature-list {
margin-top: 0;
}
.feature-list__grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 27px 25px;
}
/* Last item full width when alone in row (odd number of items) */
.feature-list__grid .feature-item:last-child:nth-child(odd) {
grid-column: 1 / -1;
}
.feature-item {
display: flex;
align-items: center;
gap: 9px;
padding: 14px;
border: 1px solid var(--secondary-color);
border-radius: 10px;
transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.feature-item:hover {
border-color: var(--primary-color);
box-shadow: 0 4px 12px rgba(1, 64, 118, 0.08);
}
.feature-item__icon {
flex-shrink: 0;
width: 36px;
height: 36px;
border-radius: 50%;
background: var(--primary-color);
color: var(--white-color);
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 12px;
}
.feature-item__icon .icon-arrow-left-icon:before {
margin-left: 1px;
}
.feature-item__text {
font-size: 18px;
font-weight: 500;
color: var(--secondary-color);
line-height: 1.4;
}

/* Why Choose - right column image */
.why-choose-section__media {
position: relative;
max-width: 719px;
width: 100%;
border-radius: 16px;
overflow: hidden;
margin: 72px 0 0;
}

.why-choose-section__img {
width: 100%;
height: 100%;
object-fit: cover;
}


.services-section {
position: relative;
padding: 38px 0;
overflow: hidden;
}
.services-section__bg {
position: absolute;
z-index: 0;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.services-section__bg img{
width: 100%;
height: 100%;
object-fit: cover;
}
.services-section__title{
position: relative;
z-index: 2;
color: var(--white-color);
text-align: center;
font-size: 72px;
font-weight: bold;
margin: 0 0 20px;
}
.services-section__title .storke-tile{
-webkit-text-stroke: 1px var(--white-color);
color: transparent;
}
.container--services{
max-width: 1736px;
margin: 0 auto;
overflow: hidden;
}
.services-slider {
margin: 0 -8px;
}

.services-slider .services-slider__slide.slick-slide {
padding: 10px 8px;
height: 428px;
display: flex !important;
transition: all .3s;
align-items: flex-end;
}

.service-card {
position: relative;
border-radius: 12px;
overflow: hidden;
width: 100%;
height: 300px;
text-decoration: none;
box-shadow: 0px 4px 8px 0px #2B2B2B40;
transition: all .3s;
}
.service-card::after {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: #00000073;
z-index: 1;
}
.services-slider .services-slider__slide.slick-slide.slick-current.slick-active.slick-center a.service-card {
height: 100%;
outline: none;
}

.service-card__img-wrap {
width: 100%;
height: 100%;
}
.service-card__img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.service-card__footer {
position: absolute;
left: 0;
right: 0;
bottom: 0;
z-index: 2;
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 12px;
gap: 12px;
}
.service-card__title{
color: var(--white-color);
font-weight: 500;
}
.service-card__btn {
flex-shrink: 0;
width: 30px;
height: 30px;
border-radius: 50%;
background: var(--white-color);
color: var(--primary-color);
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 14px;
transition: background 0.25s ease, color 0.25s ease;
}
.service-card__btn .icon-arrow-left-icon:before {
margin-left: 2px;
}
.service-card:hover .service-card__btn {
background: var(--primary-color);
color: var(--white-color);
}

.services-section__cta-wrap {
text-align: center;
margin-top: 38px;
}
.services-section__cta {
display: inline-flex;
align-items: center;
gap: 10px;
text-decoration: none;
min-width: 160px;
background: var(--secondary-color) !important;
border-color: transparent !important;
color: var(--white-color) !important;
}
.services-section__cta:hover {
background: #0a5a9e !important;
color: var(--white-color) !important;
}
.services-section__cta-icon {
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 14px;
}
.services-section__cta-icon .icon-arrow-left-icon:before {
margin-left: 2px;
}
.blog-section{
position: relative;
}
.blog-slider-wrap{
margin: 0 -10px;
}
.blog-slider-wrap .blog-slider.slick-slider{
position: static;
}
.blog-slider__slide {
padding: 0 10px;
}
.blog-card .blog-card__img-wrap{
position: relative;
padding-bottom: 60.75%;
overflow: hidden;
border-radius: 16px;
margin: 0 0 30px;
}
.blog-card .blog-card__img-wrap .blog-card__img{
position: absolute;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.blog-card__title{
margin: 0 0 8px;
}
.blog-card__excerpt{
font-size: 16px;
line-height: 26px;
margin: 0  0 18px;
}
.blog-slider .slick-arrow{
top: 43px;
left: auto;
}
.blog-slider .slick-arrow.slick-prev,
.slider-section .slick-arrow.slick-prev{
right: 190px;
}
.blog-slider .slick-arrow.slick-next,
.slider-section .slick-arrow.slick-next{
right: 125px;
}
.testimonial-slider{
margin: 0 -10px;
}
.testimonial-slider-wrap{
padding: 82px 0;
position: relative;
margin: 40px 0 0;
}
.testimonial-pattern{
position: absolute;
right: 0;
top: 0;
max-width: 246px;
height: 159px;
object-fit: contain;
}
.testimonial-slider-wrap::before{
content: '';
position: absolute;
right: 0;
top: 0;
width: 100%;
max-width: calc(100% - 466px);
height: 100%;
background-color: #E9F5FF;
}
.testimonial-slider-wrap__inner{
position: relative;
z-index: 2;
}
.testimonial-slider__slide{
padding: 0 10px;
}
.testimonial-slider__slide .testimonial-card{
display: flex;
align-items: center;
}
.testimonial-card__img-wrap{
max-width: 594px;
width: 100%;
}
.testimonial-card__content{
margin-left: 110px;
max-width: 783px;
width: 100%;
}
.testimonial-slider-wrap__inner .quote-icon{
position: absolute;
left: 534px;
top: 50%;
transform: translateY(-50%);
z-index: 1;
}
.rating-stars{
margin: 0 0 18px;
}
.rating-stars .rating-star{
color: var(--secondary-color);
}
.testimonial-card .testimonial-card__content p{
font-size: 20px;
color: var(--text-color);
margin: 0 0 20px;
}
.testimonial-card .testimonial-card__content .testimonial-card__name{
font-weight: 600;
color: var(--black-color);
}

/* Testimonial slider – custom arrows in single div */
.testimonial-slider-arrows {
display: flex;
align-items: center;
justify-content: center;
gap: 16px;
}
.testimonial-slider-arrow{
padding: 0 0;
background-color: transparent;
color: var(--secondary-color);
}
.get-in-touch-section {
background: #f0f8ff;
padding: 70px 0 80px;
}
.get-in-touch__inner {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
gap: 60px;
max-width: 1465px;
margin: 0 auto;
}
.get-in-touch__content {
max-width: 670px;
}

.get-in-touch__heading {
margin: 0 0 30px;
}
.get-in-touch__text {
font-size: 20px;
margin: 0 0 30px;
}
.get-in-touch__buttons {
display: flex;
gap: 22px;
}
.get-in-touch__btn {
text-decoration: none;
min-width: 200px;
}
.get-in-touch__illus {
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.get-in-touch__illus-img {
max-width: 100%;
height: auto;
display: block;
object-fit: contain;
}

.get-in-touch-cta {
background-color: var(--get-in-touch-cta-bg);
padding: 24px 0;
}
.get-in-touch-cta__inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
flex-wrap: wrap;
}
.get-in-touch-cta__text {
font-size: 24px;
color: var(--white-color);
}
.site-footer {
background-color: var(--footer-bg);
}
.site-footer .footer-container{
max-width: 1540px;
}

.site-footer .footer-row{
padding: 35px 0;
justify-content: space-between;
row-gap: 30px;
}
.site-footer .footer-row .footer-col{
 padding: 0 15px;
}
.site-footer .footer-row .footer-col.logo-contact-col{
max-width: 467px;
width: 100%;
}
.site-footer .footer-row .footer-col.logo-contact-col .contact-info{
display: flex;
flex-direction: column;
margin: 35px 0 0;
gap: 20px;
}
.site-footer .footer-row .footer-col.logo-contact-col .contact-info .contact{
display: flex;
margin: 0 0;
column-gap: 17px;
color:var(--white-color);
}
.site-footer .footer-row .footer-col.logo-contact-col .contact-info .contact .icon{
width: 30px;
height: 30px;
background-color:var(--white-color);
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
color: var(--secondary-color);
font-size: 11px;
border: 1px solid var(--white-color);
}
.site-footer .footer-row .footer-col.logo-contact-col .contact-info a.contact .number{
max-width: calc(100% - 48px);
}
.site-footer .footer-row .footer-col.logo-contact-col .contact-info .contact.address-contact p{
margin: 0 0;
color:var(--white-color);
font-size: 18px;
font-style: normal;
}
.footer-col-title{
font-size: 24px;
font-weight: 600;
color: var(--white-color);
margin: 0 0 21px;
}
.footer-col ul.link-list li {
line-height: normal;
}
.footer-col ul.link-list li:not(:last-child) {
margin: 0 0 10px;
}
.footer-col ul.link-list li a{
color: var(--white-color);
}
.footer-col ul.link-list li a:hover{
text-decoration: underline;
}
.footer-col ul.link-list li a:hover,
.contact-info a.contact:hover{
color: var(--white-color);
opacity: .8;
}
.site-footer .footer-row .footer-col.logo-contact-col .contact-info .contact:hover .icon{
background-color: transparent;
color: var(--white-color);
}
.certifications-logos{
display: flex;
column-gap: 37px;
}
.footer-bottom {
padding: 20px 130px;
border-top: 2px solid #ffffff33;
display: flex;
justify-content: space-between;
gap: 20px;
}
.copyright-text{
margin: 0 0;
color: var(--white-color);
}
.social-links-list{
display: flex;
gap: 18px;
}
.social-links-list li a{
width: 38px;
height: 38px;
background-color: var(--white-color);
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
color: var(--secondary-color);
transition: all 0.3s ease-in-out;
border: 1px solid var(--white-color);
}
.social-links-list li a:hover{
background-color: transparent;
color: var(--white-color);
}

.hero-banner{
padding: 70px 0;
background-color: var(--primary-color);
}
.hero-banner .row{
align-items: center;
}
.hero-banner .column-6{
padding: 0 20px;
}
.detail-banner.hero-banner{
padding: 68px 0;
}
.hero-banner__inner{
max-width: 872px;
width: 100%;
margin-right: 113px;
}
.hero-banner__inner .hero-banner__title{
margin: 0 0 13px;
font-weight: 600;
}
.hero-banner__inner .hero-banner__title,
.hero-banner__description{
color: var(--white-color);
}
.detail-banner .hero-banner__inner .hero-banner__title{
margin: 0 0;
}
.hero-banner__description{
font-size: 22px;
margin: 0 0 0;
}
.applications-section{
background-color: var(--body-bg-color);
}
.applications-section__inner{
position: relative;
}
.applications-grid{
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 91px 17px;
margin: 80px 0 72px;
}
.app-card{
position: relative;
background-color: var(--white-color);
border-radius: 16px;
box-shadow: 0px 2.02px 5.04px 0px #8B8B8B40;
padding: 107px 14px 26px;
text-align: center;
}
.app-card__media{
position: absolute;
left: 50%;
top: 0;
transform: translate(-50%, -50%);
width: 154px;
height: 154px;
border-radius: 50%;
overflow: hidden;
}
.app-card__img{
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.app-card__body{
display: flex;
flex-direction: column;
align-items: center;
}
.app-card__title{
margin: 0 0 15px;
}
.app-card__text{
margin: 0 0 18px;
font-size: 14px;
line-height: 1.43;
color: var(--black-color);
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;  
overflow: hidden;
}
.view-all-btn{
text-align: center;
}
.application-details-section__inner{
margin: 0 -10px;
}
.application-details-section__inner .column-6{
width: 50%;
max-width: 100%;
padding: 0 10px;
}
.application-details-section__title{
font-size: 30px;
font-weight: 500;
line-height: 40px;
}
.application-details-section__content p{
margin: 15px 0 0;
}
.applications-slider-section{
background-color: var(--primary-color);
padding: 50px 0 65px;
position: relative;
}
.slider-section__header{
margin:0 0 70px;
}
.applications-slider.slick-slider{
margin: 0 -8px;
position: static;
}
.applications-slider .slick-slide{
padding: 0 8px;
min-height: 405px;
display: flex !important;
}
.applications-slider__slide{
height: 100%;
}
.applications-slider__slide .app-card{
margin: 77px 0 0 0;
}
.applications-slider .slick-arrow,
.industries-slider .slick-arrow{
top: 85px;
left: auto;
}
.applications-slider .slick-prev,
.applications-slider .slick-next,
.industries-slider .slick-prev,
.industries-slider .slick-next{
z-index: 2;
border-color: var(--white-color);
}
.applications-slider .slick-prev:before,
.applications-slider .slick-next:before,
.industries-slider .slick-prev:before,
.industries-slider .slick-next:before{
color: var(--white-color);
opacity: 0.9;
}

.connect-section {
position: relative;
padding: 60px 0;
overflow: hidden;
}
.connect-section__bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.connect-section__bg img{
width: 100%;
height: 100%;
object-fit: cover;
}
.connect-section__inner {
display: flex;
justify-content: flex-end;
margin: 0 165px 0 0;
}
.connect-card {
background: var(--body-bg-color);
border-radius: 16px;
padding: 40px 28px;
max-width: 570px;
width: 100%;
z-index: 1;
}
.connect-card__title {
font-size: 44px;
color: var(--secondary-color);
line-height: 66px;
margin: 0 0 25px;
}
.connect-card__row {
display: flex;
align-items: center;
gap: 15px;
margin: 0 0 27px;
}
.connect-card__row:last-child {
margin-bottom: 0;
}
.connect-card__icon {
font-size: 19px;
width: 35px;
height: 35px;
border: 2px solid var(--black-color);
display: flex;
align-items: center;
justify-content: center;
border-radius: 100px;
}
.connect-card__label{
font-size: 20px;
}
.connect-card__link {
color: var(--black-color);
text-decoration: none;
max-width: calc(100% - 50px);
}
.connect-card__link:hover {
text-decoration: underline;
color: var(--secondary-color);
}
.connect-card__text {
margin: 0 0 35px;
line-height: 23px;
}
.faq-accordion-main .thfaqf-faq-item{
border: 1px solid #BEBEBE;
border-radius: 16px !important;
overflow: hidden;
margin: 0 0 24px;
}
.thfaqf-faq-list-title{
display: none;
}
.thfaqf-faq-item{
padding: 24px 20px;
border-radius: 16px;
border-color: #BEBEBE;
}
.thfaqf-faq-item.thfaqf-active {
background-color: #004B84 !important;
}
.thfaqf-faq-item .thfaqf-faq-item-title{

padding: 0;
line-height: 28px;
background-color: transparent !important;
border: none !important;
}
.thfaqf-faq-item .thfaqf-faq-item-title .thfaqf-title-text {
font-size: 20px;
font-weight: 500;
}
.thfaqf-faq-item .thfaqf-faq-item-content{
padding: 0 0 !important;
background-color: transparent !important;
margin: 20px 0 0;
}
.thfaqf-faq-item.thfaqf-active .thfaqf-faq-item-content{
border: none !important;
box-shadow: none !important;
}
.thfaqf-faq-item.thfaqf-active .thfaqf-faq-item-content p{
margin: 0 0 !important;
color: var(--white-color);
font-size: 18px;
font-weight: 400;
}
.thfaqf-faq-item.thfaqf-active .thfaq-arrow{
color: var(--white-color) !important;
}
.faq-accordion-main{
margin: 40px 0 0;
}
.faq-section  .thfaqf-faq-list{
margin-bottom: 0;
}
.faq-accordion-main .thfaqf-faq-item:last-child{
margin:0 0 0;
}
.products-section {
background: var(--body-bg-color);
}
.products-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 28px 24px;
}
.product-card {
background: var(--white-color);
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
overflow: hidden;
display: flex;
flex-direction: column;
transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.product-card:hover {
box-shadow: 0px 4px 4px 0px #BABABA40;
transform: translateY(-2px);
}
.product-card__media {
margin: 0;
aspect-ratio: 3 / 1.65;
overflow: hidden;
flex-shrink: 0;
}
.product-card__img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.product-card__body {
padding: 15px 10px 20px;
display: flex;
flex-direction: column;
flex-grow: 1;
align-items: flex-start;
}
.product-card__title {
margin: 0 0 17px;
font-weight: 500;
}
.product-card__excerpt {
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
font-size: 14px;
line-height: 1.7;
margin: 0 0 18px;
}
.product-detail__inner {
display: grid;
grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.41fr);
gap: 20px;
align-items: flex-start;
margin:0 0 37px;
}

.product-detail__img {
width: 100%;
height: 100%;
object-fit: cover;
}
.product-detail__content {
display: flex;
flex-direction: column;
gap: 22px;
}
.product-detail__title {
font-size: 30px;
font-weight: 500;
color: var(--black-color);
line-height: 1.563;
margin: 0 0 0px;
}
.product-detail p {
color: var(--black-color);
margin: 0 0;
}
.product-detail__lists {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 12px 40px;
margin: 0 0px;
}
.product-detail ul {
list-style: disc;
}
.product-detail ul li{
list-style: disc;
font-size: 18px;
font-weight: 400;
color: var(--black-color);
list-style-position: inside;
}
.product-detail ul li + .product-detail ul li {
margin-top: 4px;
}
.product-detail p a {
color: var(--primary-color);
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 2px;
}
.product-detail__link:hover {
color: var(--secondary-color);
}
.product-detail__note{
margin: 19px 0 0;
}
.product-detail__note p:not(:last-child){
margin-bottom: 19px;
}

.industries-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 20px;
}
.industry-card {
position: relative;
border-radius: 16px;
overflow: hidden;
box-shadow: 0px 4px 6px 0px #A2A2A240;
transition: transform 0.25s ease, box-shadow 0.25s ease;
min-height: 251px;
display: flex;
}
.industry-card__link {
display: block;
color: inherit;
}
.industry-card__media {
height: 100%;
}
.industry-card__img {
width: 100%;
height: 100%;
object-fit: cover;
}
.industry-card::after {
content: "";
position: absolute;
inset: 0;
background:  linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 50%);
transition: opacity 0.25s ease;
}
.industry-card__footer {
position: absolute;
inset-inline: 18px;
bottom: 16px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
color: var(--white-color);
z-index: 11;
}
.industry-card__title {
font-weight: 500;
color: var(--white-color);
}
.industry-card__icon {
width: 32px;
height: 32px;
border-radius: 999px;
background: var(--white-color);
color: var(--secondary-color);
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 14px;
}
.industry-card__icon .icon-arrow-left-icon:before {
transform: rotate(180deg);
}
.industry-card:hover {
transform: translateY(-3px);
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}
.industry-card:hover::after {
opacity: 0.6;
}
.products-section.solutions-section .products-grid{
gap: 30px 19px;
margin: 0 0 60px;
}
.products-section.solutions-section .products-grid .product-card .product-card__body .product-card__title{
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
}
.section-heading.underlined{
font-weight: 500;
text-align: center;
margin: 0 auto 30px;
padding: 0 0 30px;
position: relative;
max-width: max-content;
color: var(--secondary-color);
}
.section-heading.underlined::before, 
.section-heading.underlined::after{
content: '';
  width: 200px;
  height: 2px;
  background-color: var(--secondary-color);
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}
.section-heading.underlined::after{
bottom: 2px;
width: 100px;
}
.about-industry-section .content-block__inner{
grid-template-columns: 1.027fr 1.11fr;
gap: 49px;
}
.about-industry-section .content-block__inner .content-block__text{
padding: 0px 0px 0px 0px;
}
.about-industry-section .content-block__inner .content-block__text .section-body{
margin: 0 0 0;
}
.industries-slider-section{
background-color: var(--primary-color);
padding: 45px 0 65px;
position: relative;
}
.industries-slider.slick-slider{
position: static;
margin: 0 -10px;
}
.industries-slider .slick-slide{
padding: 0 10px;
}
.industries-slider  .industry-card,
.industries-slider  .industry-card:hover{
  box-shadow: none;
}
.location-wrapper{
  position: relative;
  padding-bottom: 40.3%;
}
.location-wrapper iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.services-hero-banner{
  position: relative;
  overflow: hidden;
  min-height: 500px;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-hero-banner::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.services-hero-banner__bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.services-hero-banner__bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-hero-banner__content{
  position: relative;
  z-index: 2;
  text-align: center;
}
.services-hero-banner__title{
  color: var(--white-color);
  font-weight: 600;
}


.mts-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.505fr) minmax(0, 0.496fr);
  gap: 36px;
  align-items: flex-start;
}
.mts-section__media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
}
.mts-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mts-section__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mts-section__title {
  color: var(--text-color);
  margin: 0 0 14px;
}
.mts-section__desc {
  color: var(--text-color);
  margin: 0 0 10px;
}
.mts-section__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin: 0 0 10px;
}
.mts-section__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
  margin-top: 8px;
}
.mts-card {
  background: var(--white-color);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 20px 13px 14px;
}
.mts-card__title {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-color);
  margin: 0 0 22px;
}
.mts-card__list,
.mts-card__list li {
  list-style: disc;
  list-style-position: inside;
}
.mts-card__list li{
  font-size: 18px;
  color: var(--text-color);
  line-height: 30px;
}

.psr-section {
  background: var(--primary-color);
}
.psr-section__header {
  margin-bottom: 44px;
}
.psr-section__title{
  margin: 0 0 24px;
}
.psr-section__title,
.psr-section__intro,
.psr-section__subtitle {
  color: var(--white-color);
}
.psr-section__intro{
  margin: 0 0 20px;
}
.psr-section__subtitle {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 0;
}
.psr-section__subtitle-icon {
  display: inline-flex;
  color: var(--white-color);
}

.psr-section__grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}
.psr-item {
  padding: 0px 20px 32px;
  max-width: 33.333%;
  width: 100%;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.psr-item::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  max-width: calc(100% - 80px);
  height: 1px;
  width: 100%;
}
.psr-item:nth-last-child(-n+3) {
  padding-top: 30px;
}
.psr-item:nth-last-child(-n+3)::after {
  display: none;
}
.psr-item:nth-child(3n) {
  border-right: 0;
}
.psr-item__icon {
  width: 70px;
  height: 70px;
  background: var(--white-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin:0 0 17px;
}
.psr-item__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.psr-item__title {
  margin: 0 0 10px;
  font-weight: 600;
  color: var(--white-color);
}
.psr-item__text {
  margin-bottom: 0;
  color: var(--white-color);
}
.mts-info-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.54fr);
  gap: 0;
  align-items: stretch;
}
.mts-info-box {
  background: var(--tertiary-color);
  padding: 36px 40px 36px 32px;
  position: relative;
}
.mts-info-box::after {
  content: "";
  position: absolute;
  right: 0;
  top: 33px;
  transform: rotate(180deg);
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 20px solid var(--white-color);
}
.mts-info-box__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mts-info-box__title {
  text-transform:none;
}
.mts-info-box__item {
  color: #000000b3;
  margin: 0 0 30px;
  padding: 0;
  font-weight: 600;
}
.mts-info-box__item:last-child {
  margin-bottom: 0;
}

.mts-info-section__content {
  padding: 0 0 0 63px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.mts-info-section__media {
  margin: 0;
  overflow: hidden;
  flex-shrink: 0;
}
.mts-info-section__img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 280px;
  object-fit: cover;
}
.mts-info-section__text {
  color: var(--text-color);
  margin: 0;
}
.challenge-section__inner:not(:last-child){
  margin-bottom: 45px;
}
.challenge-section {
  background: var(--primary-color);
  color: var(--white-color);
  padding: 60px 0 70px;
}
.challenge-section__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 32px;
}
.challenge-section__header-left {
  flex: 1;
  min-width: 280px;
}
.challenge-section__title {
  color: var(--white-color);
  margin: 0 0 15px;
}
.challenge-section__header p {
  color: var(--white-color);
  margin: 0 0 15px;
  max-width: calc(100% - 212px);
}
.challenge-section__cta {
  flex-shrink: 0;
  border-radius: 999px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.challenge-section__subheader {
  margin-bottom: 36px;
}
.challenge-section__subtitle {
  color: var(--white-color);
  margin: 0 0 10px;
}
.challenge-section__subheader p {
  margin: 0;
}
.challenge-section__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.challenge-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--white-color);
}
.challenge-card {
  position: relative;
  min-height: 587px;
}
.challenge-card .challenge-card__media {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
  transition: width 0.45s ease;
  z-index: 11;
}
.challenge-card:hover .challenge-card__media {
  width: 50%;
}
.challenge-card .challenge-card__content {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  padding: 20px;
  background: var(--white-color);
  z-index: 1;
  transform: translateX(-200%);
  transition: transform 0.45s ease;
}
.challenge-card:hover .challenge-card__content {
  transform: translateX(0%);
}
.challenge-card__media {
  margin: 0;
  height: auto;
}
.challenge-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.challenge-card .challenge-card__img {
  min-height: 100%;
}

.challenge-card__title {
  margin: 0 0 15px;
  font-weight: 600;
}
.challenge-card__content p {
  color: var(--text-color);
  margin: 0;
}
.featured-clients-section__title {
  margin: 0 0 40px;
}
.featured-clients-section__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 49px;
  align-items: stretch;
}
.featured-client-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 6px 4px 0px #E0E0E059;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 148px;
}
.featured-client-card:hover img.featured-client-card__logo{
  transform: scale(1.1);
}
.featured-client-card__logo {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* ========================================
   Zigzag Service Solutions sections
   Odd: text left / image right | Even: image left / text right
   ======================================== */

.service-solution-section:not(:last-child) {
  margin-bottom: 50px;
}

.service-solution-section__inner {
  display: flex;
  flex-wrap: wrap;
  min-height: 0;
}
/* Odd (1st, 3rd...): content left, image right */
.service-solution-section:nth-child(odd) .service-solution-section__inner {
  flex-direction: row;
}
/* Even (2nd, 4th...): image left, content right */
.service-solution-section:nth-child(even) .service-solution-section__inner {
  flex-direction: row-reverse;
}
.service-solution-section:nth-child(even) .service-solution-section__inner .service-solution-section__content{
  padding-right: 0;
  padding-left: 72px;
}
.service-solution-section__content {
  flex: 1;
  min-width: 320px;
  padding-right: 72px;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.service-solution-section__title {
  position: relative;
  margin: 0 0 20px;
  padding: 0 0 10px;
}
.service-solution-section__title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 97px;
  height: 3px;
  background: var(--black-color);
  z-index: -1;
}
.service-solution-section__content > p {
  margin: 0 0 0px;
}
.service-solution-section__feature {
  display: flex;
  gap: 20px;
  margin: 25px 0 0;
}
.service-solution-section__feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-solution-section__feature-icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}
.service-solution-section__feature-title {
  margin: 0 0 10px;
}
.service-solution-section__feature-body p {
  color: var(--text-color);
  margin: 0 0 27px;
}
.service-solution-section__media {
  flex: 1;
  margin: 0;
  overflow: hidden;
  min-height: 420px;
  display: flex;
}
.service-solution-section__img {
  width: 100%;
  object-fit: cover;
}

/* ========================================
   About Balance Technology, Inc section
   ======================================== */
.about-bti-section {
  overflow: hidden;
}
.about-bti-section__inner {
  display: flex;
  flex-wrap: wrap;
  min-height: 0;
}
.about-bti-section__media {
  flex: 1;
  min-width: 320px;
  margin: 0;
}
.about-bti-section__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.about-bti-section__content {
  flex: 1;
  min-width: 320px;
  background: #D6EAF8;
  padding: 56px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.about-bti-section__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--black-color);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.about-bti-section__body {
  flex-grow: 1;
}
.about-bti-section__body p {
  color: var(--text-color);
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.6;
}
.about-bti-section__body p:last-child {
  margin-bottom: 0;
}
.about-bti-section__btn {
  align-self: flex-start;
  border-radius: 999px;
  padding: 12px 24px;
}
.about-bti-section__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--primary-color);
  padding-top: 24px;
  margin-top: 8px;
  gap: 0;
}
.about-bti-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--primary-color);
}
.about-bti-stat:last-child {
  border-right: none;
}
.about-bti-stat__number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}
.about-bti-stat__label {
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 500;
}
