@import url('fontawesome-all.css');
@import url('plugins.css');
@import url('font.css');
:root{
	--brand-red:#eb1b2d;
	--brand-blue:#0d2e4f;
    --brand-gray:#7f7f7f;
    --brand-black:#333;
    --brand-white:#fafafa;
    --brand-border:#e5e5e5;
	--alpha-color-primary:rgba(230,182,55,0.9);
	--alpha-color-secondary:rgba(51,51,51,0.8);
    --brand-font:'Playfair Display';
    --shadow-soft: 8px 8px 20px rgba(0, 0, 0, 0.10),
                   -8px -8px 20px rgba(255, 255, 255, 0.7);
}
/*-----------------------------------------------------------
    4. General Style
-------------------------------------------------------------*/
body {
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    width: 100%;
    background: var(--brand-white);
}
.row{
    margin-left: 0;
    margin-right: 0;
}
.brand-txt-red{
    color: #eb1b2d;
}
.brand-txt-blue{
    color: #0d2e4f;
}
a {
    font-weight: 400;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.6s;
}
a:focus,
a:hover {
    color: rgba(44, 44, 44, 0.8);
    text-decoration: none;
}

img {
    max-width: 100%;
}
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}
img[loading="lazy"].visible {
    opacity: 1;
}
.justify{
    text-align: justify;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #2c2c2c;
    margin-top: 0;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

::selection {
    background: #2c2c2c;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #2c2c2c;
    color: #fff;
    text-shadow: none;
}

::-webkit-selection {
    background: #2c2c2c;
    color: #fff;
    text-shadow: none;
}
:active,
:focus {
    outline: none !important;
}
strong{
    font-weight: 600;
}
/*-----------------------------------------------------------
    4. General Animations
-------------------------------------------------------------*/
.image-sheen{
	position: relative;
	overflow: hidden;
}
.image-sheen:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
    pointer-events: none;
}
.image-sheen:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
.reveal-text span.char {
  display: inline-block;
  color: inherit;
  opacity: 0.3;
  transition: opacity 0.4s ease;
}
.reveal-text span.char.revealed {
  opacity: 1;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}
.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease var(--delay, 0s), transform 1s ease var(--delay, 0s);
}

.scroll-item.active {
  opacity: 1;
  transform: translateY(0);
}

/*-----------------------------------------------------------
    3. Buttons & Links
-------------------------------------------------------------*/

.link:before {
    background-color: #F1F3F6;
    bottom: 0;
    content: '';
    height: 30%;
    position: absolute;
    transition: all 0.3s;
    width: 100%;
    z-index: -1;
}

.link:hover:before {
    height: 100%;
}

a .link:hover {
    color: #2c2c2c;
}

/* Base button */
.btn-custom {
    padding: 10px 40px;
    border-radius: 30px;
    border: 1px solid #ccc;
    font-size: var(--button-txt);
    font-weight: 500;
    color: var(--brand-blue);
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Hover state */
.btn-custom:hover,
.btn-custom:focus {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: #fff;
}
/* Size variants */
.btn-large {
    padding: 15px 45px;
}

.btn-medium {
    padding: 10px 40px;
}

/* Color variants */
.btn-outline {
    background: transparent;
    border: 1px solid #ccc;
}

.btn-primary {
    background: var(--brand-blue);
    color: #fff;
    border-color: var(--brand-blue);
}

.btn-primary:hover {
    background: #fff;
    color: var(--brand-blue);
    border-color: var(--brand-blue);
}

/*-----------------------------------
    4. Typography
--------------------------------*/
:root {
    --h1-txt: clamp(2.1rem, 5vw, 3rem);
    --h2-txt: clamp(1.9rem, 4.2vw, 2.5rem);
    --h3-txt: clamp(1.6rem, 3.5vw, 2rem);
    --h4-txt: clamp(1.5rem, 3vw, 1.75rem);
    --h5-txt: clamp(1.2rem, 2.5vw, 1.5rem);
    --h6-txt: clamp(1rem, 2vw, 1.25rem);
    --body-txt: clamp(1rem, 1.5vw, 1rem);
    --button-txt: clamp(1rem, 1.7vw, 1.1rem);
    --small-txt:clamp(.85rem, 1.4vw, .9rem);
}

h1 {
    font-size: var(--h1-txt);
    line-height: 1.2;
}
h2 {
    font-size: var(--h2-txt);
    line-height: 1.3;
}
h3 {
    font-size: var(--h3-txt);
    line-height: 1.35;
}
h4 {
    font-size: var(--h4-txt);
    line-height: 1.4;
}
h5 {
    font-size: var(--h5-txt);
    line-height: 1.5;
}
h6 {
    font-size: var(--h6-txt);
    line-height: 1.5;
}
p {
    font-size: var(--body-txt);
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 1px;
    color: #333;
}
li {
    font-size: var(--body-txt);
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
blockquote {
    margin-top: 20px;
    font-size: var(--h6-txt);
    color: #2c2c2c;
    letter-spacing: 1px;
    border-left-width: 3px;
    padding: 20px 30px;
    background: #f8f8f8;
    border-radius: 10px;
}
/*-----------------------------------------------------------
    4. Header
-------------------------------------------------------------*/

.header-logo {
    display: inline-block;
    padding: 30px 15px 0;
}
.header-contact-info {
    text-align: right;
}
.header-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 20px;
    padding-top: 40px;
    font-size: var(--body-txt);
    font-weight: 500;
    text-decoration: none;
}
.cta-ico {
    width: 24px;
}
.social-ico {
    display: inline-flex;
    gap: 10px;
    margin-left: 10px;
    padding-top: 40px;
}
.social-ico a img {
    width: 26px;
    display: block;
}
.sr-txt {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
@media (max-width: 992px) {
    .header-logo {
        margin: 0px;
        padding: 30px 0 30px;
        text-align: center;
        width: 100%;
    }
    .header-contact-item {
        display: none;
    }
    .social-ico {
        display: flex;
        gap: 30px;
        justify-content: center;
        padding: 20px 0px;
        margin-left: 0;
        position: relative;
        border: none;
    }
    .social-ico::before,
    .social-ico::after {
        content: "";
        position: absolute;
        left: 10%;
        width: 80%;
        height: 6px;
        background: linear-gradient(to right, #ffffff 0%, #cccccc 50%, #ffffff 100%);
    }

    .social-ico::before {
        top: 0;
    }

    .social-ico::after {
        bottom: 0;
    }
    .social-ico a img {
        width: 32px;
    }
}

/*-----------------------------------------------------------
    4. HERO SECTION
-------------------------------------------------------------*/

.hero-title {
  margin: 0;
  width: 60%;
  max-width: 1200px;
  padding: 60px 10px 10px;
  text-align: left;
}
.hero-title h1 {
  font: 700 3.5rem/1.2 var(--brand-font);
  color: var(--brand-blue);
  background:url("../images/bg-txt.webp"), 
            linear-gradient(to bottom, var(--brand-blue) 0%, var(--brand-blue) 30%, var(--brand-red) 100%);
  background-size: 250%;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: rotateBg 5s linear infinite;
}

@keyframes rotateBg {
  0% { background-position: 0 0; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0 0; }
}
.hero-title h1 strong { font-weight: 800; }
.hero-title-intro {
  display: inline-block;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  font-size: var(--body-txt);
  padding-left: 5px;
  margin-bottom: 3px;
  color: #333;
}

.hero-subtitle {
  font-family: var(--brand-font);
  font-size: var(--h5-txt);
  margin-top: 0px;
  margin-bottom: 20px;
  width: 100%;
}
.flip-text {
    display: inline-block;
    perspective: 800px;
    height: 1.8rem;
    overflow: hidden;
    position: relative;
    font-weight: var(--body-font-weight);
    line-height: 1.1em;
}

.flip-text span {
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transform-origin: bottom center;
  backface-visibility: hidden;
  opacity: 0;
  transform: rotateX(90deg);
  transition: transform 0.9s ease, opacity 0.9s ease;
}

@media (max-width: 992px) {
  .hero-title {
    width: 100%;
    padding: 30px 10px 10px;
  }
}

/*----------------------------------------
    4. GENERAL PAGE STYLE
------------------------------------------*/
.img-round{
    border-radius: 24px;
}
.title-home{
    margin-top: 80px;
    margin-bottom:20px;
}
.title-in .title-txt{
    font-weight: 600;
}
.title-in{
    max-width: 100%;
}
@media (max-width: 992px) {
  .title-in{
    max-width: 100%;
}
}
.title-in h1{
    margin-bottom: 0;
    padding-bottom: 0;
}
.title-small{
    display: block;
    font-size: var(--body-txt);
    color: var(--brand-gray);
    font-weight: 400;
    line-height: 2;
}
.title-txt{
    font-size: var(--h2-txt);
    display: block;
    line-height: 1.1;
    color: var(--brand-blue);
    text-align: left;
    margin:0px;
    letter-spacing: 0 !important;
    font-weight: 400;
}
.title-txt strong{
    display: block;
    margin:0px;
    font-weight: 600;
}

.highlight-txt-main{
    align-items: center;
    padding: 0px 0;
}
.highlight-txt{
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0px;
    line-height: .9;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--brand-blue);
    color: transparent;
}
.highlight-txt b{
    color: var(--brand-blue);
    -webkit-text-stroke-width: 0;
}
.highlight-right p{
    padding-top: 10px;
    font-size: var(--h5-txt);
}
.tp-20  { padding-top: 20px; }
.tp-40  { padding-top: 40px; }
.tp-60  { padding-top: 60px; }
.tp-80  { padding-top: 80px; }
.tp-100 { padding-top: 100px; }
.bp-20  { padding-bottom: 20px; }
.bp-40  { padding-bottom: 40px; }
.bp-60  { padding-bottom: 60px; }
.bp-80  { padding-bottom: 80px; }
.bp-100 { padding-bottom: 100px; }
.tm-20  { margin-top: 20px; }
.tm-40  { margin-top: 40px; }
.tm-60  { margin-top: 60px; }
.tm-80  { margin-top: 80px; }
.tm-100 { margin-top: 100px; }
.bm-20  { margin-bottom: 20px; }
.bm-40  { margin-bottom: 40px; }
.bm-60  { margin-bottom: 60px; }
.bm-80  { margin-bottom: 80px; }
.bm-100 { margin-bottom: 100px; }
.wt-border-bottom {
    position: relative;
}
.wt-border-bottom::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--brand-red);
    margin: 7px 0 0;
}
.wt-border-before {
    position: relative;
}

.wt-border-before::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 3px;
    background-color: var(--brand-red);
    margin-right: 7px;
    vertical-align: middle;
}
/*-----------------------------------------------------------
    4. NAVIGATION
-------------------------------------------------------------*/
.fb-nav-wrap {
    position: fixed;
    left:0;
    right:0;
    bottom:0;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:5;
    padding: 30px;
}
.fb-nav-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
   backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  -webkit-mask-repeat: no-repeat;
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 90%
    );
    z-index: 0;
}
.fb-nav-main{
    width: 60vw;
    max-width: 900px;
    min-width: 320px;
    height: 9vh;
    min-height: 65px;
    padding: 0 36px;
    position: relative;
    border-radius: 20px;
    background: var(--brand-blue);
    box-sizing: border-box;
    display:flex;
    align-items:center;
    justify-content:space-evenly;
    box-shadow: 0 10px 30px rgba(3,18,33,0.45), inset 0 1px 0 rgba(255,255,255,0.02);
}
.fb-nav-item{
    display:block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding:0px;
    text-align: center;
    align-items: center;
}
.fb-nav-item:hover,
.fb-nav-item:focus,
.fb-nav-cta:hover .cta-connect,
.fb-nav-cta:focus .cta-connect{
    color: var(--brand-red);
    transform: scale(1.05);
}
.fb-nav-item span{
  display: block;
}
.fb-nav-item img{
  display: none;
}
.fb-nav-cta {
  --fb-p: 30%; /* width of the glowing segment */
  --fb-gradient-angle: 0deg;
  position: relative;
  padding: 15px 25px;
  border-radius: 20px;
  background: linear-gradient(#fff, #fff) padding-box,
              conic-gradient(
                from var(--fb-gradient-angle),
                transparent,
                var(--brand-red) var(--fb-p),
                var(--brand-blue) calc(var(--fb-p) * 2),
                transparent 100%
              ) border-box;
  border: 4px solid transparent;
  cursor: pointer;
  top: -20px;
}
.cta-connect{
    display:flex;
    align-items:center;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.cta-connect span{
    display: inline;
    color: var(--brand-blue);
    font-weight: 600;
    line-height: 1;
}
.cta-connect img{
    margin-right: 10px;
    width: 28px;
}
@media (max-width: 1200px) {
  .fb-nav-main{
    width: 80vw;
  }
}
@media (max-width: 992px){
  .fb-nav-main{
    width: 100vw;
  }
  .fb-nav-cta{
    border-radius: 100px;
    padding: 18px;
  }
  .cta-connect span{
    display: none;
    padding: 0px !important;
  }
  .cta-connect img{
    width: 32px;
    margin-right: 0px;
  }
}
@media (max-width: 768px) {
  .fb-nav-wrap{
    padding: 0px;
  }
  .fb-nav-main{
    width: 98vw;
    height: 10vh;
    padding: 0px 10px;
    border-radius: 0px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    justify-content:space-around;
  }
  .fb-nav-item{
    display:block;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    transition: all 0.3s ease;
    top: -2px;
  }
  .fb-nav-item img{
    width: 18px;
    display: block;
    margin: auto;
    padding-bottom: 5px;
  }
  .fb-nav-cta {
    top: -18px;
    padding: 16px;
    margin: 0px;
  }
}
.fb-popup {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 59vw;
    max-width: 895px;
    min-width: 315px;
    background: #fff;
    border-top: 3px solid var(--brand-blue);
    border-radius: 34px 34px 0 0;
    opacity: 0;
    z-index: -1;
    transition: transform 0.8s 
                cubic-bezier(0.25, 0.8, 0.25, 1), 
                opacity 0.4s ease-out;
    padding: 30px 0px;
}
.fb-popup.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.fb-closePopup {
    width: 18px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 10;
}
.fb-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.fb-overlay.show {
    opacity: 1;
    pointer-events: auto;
}
@media (max-width: 1200px) {
  .fb-popup{
    width: 75vw;
  }
}
@media (max-width: 992px){
  .fb-popup{
    width: 90vw;
  }
}
@media (max-width: 768px) {
  .fb-popup{
    width: 95vw;
  }
}
.fb-popup{
    -ms-overflow-style: none !important;
    scrollbar-width: none;
}
.fb-popup::-webkit-scrollbar {
    display: none;
}
.fb-nav-content {
    display: flex;
    height: 80vh;
    max-height: calc(80vh - 60px);
    gap: 20px;
    overflow: hidden;
}
.fb-nav-column {
    flex: 1;
    overflow-y: auto;
}
.fb-nav-column::-webkit-scrollbar {
    display: none;
}
.fb-nav-column {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.fb-nav-left {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0px;
    padding: 20px 20px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.fb-submenu-link-left {
    width: 100%;
    display: inline-block;
    padding-left: 20px;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}
.fb-submenu-link-left::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 12px;
    background-image: url('/assets/images/services/external-link.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
.fb-nav-left-img {
    width: 100%;
    height: 220px;
    border-radius: 20px;
    margin: 0px 0;
    object-fit: cover;
}
.fb-nav-left p {
    margin: 0;
    font-size: 16px;
    color: #333;
    padding: 0px 0px 10px 10px;
}
.fb-nav-right ul {
    list-style: none;
    padding: 0;
    margin: 0 0 60px;
}
.submenu-link-right {
    display: block;
    padding: 5px 0 15px 15px;
    margin: 0 15px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    color: #333;
    transition: color 0.3s ease;
    line-height: 1.6;
}
li:last-child .submenu-link-right {
    border-bottom: none;
}
.submenu-link-right:hover {
    color: var(--brand-red);
    cursor: pointer;
}
.submenu-link-right span {
    display: block;
    font-size: 12px;
    font-weight: 300 !important; 
    color: #9b9b9b;
}
@media (max-width: 992px) {
    .fb-nav-content {
        display: flex;
        flex-direction: column;
        height: auto;
        overflow: auto;
    }
    .fb-nav-column {
        width: 100%;
        overflow: visible;
    }
    .fb-nav-left {
        order: 2;
    }
    .fb-nav-right {
        order: 1;
    }
    .fb-nav-right ul{
      margin: 0 0 0px;
    }
}
.avatar-icon {
    margin: 0;
    padding: 10px 20px;
    display: flex;
}
.avatar-icon-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    padding: 0;
    margin: 0;
    border: 5px solid rgba(255, 255, 255, 1);
    margin-left: -15px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.3s, border 0.3s;
}
/*-----------------------------------------------------------
    4. HOME GALLERY
-------------------------------------------------------------*/

.home-gallery-wrapper {
    background: #fafafa;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
    padding-left: 10px;
    padding-right: 10px;
    height: 150vh;
}
.home-gallery-item {
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: transform 0.6s ease, opacity 0.6s ease;
}
.home-gallery-item:hover img {
    transform: scale(1.1) rotate(8deg);
}
.home-gallery-item img {
    width: 100%;
    display: block;
    border-radius: 24px;
    transition: transform 0.6s ease;
    height: auto;
}
.home-gallery-item video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.column-left,
.column-right,
.column-middle {
    flex: 1;
    min-width: 0px;
    padding: 8px;
}
.home-gallery-item img {
    width: 100%;
    display: block;
    border-radius: 24px;
    transition: all 0.6s ease;
    height: auto;
}
.column-middle > div {
    will-change: transform;
    margin-top: -40vh;
    padding-bottom: 50vh;
}
@media (max-width: 992px) {
    .home-gallery-wrapper {
        padding-left: 0px;
        padding-right: 0px;
        height: 60vh;
    }
    .home-gallery-item {
        overflow: hidden;
        border-radius: 20px;
        margin-bottom: 10px;
        padding-left: 0px;
        padding-right: 0px;
    }
    .column-left,
    .column-right,
    .column-middle {
        flex: 1 1 calc(33.33% - 10px);
        min-width: 0px;
        padding: 4px 6px;
    }
    .home-gallery-item img {
        max-height: 260px;
        object-fit: cover;
        border-radius: 5px !important;
    }
    .column-middle > div {
        margin-top: -20vh;
        padding-bottom: 10vh;
    }
}
/*-----------------------
    4. Countries Highlight
-------------------------*/
.countries-wrapper {
    padding: 40px 0 0;
    display: flex;
    justify-content: center;
    white-space: normal;
}
.countries-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
    text-align: center;
    border: 1px solid var(--brand-border);
    padding: 10px 30px;
    border-radius: 50px;
    background-color:none;
    box-shadow: var(--shadow-soft);
}
.country-flags {
    display: flex;
    align-items: center;
    padding: 0;
    flex-shrink: 0;
    margin-left: 15px;
}
.country-flags img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    margin-left: -15px;
    flex-shrink: 0;
    transform: translateY(1px);
}
.country-text {
    font-size:var(--small-txt);
    font-weight: 400;
    color: #000;
    white-space: normal;
    line-height: 1.2;
    padding-top: 15px;
}
@media (max-width: 992px) {
  .countries-wrapper {
    padding: 20px 0;
}
.countries-container {
    padding: 0px 15px;
}
.country-text {
    font-size:14px
}
}

/*-----------------------------------------------------------
    4. HOME SERVICES
-------------------------------------------------------------*/
.service-card {
    margin-bottom: 30px;
    padding: 0px 20px;
}
.service-card .link{
    color: var(--brand-blue);
}
.service-icon img {
    width: 80px;
    padding-bottom: 0px;
    padding-top: 30px;
}
.service-content h3 a{
    margin-top: 10px;
    font-size: var(--h5-txt);
    font-weight: 500;
}
.service-content a h4{
    color:var(--brand-blue);
}
.service-content a h3{
    font-size: var(--h5-txt)
}
.service-content li{
list-style: none;
}
.service-content p {
    line-height: 26px;
    margin-bottom: 10px;
    text-align: justify;
    display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 9;
	overflow: hidden;
	text-overflow: ellipsis;
}

/*-----------------------------------------------------------
    4. HOME SOLUTIONS
-------------------------------------------------------------*/
.home-product-img img{
    margin-top: 20px;
    border-radius: 24px;
}

/*-----------------------------------------------------------
    4. HOME CTA
-------------------------------------------------------------*/
.call-to-action {
    margin-top: 50px;
    color: #000;
}
.cta-content {
    padding: 0;
    margin: 0;
}
.cta-subtitle {
    margin: 0;
    padding: 0;
    font-weight: 500;
    color: var(--brand-blue);
}
.cta-heading {
    font-size: 5rem;
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 0;
    -webkit-text-stroke: 1px var(--brand-blue);
    color: transparent;
}
.cta-heading b {
    color: var(--brand-blue);
    -webkit-text-stroke: 0;
}
.cta-description {
    margin-top: 20px;
    padding-left: 10px;
    font-size: var(--h6-txt);
    font-weight: 300;
    color: var(--brand-blue);
}
.home-cta-buttons {
    padding-top: 110px;
    gap: 20px;
}
.home-cta-buttons a{
    text-align: center;
    margin-right: 20px;
    width: 20%;
}
.brand-text-red{
    color: var(--brand-red);
}
@media (max-width: 992px) {
    .cta-heading {
        font-size: 3.5rem;
    }
    .home-cta-buttons {
        padding-top: 20px;
        margin-left: 10px;
    }
}

/*-----------------------------------------------------------
    4. HOME CLIENTS
-------------------------------------------------------------*/
.clients-list img,
.awards-list img {
    border: 1px solid #eee;
    margin: 0 0px 0px 0;
    padding: 0px;
    opacity: 0.6;
}

.clients-list img:hover,
.awards-list img:hover {
    opacity: 1;
}
@media (max-width: 992px) {
    .clients-list img {
        display: block;
        margin: 0 auto 0px;
        width: 200px;
    }
}
.fixed-img {
  height: 280px;
  overflow: hidden;
  border-radius: 24px;
  margin-top: 50px;
  background-image: url("../images/bg/home-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll; /* mobile-friendly default */
}

/* Apply fixed attachment only on large screens */
@media (min-width: 992px) {
  .fixed-img {
    background-attachment: fixed;
  }
}

/*-----------------------------------------------------------
    4. FOOTER
-------------------------------------------------------------*/
.footer{
    border-top: 1px solid var(--brand-border);
    margin: 40px 0 20px;
}
.footer-column .footer-logo{ 
    padding-top: 60px; 
}
.footer-column .footer-txt{
    font-size: var(--body-txt);
    padding: 20px 2px 10px 0;
    line-height: 1.6;
}
.footer-column h4{
    margin-bottom: 20px;
    padding: 30px 0 0 0px;
    font-size: var(--h6-txt);
    color: var(--brand-blue);
}
.footer-column ul, 
.footer-column-2 ul, 
.footer-industries ul{ 
    margin: 0; 
    padding: 0; 
    list-style: none; 
}
.footer-column li, 
.footer-column-2 ul li{ 
    padding-top: 0px; 
    padding-left: 0px; 
}
.footer-column li a{
    color: #333;
}
.footer-column li a:hover,
.footer-column-2 li a:hover{
    color: var(--brand-red);
}
.footer-column .address{
    font-weight: 400;
    line-height: 2;
    font-size: var(--body-txt);
    padding: 6px 0 0 0px;
}
.footer-social li{
    all: unset;
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 50%;
    text-align: center;
    line-height: 37px;
}
.footer-social li a{ 
    display: inline-block;
    width: 100%;
    height: 100%;
}
.footer-social li a img{
    width: 30px;
    height: 30px;
    vertical-align: middle;
}
.footer-column-2{
    margin-top: 20px;
    padding-top: 25px;
    padding-bottom: 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.footer-column-2 ul li{ 
    color: var(--brand-gray); 
    padding-top: 0; 
    margin-top: 0; 
}
.footer-industries{
    border-bottom: 1px solid #eee;
    margin-top: 20px;
    padding-bottom: 20px;
    color: var(--brand-gray);
}
.footer-industries h4,
.footer-service-list h4{ 
    font-size: var(--body-txt);
}
.footer-industries ul li{ 
    display: inline-block;
}
.footer-industries li::after { 
    content: " | "; padding: 0 5px; 
}
.footer-industries li:last-child::after { 
    content: ""; 
}
.footer-industries ul li a{
    color: var(--brand-gray);
}
.footer-industries ul li a:hover{
    color: var(--brand-red);
}
.footer-policy{
    font-size: var(--body-txt);
    font-weight: 400;
    color: #787878;
    margin-top: 20px;
    margin-bottom: 20vh;
}
.footer-policy a{ 
    padding: 0 5px; color: #787878; 
}
.footer-terms{
    text-align: right;
    line-height: 2;
}
.footer-terms a::after { 
    content: " | "; padding: 0 5px; 
}
.footer-terms a:last-child::after { 
    content: ""; 
}

@media (max-width: 992px){
    .footer-countries-img{
        width: 100%;
    }
    .footer-column .footer-logo{ 
        padding-top: 20px; 
    }
    .footer-policy{
        margin-bottom: 15vh;
    }
    .clients-list img{ 
        display: block; 
        margin: 0 auto 0; 
        width: 200px; 
    }
    .footer-terms{
        text-align: center;
    }
}

/*-------------------------------
    4. SERVICE-LIST
-------------------------------*/

.service-banner{
    border-radius: 24px;
    overflow: hidden;
    height: 400px;
}
.service-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-head{
    display: flex;
    justify-content: start;
    align-items: center;
}
.service-head img{
    width: 30px;
    height: 30px;
    object-fit: cover;
}
.service-head h2{
    padding-top: 10px;
    font-size: var(--h3-txt);
    font-weight: 600;
    color: var(--brand-blue);
    padding-left: 10px;
}
.two-column-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.two-column-list li { 
  width: 50%;
  box-sizing: border-box;
  padding: 5px 10px;
  position: relative;
}
.two-column-list li:nth-child(odd) { text-align: left; }
.two-column-list li:nth-child(even) { text-align: left; }

.service-list li a{
    display: block;
    width: 90%;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
    font-size: var(--h5-txt);
    font-weight: 500;
}
.service-list li a:hover{
    color: var(--brand-red);
}
.service-list li a::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
  font-weight: bold;
  transition: transform 0.3s ease;
  padding-right: 20px;
}
.service-list li a:hover::after {
  animation: arrowMove 0.6s ease-in-out infinite;
}
@keyframes arrowMove {
  0%   { transform: translateY(-50%) translateX(0); }
  50%  { transform: translateY(-50%) translateX(5px); }
  100% { transform: translateY(-50%) translateX(0); }
}
@media (max-width: 992px){
    .two-column-list li{
        width: 100%;
    }
    .service-list li a{
       width: 100%; 
    }
}
.service-details-img img{
    border-radius: 24px;
    width: 100%;
    height: 320px;
    object-fit: cover;
}

/*-------------------------------
    4. PROJECT-LIST
-------------------------------*/
.project-list{
    margin-bottom: 40px;
    border: 1px solid var(--brand-border);
    border-radius: 24px;
    padding-bottom: 40px;
}
.project-list-img{
    display: block;
    height: 350px;
    overflow: hidden;
    border-radius: 24px;
    transition: transform 0.6s ease, opacity 0.6s ease;
}
.project-list-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.project-list-img img:hover{
    transform: scale(1.1) rotate(5deg);
}
.project-list h2{
    font-size: var(--h5-txt);
    padding: 30px 30px 0;
    margin-bottom: 0px;
    display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
}
.project-list p{
    padding: 10px 30px 0;
    margin-bottom: 0px;
}
@media (max-width: 992px){
    .project-list h2{
        padding: 20px 20px 10px;
    }
    .project-list p{
        padding: 0px 20px;
        margin-bottom: 0px;
    }
}
/*-------------------------------
    4. PROJECT-DETAILS
-------------------------------*/
:root{
    --project-details-img: 300px;
    --project-details-img-mr: 15px;
}
@media (max-width: 992px){
:root{ --project-details-img: 150px; }
}
.project-details-img-left{
    margin-bottom: var(--project-details-img-mr);
}
.project-details-img-left img {
    height: var(--project-details-img);
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
}
.project-details-img-right img {
    height: calc(var(--project-details-img) * 2 + var(--project-details-img-mr));
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.project-details-img-right video {
    height: calc(var(--project-details-img) * 2 + var(--project-details-img-mr));
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}
.project-details-img-left img:last-child {
    margin-bottom: 0;
}
/*-------------------------------
    4. Solutions List
-------------------------------*/
.solution-list{
    margin-bottom: 20px;
}
.solution-list-img{
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
    transition: transform 0.6s ease, opacity 0.6s ease;
}
.solution-list-img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.solution-list-img img:hover{
    transform: scale(1.1) rotate(2deg);
}
.solution-list h2{
    font-size: var(--h6-txt);
    padding: 15px 10px;
    text-align: center;
}
/*-----------------------------
    8. Contact Form
------------------------------*/
.contact-form {
    margin-bottom: 50px;
    position: relative;
}

.form-control {
    border: none;
    border-bottom: 1px solid #787878;
    border-radius: 0;
    box-shadow: none;
    font-size: var(--body-txt);
    font-weight: 400;
    color: #b1b1b1;
    padding: 9px 15px;
    height: 50px;
    margin-bottom: 30px;
    background: transparent;
    font-weight: 500;
}
.form-control::placeholder {
    font-weight: 300;
}

.form-control:focus {
    border-color: #c1c1c1;
    box-shadow: none;
    background: transparent;
}

textarea {
    resize: none;
    height: 200px !important;
}

.contact-form .form-control-wrap {
    position: relative;
}


.contact-address h2{
    font-size: var(--h5-txt);
}
.contact-address ul{
    list-style: none;
    margin:0px;
    padding: 0px;
}
.contact-address li{
    border: 1px solid var(--brand-border);
    border-radius: 24px;
    padding: 30px 30px 20px;
}
.contact-address li h3{
    font-size: var(--h6-txt);
    margin-bottom: 0px;
}
.contact-address li a{
    display: block;
    padding: 10px 0 0;
    font-size: var(--body-txt);
    font-weight: 500;
}
.contact-address li a span{
    display: block;
    padding: 0px;
    font-size: 12px;
    color: var(--brand-gray);
    font-weight: 400;

}
.contact-address li address{
    margin-top: 10px;
    line-height: 1.5;
    font-weight: 500;
}
.contact-address li address span{
    display: block;
    font-size: 12px;
    color: var(--brand-gray);
}
/*-----------------------------
    8. Testimonial Column
------------------------------*/
.testimonial-column {
    display: flex; 
    align-items: center; 
    gap: 16px;
    border: 1px solid var(--brand-border);
    border-radius: 24px;
    background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
    padding: 16px;
}

.testimonial-column img {
    width: 150px;
    height: 150px;
    border-radius: 50%; 
    object-fit: cover; 
    flex-shrink: 0;
}

.testimonial-column blockquote {
    margin: 0;
    flex: 1;
    text-align: justify;
    padding: 30px 40px;
    font-style: italic;
    background: none;
}

.testimonial-column figcaption {
    width: 15%;
    display: block;
    margin-top: 10px;
    font-weight: 500;
    font-size: var(--h6-txt);
    color: var(--brand-text);
}

.testimonial-column figcaption span {
    display: block;
    font-weight: 300;
    font-size: 14px;
    color: var(--brand-gray);
    margin-left: 5px;
    padding-top: 2px;
}
@media (max-width: 992px) {
    .testimonial-column {
        display: block;
        text-align: center;
        padding-top: 40px;
    }
    .testimonial-column blockquote {
        margin-top: 20px;
        padding: 30px 30px 10px;
    }
    .testimonial-column figcaption {
        width: 100%;
        padding-bottom: 20px;
        text-align: center;
    }
}
/* -------------------------------
        FAQ
----------------------------------- */
.ux-acc-section {
    width: 100%;
    margin: 0 auto;
    padding: 20px 10px;
}
.ux-acc-title {
    font-size: 2rem;
    margin-bottom: 20px;
}
.ux-acc-item {
    margin-bottom: 20px;
    padding: 8px 20px 0;
    background: #fff;
    border-radius: 24px;
}
.ux-acc-header {
    color: var(--brand-blue);
    width: 100%;
    background: #fff;
    border: none;
    padding: 13px 10px 0px;
    font-size: 1.1rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    border-radius: 24px;
    align-items: flex-start;
    position: relative;
}
.ux-acc-icon {
    transition: 0.3s;
    font-size: 1.2rem;
}
.ux-acc-content {
  padding: 1px 15px 0px;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
    text-align: justify;
}
.ux-acc-item.ux-acc-active .ux-acc-content {
    max-height: 100vh;
    overflow: auto;
}
.ux-acc-item.ux-acc-active .ux-acc-icon {
    transform: rotate(180deg);
    color: var(--brand-red);
}
/* -------------------------------
        INDUSTRY LIST
----------------------------------- */

.industry-list{
    margin-bottom: 40px;
    border: 1px solid var(--brand-border);
    border-radius: 24px;
    padding-bottom: 20px;
}
.industry-list-img{
    display: block;
    height: 220px;
    overflow: hidden;
    border-radius: 24px 0 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}
.industry-list-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.industry-list-img img:hover{
    transform: scale(1.1) rotate(5deg);
}
.industry-list h2{
    font-size: var(--h6-txt);
    padding: 15px 10px 0;
    margin-bottom: 0px;
    display: -webkit-box;
    text-align: center;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
}
@media (max-width: 992px){
    .industry-list h2{
        padding: 20px 0 0;
    }
}
/*-------------------------------
    4. SERVICE-DETAILS
-------------------------------*/
.service-details p{
    text-align: justify;
}
.service-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap; /* allows multiple rows */
  gap: 20px; /* space between items */
}
.service-details h5{
    margin-top: 24px;
    font-weight: 600;
    color: var(--brand-gray);
}
.service-details li {
  width: calc(50% - 10px); /* two items per row with gap adjustment */
  box-sizing: border-box;
  color: #333;
}
@media (max-width: 992px) {
  .service-details li {
    width: 100%; /* full width for small screens */
  }
}

.breadcrumb ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
.breadcrumb ol li {
    display: inline-block;
    font-size: 12px;
    margin: 0;
    padding: 0;
    line-height:1;
}
.breadcrumb ol li :hover{
    color: var(--brand-red);
}
.breadcrumb ol li::after {
    content: "/";
    margin: 0 5px;
    color: var(--brand-gray);
}
.breadcrumb ol li:last-child::after {
    content: "";
}

.sub-title-home{
    margin-top:80px;
    margin-bottom:40px;
    position: sticky;
    top: 80px;
}
@media (max-width: 992px) {
  .sub-title-home{
    margin-top:0px;
  }
}
.sub-title-home h2 .title-txt{
    line-height: 1;
}

.case-study-meta{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #4b5563;
    border-bottom: 1px solid var(--brand-border);
}
.case-study-meta strong {
    color: #111827;
}
.case-study-txt h2{
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 8px;
    color: var(--brand-blue);
    font-weight: 600;
}
.case-study-txt p{
    margin: 0;
    color: var(--brand-black);
    text-align: justify;
}

.extrl-link{
    color: var(--brand-blue);
    font-size: 16px;
    padding-left: 7px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 500;
    border-top: 1px solid var(--brand-border);
    border-bottom: 1px solid var(--brand-border);
    margin-top: 220px;
}
.extrl-link:hover{
    color: var(--brand-red);
}
.extrl-link::after {
    content: ">>"; /* two > symbols */
    margin-left: 5px; /* space between text and arrows */
}


.industry-details img{
    border-radius: 24px;
}
.industry-details h5{
 font-weight: 600;
 margin-bottom: 10px;
 color: var(--brand-blue);
}
.industry-service-item h3{
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.industry-details h2{
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 10px;
    color: var(--brand-blue);
}
.industry-service-items ul{
    padding-left: 24px;
}
.industry-service-item p,
.industry-details blockquote{
    text-align: justify;
}


.title-in-general{
    width: 50%;
}
.title-in-general h1{
    font-size: clamp(2.1rem, calc(3vw + 1rem), 3rem);
    font-weight: 600;
    color: var(--brand-blue);
    line-height: 1.1;
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.general-info-page h2{
    font-size: 1.3rem;
    text-align: justify;
    padding: 10px 0;
    line-height: 1.5;
}
.general-info-page h2 a{
    font-weight: 600;
}
.general-info-page h2 a:hover{
    color: var(--brand-red);
}
.general-info-page img{
    border-radius: 20px;
}
@media (max-width: 992px) {
    .title-in-general{
        width: 100%;
        line-height: 1;
    }
    .general-info-page h2{
    font-size: 1rem;
}
}

.service-txt{
    margin-bottom: 0px;
    text-align: justify;
}
.service-item{
    background: #fff;
    border-radius: 12px;
    padding: 22px 24px;
    margin-top: 20px;
    height: 90%;
}
.service-item h3{
    font-size: 1.2rem !important;
    color: var(--brand-blue);
    padding-bottom: 0px;
    margin-bottom: 6px;
    font-weight: 500;
    line-height: 1.2;
}
.service-item p{
    margin-bottom: 0px;
    color: var(--brand-black);
}