/** about-section **/

.about-section{
  position: relative;
}
.hero-subtitle{
  color: #fff;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  text-align: center;
  font-family: var(--title-font);
}
.hero-title{
  color :#FEC33D !important;
  font-size: 40px;
  line-height: 70px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  text-align: center;
  font-family: var(--title-font);
}
.hero-description{
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  text-align: center;
  font-family: var(--title-font);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-description p{
  margin-bottom: 20px;
}

.hero-description p:last-child{
  margin-bottom: 0;
}

.hero-description .highlight-gold{
  color: #FFD700;
  font-weight: 600;
}
.hero-button{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}
.image_block_one .image-box{
  position: relative;
  display: block;
}

.image_block_one .image-box .image{
  border-radius: 20px;
}

.image_block_one .image-box .image img{
  width: 100%;
  border-radius: 20px;
}

/* Video Styles */
.image_block_one .image-box .image.video-wrapper{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.image_block_one .image-box .image.video-wrapper video{
  width: 100%;
  height: 450px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Make video responsive by default */
@media only screen and (max-width: 1200px){
  .image_block_one .image-box .image.video-wrapper video{
    height: 420px;
  }
}

.image_block_one .image-box .image.video-wrapper .video-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 20px;
}

.image_block_one .image-box .image.video-wrapper .video-overlay:hover{
  background: rgba(0, 0, 0, 0.98);
}

.image_block_one .image-box .image.video-wrapper .video-overlay.hidden{
  display: none;
}

.image_block_one .image-box .image.video-wrapper .video-play-btn{
  width: 80px;
  height: 80px;
  background: var(--theme-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  transition: all 0.3s ease;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: pulse 2s infinite, bounce 2s infinite, rotateGlow 3s infinite;
  cursor: pointer;
}

.image_block_one .image-box .image.video-wrapper .video-play-btn::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
 
  border: 2px solid var(--theme-color);
  border-radius: 50%;
  animation: ripple 2s infinite;
  opacity: 0.6;
}

.image_block_one .image-box .image.video-wrapper .video-play-btn::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--theme-color);
  border-radius: 50%;
  animation: ripple 2s infinite 0.5s;
  opacity: 0.4;
}

.image_block_one .image-box .image.video-wrapper .video-play-btn:hover{
  transform: scale(1.15);
  background: var(--secondary-color);
  animation: pulseHover 0.6s infinite, bounceHover 1s infinite;
}

.image_block_one .image-box .image.video-wrapper .video-play-btn:hover::before,
.image_block_one .image-box .image.video-wrapper .video-play-btn:hover::after{
  border-color: var(--secondary-color);
  animation: rippleHover 1s infinite;
}

.image_block_one .image-box .image.video-wrapper .video-play-btn i{
  margin-left: 5px;
  position: relative;
  z-index: 1;
  animation: playIconPulse 1.5s infinite;
}

.image_block_one .image-box .image.video-wrapper .video-play-btn:hover i{
  animation: playIconBounce 0.5s infinite;
  color: black;
}
/* Pulse Animation */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0px 5px 20px #ffd800;
  }
  50% {
    box-shadow: 0px 5px 35px #ffd800;
  }
}

/* Bounce Animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Rotate Glow Animation */
@keyframes rotateGlow {
  0% {
    filter: drop-shadow(0 0 5px rgba(11, 37, 182, 0.5));
  }
  25% {
    filter: drop-shadow(0 0 15px rgba(11, 37, 182, 0.8));
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(11, 37, 182, 0.6));
  }
  75% {
    filter: drop-shadow(0 0 15px rgba(11, 37, 182, 0.8));
  }
  100% {
    filter: drop-shadow(0 0 5px rgba(11, 37, 182, 0.5));
  }
}

/* Ripple Animation */
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Hover Animations */
@keyframes pulseHover {
  0%, 100% {
    box-shadow: 0px 5px 25px #ffd800;
  }
  50% {
    box-shadow: 0px 5px 40px #ffd800;
  }
}

@keyframes bounceHover {
  0%, 100% {
    transform: scale(1.15) translateY(0);
  }
  50% {
    transform: scale(1.15) translateY(-5px);
  }
}

@keyframes rippleHover {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes playIconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes playIconBounce {
  0%, 100% {
    transform: scale(1) translateX(0);
  }
  50% {
    transform: scale(1.2) translateX(3px);
  }
}

.image_block_one .image-box .rotate-box{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  right: 0px;
  margin-top: -93px;
  width: 186px;
  height: 186px;
  line-height: 186px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 10px 70px 0px rgba(0, 0, 0, 0.08);
}

.image_block_one .image-box .rotate-box .curved-circle{
  position: absolute;
  left: 93px;
  top: 7px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--title-color);
}

.image_block_one .image-box .rotate-box .icon-box img{
  display: inline-block;
  width: auto;
}

.content_block_one .content-box{
  position: relative;
  display: block;
}

.content_block_one .content-box .sec-title h2{
  font-family: "Glory", sans-serif;
}

.content_block_one .content-box .tabs-box .tab-btn-box{
  position: relative;
  max-width: 510px;
  margin-bottom: 33px;
}

.content_block_one .content-box .tabs-box .tab-btns{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #E4E4E4;
  border-radius: 10px;
}

.content_block_one .content-box .tabs-box .tab-btns .tab-btn{
  position: relative;
  display: inline-block;
  width: 170px;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 15px 15px;
  cursor: pointer;
  color: var(--title-color);
  border-radius: 10px;
  z-index: 1;
  transition: all 500ms ease;
}

.content_block_one .content-box .tabs-box .tab-btns .tab-btn.active-btn{
  color: #fff !important;
  background: radial-gradient(circle, rgba(36, 50, 67, 1) 0%, rgba(0, 0, 0, 1) 100%) !important; 
  position: relative;
  z-index: 1;
}

.content_block_one .content-box .tabs-box .tab-btns .tab-btn:before{
  position: absolute;
  content: '';
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  left: 0px;
  top: 0px;
  border-radius: 10px;
  z-index: -1;
  opacity: 0;
  transition: all 500ms ease;
}

.content_block_one .content-box .tabs-box .tab-btns .tab-btn.active-btn:before{
  opacity: 0;
  background: transparent !important;
}

.content_block_one .content-box .tabs-content .inner-box p{
  margin-bottom: 32px;
}

.content_block_one .content-box .tabs-content .list-style-one li{
  float: left;
  width: 50%;
}

.about-section .image-layer{
  position: absolute;
  right: 66px;
  bottom: 120px;
  -webkit-animation: service_hexagon_2 15s infinite linear;
  -moz-animation: service_hexagon_2 15s infinite linear;
  -o-animation: service_hexagon_2 15s infinite linear;
  animation: service_hexagon_2 15s infinite linear;
}


/** about-style-two **/

.about-style-two{
  position: relative;
  background: #F7F7F7;
}

.image_block_three .image-box{
  position: relative;
  display: block;
}

.image_block_three .image-box .image{
  position: relative;
  display: block;
  border: 10px solid #fff;
  border-radius: 8px;
  box-shadow: 0px 0px 54px 0px rgba(0, 0, 0, 0.10);
}

.image_block_three .image-box .image img{
  width: 100%;
}

.image_block_three .image-box .funfact-inner{
  position: absolute;
  bottom: 70px;
  width: 440px;
  background: #fff;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
  border-radius: 8px 75px 75px 8px;
  overflow: hidden;
  z-index: 1;
}

.image_block_three .image-box .funfact-inner .funfact-block{
  position: relative;
  display: block;
  float: left;
  width: 50%;
  padding: 34px 20px 34px 30px;
}

.image_block_three .image-box .funfact-inner .funfact-block .count-outer{
  position: relative;
  display: flex;
  align-items: center;
  font-size: 50px;
  line-height: 50px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600;
  margin-bottom: -4px;
  overflow: hidden;
}

.image_block_three .image-box .funfact-inner .funfact-block p{
  font-size: 18px;
  line-height: 26px;
}

.image_block_three .image-box .funfact-inner .funfact-block .count-outer .symble{
  position: relative;
  top: -9px;
}


.image_block_three .image-box .funfact-inner .funfact-block:first-child .count-outer,
.image_block_three .image-box .funfact-inner .funfact-block:first-child p{
  color: #fff;
}

.content_block_three .content-box{
  position: relative;
  display: block;
}

.content_block_three .content-box .inner-box .single-item{
  position: relative;
  display: flex;
  background: #fff;
  border-radius: 140px;
  padding: 25px 30px;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.content_block_three .content-box .inner-box .single-item:last-child{
  margin-bottom: 0px;
}

.content_block_three .content-box .inner-box .single-item .icon-box{
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  min-width: 80px;
  text-align: center;
  border-radius: 50%;
  font-size: 40px;
  color: #fff;
}

.content_block_three .content-box .inner-box .single-item h3{
  display: block;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 8px;
}

.content_block_three .content-box .inner-box .single-item p{
  font-size: 15px;
  line-height: 26px;
}

.about-style-two .rotate-box{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 100px;
  right: 100px;
  width: 186px;
  height: 186px;
  line-height: 186px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 10px 70px 0px rgba(0, 0, 0, 0.08);
}

.about-style-two .rotate-box .curved-circle{
  position: absolute;
  left: 93px;
  top: 7px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--secondary-color);
}


.about-style-two .rotate-box .icon-box img{
  display: inline-block;
  width: auto;
}


/** about-style-three **/

.about-style-three{
  position: relative;
}

.content_block_four .content-box{
  position: relative;
  display: block;
}

.content_block_four .content-box .list-style-one li:before{
  background: rgba(206, 24, 16, 0.20);
}

.image_block_four .image-box{
  position: relative;
  display: block;
  max-width: 590px;
}

.image_block_four .image-box .image-1{
  position: relative;
  border-radius: 255px 255px 10px 255px;
}

.image_block_four .image-box .image-1 img{
  width: 100%;
  border-radius: 255px 255px 10px 255px;
}

.image_block_four .image-box .image-2{
  position: absolute;
  left: 0px;
  bottom: 0px;
  border-radius: 150px 150px 150px 10px;
  z-index: 1;
}

.image_block_four .image-box .image-2:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 100%;
  height: 100%;
  left: 10px;
  bottom: 10px;
  border-radius: 150px 150px 150px 10px;
  z-index: -1;
}

.image_block_four .image-box .image-2 img{
  width: 100%;
  border-radius: 150px 150px 150px 10px;
}

.image_block_four .image-box .rotate-box{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 60px;
  top: 70px;
  width: 186px;
  height: 186px;
  line-height: 186px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 10px 70px 0px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.image_block_four .image-box .rotate-box .curved-circle{
  position: absolute;
  left: 93px;
  top: 7px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--title-color);
}

.image_block_four .image-box .rotate-box .icon-box img{
  display: inline-block;
  width: auto;
}

.about-style-three .pattern-layer{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-position: bottom right;
  background-repeat: no-repeat;
}


/** about-style-four **/

.about-style-four{
  position: relative;
}

.about-style-four .content_block_one .content-box .list-style-one li{
  float: left;
  width: 50%;
}

.content_block_five .content-box .form-inner{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.05);
  border-bottom: solid;
  border-width: 5px;
  border-color: #7B0000;
  margin-top: -70px;
}

.content_block_five .content-box .form-inner h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  background: #FEC33D;
  padding: 20px 30px;
  text-align: center;
}

.content_block_five .content-box .form-inner form{
  position: relative;
  padding: 40px;
}

.content_block_five .content-box .form-inner .form-group{
  position: relative;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 4px;
  padding-left: 60px;
}

.content_block_five .content-box .form-inner .form-group .icon-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 58px;
  height: 58px;
  line-height: 58px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.10);
  background: #FAFAFA;
  border-radius: 4px 0px 0px 4px;
}

.content_block_five .content-box .form-inner .form-group input[type='text'],
.content_block_five .content-box .form-inner .form-group .nice-select{
  position: relative;
  display: block;
  width: 100%;
  height: 58px;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--title-color);
  text-transform: uppercase;
}

.content_block_five .content-box .form-inner .form-group .nice-select{
  padding: 0px 20px;
  line-height: 58px;
}

.content_block_five .content-box .form-inner .theme-btn{
  width: 100%;
}

.content_block_five .content-box{
  position: relative;
  display: block;
}

.about-style-four .pattern-layer{
  position: absolute;
  left: 0px;
  top: -300px;
  right: -200px;
  width: 1274px;
  height: 1478px;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
  z-index: -1;
  opacity: 0.5;
}

.about-style-two .pattern-layer{
  position: absolute;
  right: -200px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-position: bottom right;
  background-repeat: no-repeat;
  opacity: 0.5;
}


/** rtl-css **/

.rtl .content_block_one .content-box{
  margin-left: 0px;
  margin-right: 50px;
}

.rtl .about-style-two .rotate-box{
  right: inherit;
  left: 100px;
}

.rtl .image_block_three .image-box{
  margin-right: 0px;
  margin-left: 40px;
}

.rtl .content_block_five .content-box{
  margin-left: 0px;
  margin-right: 190px;
}

/** responsive-css **/

@media only screen and (max-width: 1600px){
  .about-style-two .rotate-box{
    top: 50px;
    right: 50px;
  }

  .rtl .about-style-two .rotate-box{
    left: 50px;
  }
}

@media only screen and (max-width: 1200px){
  .about-section .image-layer,
  .about-style-two .rotate-box{
    display: none;
  }

  .about-style-three{
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (max-width: 1199px){
  /* Reduce padding and margins for large tablets */
  .about-section .image_block_one .image-box.pr_90{
    padding-right: 30px;
  }

  .about-section .content_block_one .content-box.ml_50{
    margin-left: 30px;
  }
}

@media only screen and (max-width: 991px){
  .content_block_one .content-box{
    margin-left: 0px;
    margin-top: 40px;
  }

  .rtl .content_block_one .content-box{
    margin-right: 0px;
  }

  .image_block_three .image-box{
    margin-right: 0px;
    margin-bottom: 40px;
  }

  .rtl .image_block_three .image-box{
    margin-left: 0px;
  }

  .content_block_four .content-box{
    margin-bottom: 40px;
  }

  .content_block_five .content-box .form-inner{
    margin-top: 0px;
  }

  .content_block_five .content-box{
    margin-left: 0px;
  }

  .rtl .content_block_five .content-box{
    margin-right: 0px;
  }

  .about-style-four{
    padding-bottom: 120px;
  }

  .about-style-four .content_block_one .content-box{
    margin-right: 0px;
  }

  .about-style-four .content_block_one .content-box{
    margin-top: 0px;
  }
}

@media only screen and (max-width: 991px){
  /* Remove right padding on image box for tablets */
  .about-section .image_block_one .image-box.pr_90{
    padding-right: 0px;
  }

  /* Remove left margin on content box for tablets */
  .about-section .content_block_one .content-box.ml_50{
    margin-left: 0px;
  }

  /* Adjust video height for tablets */
  .image_block_one .image-box .image.video-wrapper video{
    height: 400px;
  }

  /* Make tab buttons responsive */
  .content_block_one .content-box .tabs-box .tab-btns{
    flex-wrap: wrap;
  }

  .content_block_one .content-box .tabs-box .tab-btns .tab-btn{
    width: calc(33.333% - 2px);
    min-width: 100px;
    font-size: 13px;
    padding: 12px 10px;
  }
}

@media only screen and (max-width: 767px){
  .about-section{
    padding: 40px 0px 52px 0px;
  }

  /* Ensure proper spacing when columns stack */
  .about-section .row{
    margin: 0;
  }

  .about-section .image-column{
    margin-bottom: 30px;
  }

  /* Remove right padding on image box for mobile */
  .about-section .image_block_one .image-box.pr_90{
    padding-right: 0px;
    margin-bottom: 0px;
  }

  /* Remove left margin on content box for mobile */
  .about-section .content_block_one .content-box.ml_50{
    margin-left: 0px;
  }

  /* Adjust video height for mobile */
  .image_block_one .image-box .image.video-wrapper video{
    height: 300px;
    min-height: 250px;
  }

  /* Make tab buttons stack on mobile */
  .content_block_one .content-box .tabs-box .tab-btns{
    flex-direction: column;
    gap: 10px;
  }

  .content_block_one .content-box .tabs-box .tab-btns .tab-btn{
    width: 100%;
    font-size: 14px;
    padding: 15px 20px;
  }

  /* Adjust tab button box width */
  .content_block_one .content-box .tabs-box .tab-btn-box{
    max-width: 100%;
  }

  .content_block_one .content-box .tabs-content .list-style-one li{
    width: 100%;
  }

  /* Adjust section title spacing */
  .about-section .content_block_one .content-box .sec-title.mb_30{
    margin-bottom: 20px;
  }

  .about-section .content_block_one .content-box .sec-title h2{
    font-size: 28px;
    line-height: 38px;
  }

  .about-style-two,
  .about-style-three{
    padding: 70px 0px;
  }

  .about-style-four{
    padding-bottom: 70px;
  }

  .about-style-four .content_block_one .content-box{
    padding-top: 70px;
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 599px){
  .about-style-four .content_block_one .content-box .list-style-one li{
    float: none;
    width: 100%;
  }

  /* Further reduce video height for small screens */
  .image_block_one .image-box .image.video-wrapper video{
    height: 280px;
    min-height: 220px;
  }

  /* Adjust video play button size */
  .image_block_one .image-box .image.video-wrapper .video-play-btn{
    width: 60px;
    height: 60px;
    font-size: 22px;
  }
}

@media only screen and (max-width: 480px){
  .about-section{
    padding: 30px 0px 40px 0px;
  }

  /* Further reduce video height for very small screens */
  .image_block_one .image-box .image.video-wrapper video{
    height: 250px;
    min-height: 200px;
  }

  /* Smaller video play button */
  .image_block_one .image-box .image.video-wrapper .video-play-btn{
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  /* Adjust section title for very small screens */
  .about-section .content_block_one .content-box .sec-title h2{
    font-size: 24px;
    line-height: 32px;
  }

  /* Adjust tab button padding */
  .content_block_one .content-box .tabs-box .tab-btns .tab-btn{
    padding: 12px 15px;
    font-size: 13px;
  }

  /* Adjust content spacing */
  .content_block_one .content-box .tabs-content .inner-box p{
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 499px){
  .image_block_three .image-box .funfact-inner{
    position: relative;
    width: 100%;
    border-radius: 10px;
    margin-top: 30px;
    bottom: 0px;
  }

  .image_block_three .image-box{
    padding: 0px;
  }

  .image_block_three .image-box .funfact-inner .funfact-block{
    float: none;
    width: 100%;
    text-align: center;
  }

  .image_block_three .image-box .funfact-inner .funfact-block .count-outer{
    justify-content: center;
  }

  .content_block_three .content-box .inner-box .single-item{
    display: block;
    border-radius: 10px;
  }

  .content_block_three .content-box .inner-box .single-item .icon-box{
    margin-bottom: 20px;
  }

  .image_block_four .image-box{
    padding: 0px;
  }

  .image_block_four .image-box .image-2{
    position: relative;
    margin-top: 30px;
  }

  .content_block_five .content-box .form-inner form{
    padding-left: 30px;
    padding-right: 30px;
  }
}


/** journey-section **/

.journey-section{
  position: relative;
  background: #fff;
}

.journey-section .content-box .text p{
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 28px;
  color: var(--text-color);
}

.journey-section .content-box .text p:last-child{
  margin-bottom: 0;
}

.journey-stats{
  position: relative;
  display: block;
}

.journey-stats .stat-item{
  margin-bottom: 30px;
}

.journey-stats .stat-box{
  position: relative;
  display: block;
  border-top: 2px solid transparent;
  border-image: linear-gradient(to right, #222222 0%, #FEC33D 100%);
  border-image-slice: 1;
  background: #e2e4e6;
  border-radius: 4px;
  padding: 25px 25px;
  text-align: center;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05);
}


.journey-stats .stat-box .stat-top-line{
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background: #222222;
  margin-bottom: 20px;
  border-radius: 2px;
}

.journey-stats .stat-box .stat-top-line.stat-line-gradient{
  background: linear-gradient(to right, #222222 0%, #FEC33D 100%);
}

.journey-stats .stat-box .stat-number{
  font-size: 48px;
  line-height: 58px;
  font-weight: 700;
  /* margin-bottom: 8px; */
  font-family: var(--title-font);
}

.journey-stats .stat-box .stat-number.stat-number-gradient{
  background: linear-gradient(to right, #222222 0%, #FEC33D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  text-align: center;
}

.journey-stats .stat-box .stat-number:not(.stat-number-gradient){
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
}

.journey-stats .stat-box .stat-number .stat-number-text{
  color: #222222;
}

.journey-stats .stat-box .stat-number .stat-number-plus{
  color: #FEC33D;
  font-weight: 700;
}

.journey-stats .stat-box .stat-label{
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #666666;
  letter-spacing: 1.5px;
  margin: 0;
}

.journey-section .image_block_one .image-box .image{
  border-radius: 20px;
  overflow: hidden;
  margin: 10px;
  height: 480px;
}

.journey-section .image_block_one .image-box .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.journey-section .image_block_one .image-box .image:hover img{
  transform: scale(1.05);
}

@media only screen and (max-width: 991px){
  .journey-section .content-box{
    margin-bottom: 40px;
  }

  .journey-stats .stat-item{
    margin-bottom: 20px;
  }

  .journey-stats .stat-box{
    padding: 20px 25px;
  }
}

@media only screen and (max-width: 767px){
  .journey-stats .stat-box{
    padding: 18px 20px;
  }

  .journey-stats .stat-box .stat-number{
    font-size: 36px;
    line-height: 46px;
  }

  .journey-stats .stat-box .stat-number.stat-number-gradient{
    font-size: 36px;
    line-height: 46px;
  }

  .journey-stats .stat-box .stat-label{
    font-size: 12px;
  }
}


/** core-values-section **/

.core-values-section{
  position: relative;
  background: #fff;
}

.core-values-section .sec-title .subtitle{
  font-size: 16px;
  line-height: 26px;
  color: var(--text-color);
  margin-top: 15px;
  font-weight: 400;
}

.core-values-section .values-item{
  margin-bottom: 30px;
}

.core-values-section .value-card{
  position: relative;
  display: flex;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.core-values-section .value-card:hover{
  transform: translateY(-5px);
  box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.12);
}

.core-values-section .value-icon-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, #222222 0%, #FEC33D 100%);
  border-radius: 12px;
  margin-right: 20px;
  flex-shrink: 0;
}

.core-values-section .value-icon-box i{
  font-size: 24px;
  color: #ffffff;
  line-height: 1;
}

.core-values-section .value-content{
  position: relative;
  flex: 1;
}

.core-values-section .value-content .value-title{
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 12px;
  font-family: var(--title-font);
}

.core-values-section .value-content .value-description{
  font-size: 15px;
  line-height: 24px;
  color: var(--text-color);
  margin: 0;
}

@media only screen and (max-width: 991px){
  .core-values-section .values-item{
    margin-bottom: 25px;
  }

  .core-values-section .value-card{
    padding: 25px;
  }
}

@media only screen and (max-width: 767px){
  .core-values-section .value-card{
    padding: 20px;
    flex-direction: column;
  }

  .core-values-section .value-icon-box{
    margin-right: 0;
    margin-bottom: 15px;
  }

  .core-values-section .value-content .value-title{
    font-size: 20px;
    line-height: 26px;
  }

  .core-values-section .value-content .value-description{
    font-size: 14px;
    line-height: 22px;
  }
}


/** meet-team-section **/

.meet-team-section{
  position: relative;
  background: #fff;
}

.meet-team-section .sec-title .subtitle{
  font-size: 16px;
  line-height: 26px;
  color: var(--text-color);
  margin-top: 15px;
  font-weight: 400;
}

.meet-team-section .row{
  margin: 0 -15px;
}

.meet-team-section .team-item{
  margin-bottom: 30px;
  padding: 0 15px;
}

.meet-team-section .team-card{
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.meet-team-section .team-card:hover{
  transform: translateY(-8px);
  box-shadow: 0px 8px 25px 0px rgba(0, 0, 0, 0.15);
}

.meet-team-section .team-image-box{
  position: relative;
  display: block;
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #e3f2fd 0%, #fff9c4 100%);
  border: 3px solid #f5f5f5;
}

.meet-team-section .team-image-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.meet-team-section .team-card:hover .team-image-box img{
  transform: scale(1.05);
}

.meet-team-section .team-content{
  position: relative;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.meet-team-section .team-content .team-name{
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 10px;
  font-family: var(--title-font);
}

.meet-team-section .team-content .team-description{
  font-size: 14px;
  line-height: 22px;
  color: var(--text-color);
  margin-bottom: 18px;
  flex: 1;
}

.meet-team-section .team-social{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.meet-team-section .team-social .social-link{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.meet-team-section .team-social .social-link.linkedin{
  background: #0077b5;
  color: #ffffff;
}

.meet-team-section .team-social .social-link.linkedin:hover{
  background: #005885;
  transform: translateY(-2px);
  box-shadow: 0px 4px 8px rgba(0, 119, 181, 0.3);
}

.meet-team-section .team-social .social-link.email{
  background: #f5f5f5;
  color: #666666;
}

.meet-team-section .team-social .social-link.email:hover{
  background: #e0e0e0;
  color: #222222;
  transform: translateY(-2px);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 991px){
  .meet-team-section .team-item{
    margin-bottom: 25px;
  }

  .meet-team-section .team-card{
    padding: 22px 18px;
  }

  .meet-team-section .team-image-box{
    width: 120px;
    height: 120px;
    margin-bottom: 18px;
  }
}

@media only screen and (max-width: 767px){
  .meet-team-section .row{
    margin: 0 -10px;
  }

  .meet-team-section .team-item{
    padding: 0 10px;
    margin-bottom: 20px;
  }

  .meet-team-section .team-card{
    padding: 20px 15px;
  }

  .meet-team-section .team-image-box{
    width: 110px;
    height: 110px;
    margin-bottom: 15px;
  }

  .meet-team-section .team-content .team-name{
    font-size: 18px;
    line-height: 24px;
  }

  .meet-team-section .team-content .team-description{
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 15px;
  }

  .meet-team-section .team-social .social-link{
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
}


/** address-section **/

.address-section{
  position: relative;
  background: #fff;
}

.address-section .row{
  margin: 0;
}

.address-section .info-column{
  margin-bottom: 0;
  margin: 40px 0px;
  z-index: 1;
  position: relative;
}

.address-section .office-info-box{
  position: relative;
  background: #ffffff;
  border-radius: 12px;

  padding: 10px 20px 60px 20px;
  box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.08);
  height: 90%;
  display: flex;
  flex-direction: column;
}

.address-section .office-title{
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 5px;
  font-family: var(--title-font);
}

.address-section .office-address{
  position: relative;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}

.address-section .office-address p{
  font-size: 15px;
  line-height: 24px;
  color: #666666;
  margin: 0;
}

.address-section .office-contact-list{
  position: relative;
  margin-bottom: 8px;
}

.address-section .contact-item{
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.address-section .contact-item:last-child{
  margin-bottom: 0;
}

.address-section .contact-icon{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #f5f5f5;
  border-radius: 6px;
  flex-shrink: 0;
}

.address-section .contact-icon i{
  font-size: 16px;
  background: linear-gradient(11deg, rgba(0,0,0,1) 30%, rgba(194,148,56,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.address-section .contact-info{
  position: relative;
  flex: 1;
}

.address-section .contact-link{
  font-size: 15px;
  line-height: 22px;
  color: #222222;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 400;
}

.address-section .contact-link:hover{
  color: #FEC33D;
}

.address-section .contact-text{
  font-size: 15px;
  line-height: 22px;
  color: #666666;
}

.address-section .directions-btn-box{
  position: relative;
  margin-top: 25px;
  
}

.address-section .directions-btn{
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  background: var(--gradient-color-btn);
  color: var(--secondary-color);
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.address-section .directions-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0px 4px 12px 0px rgba(255, 140, 0, 0.3);
  
}

.address-section .map-column{
  position: relative;
  z-index: 0;
}

.address-section .map-inner{
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.08);
  height: 450px;
  width: 100%;
}

.address-section .map-inner iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Tablet Landscape (992px to 1199px) */
@media only screen and (max-width: 1199px){
  .address-section .map-column{
    margin-left: -40px;
  }

  .address-section .office-info-box{
    padding: 35px 25px;
  }
}

/* Tablet Portrait (768px to 991px) */
@media only screen and (max-width: 991px){
  .address-section .info-column{
    margin: 0 0 30px 0;
  }

  .address-section .map-column{
    margin-left: 0 !important;
    margin-top: 0;
  }

  .address-section .office-info-box{
    padding: 30px 25px;
    height: auto;
  }

  .address-section .office-title{
    font-size: 26px;
    line-height: 34px;
  }

  .address-section .map-inner{
    height: 450px;
  }
}

/* Mobile Landscape (576px to 767px) */
@media only screen and (max-width: 767px){
  .address-section{
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .address-section .info-column{
    margin: 0 0 25px 0;
  }

  .address-section .map-column{
    margin-left: 0 !important;
    margin-top: 0;
  }

  .address-section .office-info-box{
    padding: 25px 20px;
    height: auto;
  }

  .address-section .office-title{
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 15px;
  }

  .address-section .office-address{
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .address-section .office-address p{
    font-size: 15px;
    line-height: 24px;
  }

  .address-section .office-contact-list{
    margin-bottom: 20px;
  }

  .address-section .contact-item{
    margin-bottom: 15px;
    gap: 10px;
  }

  .address-section .contact-icon{
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .address-section .contact-icon i{
    font-size: 15px;
  }

  .address-section .contact-link,
  .address-section .contact-text{
    font-size: 14px;
    line-height: 21px;
  }

  .address-section .directions-btn-box{
    margin-top: 20px;
  }

  .address-section .directions-btn{
    padding: 12px 24px;
    font-size: 14px;
  }

  .address-section .map-inner{
    height: 400px;
    border-radius: 10px;
  }
}

/* Mobile Portrait (480px to 575px) */
@media only screen and (max-width: 575px){
  .address-section{
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .address-section .info-column{
    margin: 0 0 20px 0;
  }

  .address-section .office-info-box{
    padding: 20px 18px;
  }

  .address-section .office-title{
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 12px;
  }

  .address-section .office-address{
    margin-bottom: 18px;
    padding-bottom: 12px;
  }

  .address-section .office-address p{
    font-size: 14px;
    line-height: 22px;
  }

  .address-section .office-contact-list{
    margin-bottom: 18px;
  }

  .address-section .contact-item{
    margin-bottom: 12px;
    gap: 10px;
  }

  .address-section .contact-icon{
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .address-section .contact-icon i{
    font-size: 14px;
  }

  .address-section .contact-link,
  .address-section .contact-text{
    font-size: 13px;
    line-height: 20px;
  }

  .address-section .directions-btn-box{
    margin-top: 18px;
  }

  .address-section .directions-btn{
    padding: 11px 20px;
    font-size: 13px;
  }

  .address-section .map-inner{
    height: 350px;
    border-radius: 8px;
  }
}

/* Small Mobile (320px to 479px) */
@media only screen and (max-width: 479px){
  .address-section{
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .address-section .info-column{
    margin: 0 0 18px 0;
  }

  .address-section .office-info-box{
    padding: 18px 15px;
    border-radius: 10px;
  }

  .address-section .office-title{
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 10px;
  }

  .address-section .office-address{
    margin-bottom: 15px;
    padding-bottom: 10px;
  }

  .address-section .office-address p{
    font-size: 13px;
    line-height: 20px;
  }

  .address-section .office-contact-list{
    margin-bottom: 15px;
  }

  .address-section .contact-item{
    margin-bottom: 10px;
    gap: 8px;
    flex-wrap: wrap;
  }

  .address-section .contact-icon{
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .address-section .contact-icon i{
    font-size: 13px;
  }

  .address-section .contact-info{
    flex: 1;
    min-width: 0;
  }

  .address-section .contact-link,
  .address-section .contact-text{
    font-size: 12px;
    line-height: 18px;
    word-break: break-word;
  }

  .address-section .directions-btn-box{
    margin-top: 15px;
  }

  .address-section .directions-btn{
    padding: 10px 18px;
    font-size: 12px;
  }

  .address-section .map-inner{
    height: 300px;
    border-radius: 8px;
  }
}

/* Extra Small Mobile (below 320px) */
@media only screen and (max-width: 319px){
  .address-section{
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .address-section .office-info-box{
    padding: 15px 12px;
  }

  .address-section .office-title{
    font-size: 18px;
    line-height: 26px;
  }

  .address-section .office-address p{
    font-size: 12px;
    line-height: 18px;
  }

  .address-section .contact-icon{
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .address-section .contact-icon i{
    font-size: 12px;
  }

  .address-section .contact-link,
  .address-section .contact-text{
    font-size: 11px;
    line-height: 17px;
  }

  .address-section .directions-btn{
    padding: 9px 16px;
    font-size: 11px;
  }

  .address-section .map-inner{
    height: 280px;
  }
}


/** page-title hero section **/

.page-title{
  display: flex;
  align-items: center;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.page-title.page-title-about,
.page-title.page-title-about.centred{
  position: relative;
  overflow: hidden;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.page-title.page-title-about .bg-layer{
  position: absolute;
  left: 0px !important;
  top: 0px !important;
  width: 100% !important;
  height: 80% !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  min-width: 100% !important;
  min-height: 80% !important;
  z-index: 0;
  margin: 0;
  padding: 0;
}

.page-title .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-width: 100%;
  min-height: 100%;
  z-index: 0;
}

.page-title .bg-overlay{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 80%;
  z-index: 1;
}

/* Large screens - keep height at 80% */
@media only screen and (min-width: 768px){
  .page-title .bg-overlay{
    height: 80% !important;
  }
}

.page-title .auto-container{
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-title .bg-layer:has(+ .bg-overlay):before{
  display: none;
}

.page-title .content-box.centred-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-title .hero-subtitle{
  font-size: 32px;
  line-height: 40px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 10px;
  font-family: var(--title-font);
  text-align: center;
  width: 100%;
}

.page-title .hero-title{
  font-size: 64px;
  line-height: 72px;
  font-weight: 700;
  color: #FEC33D;
  margin-bottom: 25px;
  font-family: var(--title-font);
  text-align: center;
  width: 100%;
}

.page-title .hero-description{
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 800px;
  font-weight: 400;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.page-title .hero-buttons{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-title .btn-request-demo,
.page-title .btn-get-quote{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-family: var(--title-font);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.page-title .btn-request-demo{
  background: #2C3E50;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-title .btn-request-demo:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: #1a252f;
}

.page-title .btn-get-quote{
  background: linear-gradient(135deg, #FEC33D 0%, #FFD700 100%);
  color: #222222;
  box-shadow: 0 4px 15px rgba(254, 195, 61, 0.3);
}

.page-title .btn-get-quote:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 195, 61, 0.4);
  background: linear-gradient(135deg, #FFD700 0%, #FEC33D 100%);
}

.page-title .btn-request-demo i,
.page-title .btn-get-quote i{
  font-size: 16px;
}

/* Page Title About - Custom Padding */
.page-title.page-title-about{
  padding: 60px 0px 120px 0px;
}

/** Responsive CSS for Page Title **/

/* Large Desktop (1400px and above) */
@media only screen and (min-width: 1400px){
  .page-title.page-title-about{
    padding: 80px 0px 140px 0px;
  }

  .page-title .hero-title{
    font-size: 72px;
    line-height: 80px;
  }
}

/* Desktop (1200px to 1399px) */
@media only screen and (max-width: 1399px){
  .page-title .hero-title{
    font-size: 60px;
    line-height: 68px;
  }

  .page-title .hero-description{
    max-width: 750px;
  }
}

/* Tablet Landscape (992px to 1199px) */
@media only screen and (max-width: 1199px){
  .page-title.page-title-about{
    padding: 60px 0px 100px 0px;
  }

  .page-title{
    min-height: 550px;
  }

  .page-title .hero-subtitle{
    font-size: 28px;
    line-height: 36px;
  }

  .page-title .hero-title{
    font-size: 56px;
    line-height: 64px;
  }

  .page-title .hero-description{
    font-size: 17px;
    line-height: 26px;
    max-width: 700px;
  }

  .page-title .hero-buttons{
    gap: 16px;
  }
}

/* Tablet Portrait (768px to 991px) */
@media only screen and (max-width: 991px){
  .page-title.page-title-about{
    padding: 50px 0px 80px 0px;
  }

  .page-title{
    min-height: 500px;
    overflow: hidden;
    position: relative;
  }

  .page-title.page-title-about{
    overflow: hidden;
    position: relative;
  }

  .page-title.page-title-about .bg-layer,
  .page-title .bg-layer{
    width: 100% !important;
    height: 80% !important;
    min-width: 100% !important;
    min-height: 80% !important;
    background-size: cover !important;
    background-position: center center !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .page-title .bg-overlay{
    width: 100%;
    height: 100% !important;
  }

  .page-title .content-box.centred-content{
    max-width: 100%;
    padding: 0 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .page-title .hero-subtitle{
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
  }

  .page-title .hero-title{
    font-size: 48px;
    line-height: 56px;
    margin-bottom: 22px;
    text-align: center;
    width: 100%;
  }

  .page-title .hero-description{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 35px;
    padding: 0 10px;
    max-width: 650px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .page-title .hero-buttons{
    gap: 14px;
    align-items: center;
    justify-content: center;
  }

  .page-title .btn-request-demo,
  .page-title .btn-get-quote{
    padding: 13px 26px;
    font-size: 13px;
    text-align: center;
  }
}

/* Mobile Landscape (576px to 767px) */
@media only screen and (max-width: 767px){
  .page-title.page-title-about{
    padding: 50px 0px 70px 0px;
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
  }

  .page-title{
    min-height: auto;
    padding: 50px 0px 70px 0px;
    overflow: hidden;
    position: relative;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .page-title.page-title-about{
    overflow: hidden;
    position: relative;
  }

  .page-title.page-title-about .bg-layer,
  .page-title .bg-layer{
    width: 100% !important;
    height: 100% !important;
    min-width: 100vw !important;
    min-height: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: scroll !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  .page-title .bg-overlay{
    height: 100% !important;
    width: 100%;
  }

  .page-title .content-box.centred-content{
    padding: 0 15px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .page-title .hero-subtitle{
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 8px;
    text-align: center;
    width: 100%;
  }

  .page-title .hero-title{
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
  }

  .page-title .hero-description{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
    padding: 0 15px;
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .page-title .hero-buttons{
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    gap: 12px;
    padding: 0 15px;
    align-items: center;
    justify-content: center;
  }

  .page-title .btn-request-demo,
  .page-title .btn-get-quote{
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    justify-content: center;
    padding: 12px 24px;
    font-size: 13px;
    text-align: center;
  }
}

/* Mobile Portrait (480px to 575px) */
@media only screen and (max-width: 575px){
  .page-title.page-title-about{
    padding: 40px 0px 60px 0px;
  }

  .page-title{
    padding: 40px 0px 60px 0px;
    overflow: hidden;
  }

  .page-title.page-title-about .bg-layer,
  .page-title .bg-layer{
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .page-title .bg-overlay{
    width: 100%;
    height: 100%;
  }

  .page-title .content-box.centred-content{
    padding: 0 15px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .page-title .hero-subtitle{
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 8px;
    text-align: center;
    width: 100%;
  }

  .page-title .hero-title{
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 18px;
    text-align: center;
    width: 100%;
  }

  .page-title .hero-description{
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 28px;
    padding: 0 10px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .page-title .hero-buttons{
    gap: 10px;
    align-items: center;
    justify-content: center;
  }

  .page-title .btn-request-demo,
  .page-title .btn-get-quote{
    max-width: 280px;
    padding: 12px 20px;
    font-size: 12px;
    text-align: center;
    margin: 0 auto;
  }

  .page-title .btn-request-demo i,
  .page-title .btn-get-quote i{
    font-size: 14px;
  }
}

/* Small Mobile (320px to 479px) */
@media only screen and (max-width: 479px){
  .page-title.page-title-about{
    padding: 35px 0px 50px 0px;
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
  }

  .page-title{
    padding: 35px 0px 50px 0px;
    overflow: hidden;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .page-title.page-title-about .bg-layer,
  .page-title .bg-layer{
    width: 100% !important;
    height: 100% !important;
    min-width: 100vw !important;
    min-height: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: scroll !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  .page-title .bg-overlay{
    width: 100%;
    height: 100%;
  }

  .page-title .content-box.centred-content{
    padding: 0 10px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .page-title .hero-subtitle{
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 6px;
    text-align: center;
    width: 100%;
  }

  .page-title .hero-title{
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 16px;
    text-align: center;
    width: 100%;
  }

  .page-title .hero-description{
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 25px;
    padding: 0 5px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .page-title .hero-buttons{
    gap: 8px;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .page-title .btn-request-demo,
  .page-title .btn-get-quote{
    max-width: 260px;
    padding: 11px 18px;
    font-size: 11px;
    gap: 8px;
    text-align: center;
    margin: 0 auto;
  }

  .page-title .btn-request-demo i,
  .page-title .btn-get-quote i{
    font-size: 13px;
  }

  .page-title .btn-request-demo span,
  .page-title .btn-get-quote span{
    font-size: 11px;
  }
}

/* Extra Small Mobile (below 320px) */
@media only screen and (max-width: 319px){
  .page-title.page-title-about{
    padding: 30px 0px 40px 0px;
  }

  .page-title{
    padding: 30px 0px 40px 0px;
    overflow: hidden;
  }

  .page-title.page-title-about .bg-layer,
  .page-title .bg-layer{
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .page-title .bg-overlay{
    width: 100%;
    height: 100%;
  }

  .page-title .content-box.centred-content{
    padding: 0 10px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .page-title .hero-subtitle{
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    width: 100%;
  }

  .page-title .hero-title{
    font-size: 28px;
    line-height: 36px;
    text-align: center;
    width: 100%;
  }

  .page-title .hero-description{
    font-size: 13px;
    line-height: 19px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 0 5px;
  }

  .page-title .hero-buttons{
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .page-title .btn-request-demo,
  .page-title .btn-get-quote{
    max-width: 240px;
    padding: 10px 16px;
    font-size: 10px;
    text-align: center;
    margin: 0 auto;
  }
}







































