@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

    * {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    :root {
        --primary-font: "Lato", sans-serif;
        --primary-color:#214d76;
        --secondary-color:#C24246;
        --third-color:#5572D2;
        --color-white:#FFF;
        --color-dark:#000;
        --heading-color:#28415a;
        --muted-text:#000;
      }
      ::selection{
        background-color: var(--primary-color) !important;
        color: var(--color-white) !important;
      }
       ::-webkit-scrollbar {
    width: 10px;
    }
    ::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
    }
    ::-webkit-scrollbar-thumb {
      background-color: var(--primary-color);
    border-radius: 5px;  
    }
    .site-wrapper{
        overflow: clip;
      }
      html{
        scroll-behavior: smooth;
      }
      body{
        background-color: #FFF !important;
        font-family: var(--primary-font) !important;
        color: var(--color-dark);
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
      }
    a {
        text-decoration: none !important;
        font-family: var(--primary-font);
    }
    p {
        position: relative;
        margin: 0 0 10px!important;
        line-height: 29px;
        color: #000;
        font-weight: 400;
        font-size: 17px; 
    }
    p,
    li {
        color: var(--color-dark);
        text-decoration: none !important;
    }
    h1,
    h2,
    h3,
    h4,
    h5,
    h6{
        font-family: var(--primary-font) !important;
    }
    img{
        max-width: 100%;
        transition:all 0.3s ease-in-out;
    }
    .primary-text{
      color: var(--primary-color) !important;
    }
    .bg-clay {
    background-color: #F1F6F8 !important;
  }
  .muted-text{
    color: #5c5d5e !important;
  }
  .t-shadow{
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.18) !important;
  }
  figure{
    margin: 0 !important;
    padding: 0 !important;
  }
    nav.navbar {
        padding: 0;
    }
    ul.navbar-nav {
        margin: 0 0 auto;
    }
   .header-btn{
    display: flex;
    align-items: center;
    gap: 35px;
   }
  .py-70{
    padding: 70px 0;
  }
  .fw-500{
    font-weight: 500 !important;
  }
  .object-top{
    object-position: top !important;
  }
  .object-contain{
    object-fit: contain !important;
  }
  .btn{
        font-family: var(--primary-font);
  }
  .section-padding{
    padding: 80px 0;
  }
.text-justify{
  text-align: justify;
}
.primary-text{
  color: var(--secondary-color) !important;
}
a.nav-link {
    position: relative;
    font-family: var(--primary-font) !important;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    margin: 0 5px;
    padding: 37px 10px !important;
    text-transform: capitalize;
    transition: 0.2s ease-in-out all;
    z-index: 1;
}
a.nav-link:hover, a.nav-link:focus{
  color: var(--secondary-color);
}
.main-header.sticky{
  background-color: var(--color-white) !important;
 box-shadow: 0 12px 25px -10px rgba(0,0,0,0.35),
            0 4px 15px rgba(68,115,160,0.25) !important;
  border: none !important;
}
.sticky a.nav-link{
  color: #252525;
}
.sticky a.nav-link:hover{
  color: var(--secondary-color) !important;
}
.sticky .mh-pcont-wrap .icon{
  color: var(--primary-color) !important;
}
.sticky .mh-pcont-wrap .info{
  color: #696563 !important ;
}
/* Banner */
.banner-section {
    position: relative;
    overflow: hidden;
    /* top: -100px; */
}
.bs-box img.hb-img {
    max-height: 850px;
    min-height: 850px;
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    transition: transform 7s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: -1;
}
.bs-box {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.bs-box::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--color-dark);
  opacity: 0.46;
  z-index: 0;
}
  .bs-con {
    position: absolute;
    top: 50%;
    left: 50%;
    right: 50%;
    width: 100%;
    max-width: 100%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.bs-con-wrap{
  padding-top: 90px;
}
.bs-con-wrap .sub-head{
  position: relative;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, .17);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 3px 15px;
  border-radius: 40px;
}
.bs-con-wrap .sub-head::before{
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    background: var(--secondary-color);
}
.bs-con-wrap .lg-text{
  color: var(--color-white);
  font-size: 95px;
  font-weight: 700;
  line-height: 107px;
  margin-bottom: 15px !important;
}
.bs-con-wrap .sm-text{
  max-width: 450px;
  color: var(--color-white);
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px !important;
}
  .bsc-btn {
    display: flex;
    justify-content: start;
    column-gap: 30px;
    margin-top: 23px;
    margin-top: 25px;
  }
.slick-next:before, .slick-prev:before{
  display: none !important;
}
.slick-dots li button {
    position: relative;
    width: 16px !important;
    height: 16px !important;
    border-radius: 50%;
    padding: 0px !important;
    background-color: #fff !important;
    border: 2px solid var(--primary-color) !important;
}
    .slick-dots li {
        width: 17px !important;
        height: 17px !important;
        margin: 0 5px !important;
    }
    .slick-dots {
        bottom: -65px !important;
    }
      .slick-dots li.slick-active button {
    background-color: var(--primary-color) !important;
   }
  .slick-prev {
      right: 40px !important;
      z-index: 1;
      top: 40% !important;
      left: unset !important;
  }
    .slick-next {
        right: 40px !important;
    }
    .bs-slider {
        margin: 0 !important;
    }
    .slick-dots li button:before{
      display: none !important;
    }
.slide-animate {
  opacity: 0;
  transform: translateY(40px);
}
@keyframes fadeInLeftCustom {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}
.sticky {
  width: 100%;
  position: fixed !important;
  top: 0;
  z-index: 999;
  background-color: var(--color-white);
  transform: translateY(-100%);
  opacity: 0;
  animation: smoothSticky 0.31s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  will-change: transform, opacity;
}
@keyframes smoothSticky {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
  img.header-logo {
      max-width: 350px;
  }
.sticky img.header-logo {
    max-width: 350px;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .nav-link:focus, .navbar-nav .nav-link.active:after, .navbar-nav .nav-link.show:after, .nav-link:focus:after {
    color: var(--secondary-color) !important;
}
.header-dropdown .dropdown-menu {
    padding: 20px 30px;
    margin: 0;
    border: none;
    border-radius: 0;
    background: rgb(236, 241, 248);
}
/* .header-dropdown .dropdown-menu li {
    border-bottom: 1px solid #eee;
} */
.header-dropdown .dropdown-menu li:first-child{
    border-radius: 20px 20px 0 0 !important;
}
.header-dropdown .dropdown-menu li a {
    position: relative;
    font-size: 15px;
    padding: 8px 0;
    color: #212529;
    background-color: var(--color-white);
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.5s ease-in-out;
}
.header-dropdown .dropdown-menu li a:hover{
  color: var(--primary-color);
}
.header-dropdown .dropdown-menu li .dropdown-item.active{
    background-color: transparent !important;
    color: var(--secondary-color) !important;
}
.header-dropdown .dropdown-menu li:last-child{
    border: none !important;
}
.header-dropdown .dropdown-menu.sub-dropdown
.nav-link:hover{
    color: var(--secondary-color) !important;
    transition:color 0.3s ease;
}
#header-dropdown .dropdown-toggle::after {
    display: inline-block;
    content: '\f107' !important;
    font-family: 'Font Awesome 6 Pro' !important;
    vertical-align: baseline !important;
    border: none !important;
    font-size: 13px;
    /* color: var(--color-white); */
    font-weight: 900;
    position: relative;
    top: 1px;
    margin-left: 3px;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
.sticky .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23C24246' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
.navbar-toggler {
    border: 2px solid transparent !important;
    background-color: transparent !important;
}
.sticky .navbar-toggler {
    border: 2px solid var(--primary-color) !important;
}
.navbar-toggler:focus {
    box-shadow: none !important;
}
.sticky .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem #45719d26 !important;
}
.top-header{
    border-bottom: 1px solid #ffffff00;
    /* background: linear-gradient(120deg, #2D3546 0%, #333C4D 40%, #495668 100%); */
    background: linear-gradient(90deg, #0A1624 0%, #1A3554 45%, #4473A0 100%);
    padding: 7px 0;
}
.th-cont-list{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}
.th-cont-list li{
  display: flex;
  align-items: center;
  gap: 7px;
}
.th-cont-list li .icon{
  font-size: 14px;
  color: var(--color-white);
}
.th-cont-list li .info{
  color: var(--color-white);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0 !important;
}
.tph-socials{
  display: inline-flex;
  align-items: center;
  gap:15px;
}
.tph-socials li a{
  font-size: 14px;
  color: var(--color-white);
}
.tph-socials li a {
    height: 30px;
    font-size: 13px;
    color: var(--color-white);
    width: 30px;
    background-color: #2a5176;
    border: 1px solid #6181a9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease-in-out all;
}
.tph-socials li:hover a {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.main-header {
    /* position: relative; */
    position: absolute;
    width: 100%;
    z-index: 99999;
    /* padding: 10px 0; */
    background: transparent;
}
.navbar-container{
  padding: 0 60px !important;
}
.navlink-container{
    width: 100%;
    display: flex;
    flex: 1;
    justify-content: center;
}
.mh-pcont-wrap{
  display: flex;
  align-items: center;
  gap: 12px;
}
.mh-pcont-wrap .icon{
  color: var(--color-white);
  font-size: 28px;
}
.mh-pcont-wrap .info .mhc-title{
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 6px;
}
.sticky .mh-pcont-wrap .info .mhc-title{
  color: var(--color-dark) !important;
}
.mh-pcont-wrap .info .mhc-value{
  color: var(--color-white);
  font-weight: 600;
  font-size: 18px;
  transition: color .3s ease;
}
.mh-pcont-wrap .info .mhc-value:hover{
  color: var(--secondary-color);
}
.sticky .mh-pcont-wrap .info .mhc-value{
  color: var(--secondary-color);
}
.sticky .mh-pcont-wrap .info .mhc-value:hover{
  color: var(--primary-color) !important;
}
/* Buttons */
.site-btn{
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 700;
  line-height: 56px;
  padding: 0 27px;
  border-radius: 50px;
  transition:all 0.4s ease;
}
.site-btn span{
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all .4s;
}
.site-btn svg{
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  transition: .4s;
  margin: auto;
}
.site-btn:hover svg{
  transform: rotate(0);
    order: -1;
}
.site-btn.style-one{
  color: var(--color-white);
  background-color: var(--secondary-color);
}
.site-btn.style-one:hover{
  background-color: var(--primary-color);
}
.site-btn.style-two{
  background-color: var(--primary-color);
  color: var(--color-white);
}
.site-btn.style-two:hover{
  background-color: var(--secondary-color);
}

.custom-container{
  padding: 0 65px !important;
}
/* Section Title */
.section-title{
  position: relative;
  margin-bottom: 15px;
}
.section-title .sub-title{ 
    letter-spacing: 0;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 3px 5px; 
    margin-bottom: 6px !important;
}
.section-title.custom .sub-title{
  border-color:#ffffff52 !important;
} 
.section-title.custom .sub-title::before{
  background: var(--third-color) !important;
}
.section-title .sec-lg-title {
    font-size: 54px;
    line-height: 62px;
    font-weight: 600;
    color: var(--heading-color);
    text-transform: capitalize;
}
.section-title .sec-para{
  color: var(--muted-text);
  font-size: 16px;
  line-height: 30px;
  margin-top: 30px !important;
  margin-bottom: 0 !important;
}
.section-title .sec-para.custom{
  max-width: 470px;
}
.abtus-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 12px;
}
.abtus-list li {
    display: flex;
    align-items: center;
    max-width: 47%;
    font-weight: 500;
    color: var(--heading-color);
    gap: 10px;
}
.abtus-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 16px;
    color: var(--secondary-color);
}
.abtus-action-wrap{
  margin-top: 50px;
}
.abtus-wid-wrap {
    padding-left: 45px;
    padding-bottom: 130px;
    position: relative;
}
.abtus-wid-wrap .image-one{
   border-radius: 30px; 
   width: 70%;
   height: 420px;
}
.abtus-wid-wrap .image-one img{
  border-radius: 30px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.abtus-wid-wrap .image-two{
  position: absolute;
  left: 0;
  /* bottom: 0; */
  bottom: -4px;
  border-radius: 30px;
}
.abtus-wid-wrap .image-two img {
    height: 100%;
    max-width: 343px;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}
.years-exp {
    position: absolute;
    left: 0;
    background: var(--secondary-color); 
    width: 180px;
    height: 180px;
    padding: 25px;
    border-radius: 20px 20px 60px 20px;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 75%,
        75% 100%,
        0 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.years-exp h2 {
    font-size: 75px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    margin-bottom: 5px !important;
}
.years-exp p {
    margin: 8px 0 0;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
}
.years-exp p span {
    font-weight: 600;
}
/* Services */
.service-section{
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.service-section::before{
  content: '';
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background-image: url('../img/bg/service-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
/* Service */
.service-item{
  position: relative;
  overflow: hidden;
}
.service-item .service-image img{
  height: 300px;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.service-item .service-content{
  position: relative;
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid hsla(211, 92%, 20%, 0.239);
}
.service-item .service-content::after{
  content: '';
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--secondary-color);
  z-index: 0;
  transition: all 0.5s ease-in-out;
}
.service-item:hover .service-content::after{
  width: 100%;
}
.service-item .service-content .ser-title{
  color: var(--heading-color);
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 20px !important;
  display: flex;
  align-items: baseline;
  gap: 65px;
  transition: color 0.4s ease;
}
.service-item:hover .service-content .ser-title{
   color: var(--secondary-color);
}
.service-slick{
  padding: 0 12.5px;
}
.image-anime, .overlay-anime {
  position: relative;
  overflow: hidden;
}
.image-anime::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(163, 225, 248, 0.15) 30%,
    rgba(163, 225, 248, 0.7) 50%,
    rgba(222, 49, 66, 0.4) 60%,
    rgba(163, 225, 248, 0.15) 70%,
    transparent 100%
  );
  transform: skewX(-25deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.image-anime:hover::before {
  animation: electricSweep 0.9s ease forwards;
  opacity: 1;
}
@keyframes electricSweep {
  0% {
    left: -120%;
  }
  100% {
    left: 150%;
  }
}
.overlay-anime::before,
.overlay-anime::after {
  content: "";
  position: absolute;
  top: 0;
  width: 55%;
  height: 100%;
  opacity: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(62, 35, 131, 0.2) 25%,
    rgba(222, 49, 66, 0.85) 50%,
    rgba(62, 35, 131, 0.2) 75%,
    transparent 100%
  );
}
.overlay-anime::before {
  left: 50%;
  transform: translateX(-50%) skewX(-25deg);
}
.overlay-anime::after {
  right: 50%;
  transform: translateX(50%) skewX(25deg);
}
.overlay-anime:hover::before {
  animation: splitLeft 0.75s cubic-bezier(.25,.8,.25,1) forwards;
  opacity: 1;
}
.overlay-anime:hover::after {
  animation: splitRight 0.75s cubic-bezier(.25,.8,.25,1) forwards;
  opacity: 1;
}
@keyframes splitLeft {
  0% { left: 50%; }
  100% { left: -70%; }
}
@keyframes splitRight {
  0% { right: 50%; }
  100% { right: -70%; }
}
.feat-action-wrap{
  margin-top: 40px;
}
.feat-widget {
  position: relative;
  width: 100%;
  max-width: 900px;
  border-radius: 30px;
  overflow: hidden;
}
.feat-widget {
  width: 100%;
  height: 100%;
  max-height: 100%;
  border-radius: 30px;
  overflow: hidden;
}
.feat-widget img{
   min-height: 320px;
   height: 100%;
   width: 100%;
   max-height: 100%;
   /* object-fit: cover; */
}
.feat-item{ border:1px solid #e2e2e2; padding: 20px;}
.feat-item .feat-icon {
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #978b6224;
    border-radius: 10px;
}
.feat-item .feat-icon img{
  max-width: 60px;
  height: auto;
}
.feat-item:hover .feat-icon img{
  animation: shock 0.3s both;
}
@keyframes shock{
  100% {
    transform: translate(0px, 0px);
}
95% {
    transform: translate(-0.35px, 0px);
}
90% {
    transform: translate(0.3px, 0px);
}
85% {
    transform: translate(1.35px, -0.3px);
}
80% {
    transform: translate(0.8px, 0.8px);
}
75% {
    transform: translate(1.75px, -0.5px);
}
70% {
    transform: translate(1.5px, 0.6px);
}
65% {
    transform: translate(-3.15px, 0.35px);
}
60% {
    transform: translate(3.6px, 1.6px);
}
55% {
   
    transform: translate(-4.05px, 1.8px);
}
50% {
    
    transform: translate(1.5px, 0px);
}
45% {
   
    transform: translate(-5.5px, -1.65px);
}
40% {
   
    transform: translate(4.2px, 2.4px);
}
35% {
   
    transform: translate(0.65px, -0.65px);
}
30% {
    
    transform: translate(-7px, -1.4px);
}
25% {
  
    transform: translate(-6.75px, -0.75px);
}
20% {
   
    transform: translate(-2.4px, 0.8px);
}
15% {
  
    transform: translate(0px, 0px);
}
10% {
   
    transform: translate(4.5px, 2.7px);
}
5% {
   
    transform: translate(-6.65px, 2.85px);
}
}
.feat-item .feat-content{
  margin-top: 20px;
}
.feat-item .feat-content .feat-title{
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 15px !important;
}
.feat-item .feat-content .feat-desc{
  color: var(--muted-text);
  font-size: 16px;
  line-height: 27px;
}
.achievements-section{
  position: relative;
  overflow: hidden;
}
.achievements-section .achieve-wrapper{
  padding: 110px 0 0 110px;
  border-radius: 25px;
  background-image: url('../img/bg/counter-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 550px;
}
.counter-rhs-wrap{
  width: 100%;
  margin-top: 150px;
  margin-right: 40px;
}
.counter-item{
    padding: 30px 35px;
    background-color: #D8DADF21;
    border-radius: 24px;
    border: 1px solid #FFFFFF1C;
    backdrop-filter: blur(58px);
    margin-bottom: 30px;
}
.counter-item .counter-title{
  color: var(--color-white);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 35px !important;
}
.counter-item .counter-text{
  color: var(--color-white);
  font-size: 68px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 10px;
}
.counter-item .counter-slogan{
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  margin-bottom: 0 !important;
}
.project-block{
  position: relative;
  border-radius: 24px;
  margin-bottom: 45px;
}
.project-block .proj-image{
  position: relative;
  overflow: hidden;
}
.project-block .proj-image img{
  height: 453px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.project-block .proj-content{
  padding: 30px 30px 45px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  max-width: 360px;
  border-radius: 24px;
  border-top: 1px solid rgba(227, 229, 232, 0.13);
   background: linear-gradient(
    90deg,
    rgba(18, 25, 45, 0.75) 0%,
    rgba(28, 32, 48, 0.65) 50%,
    rgba(60, 60, 70, 0.55) 100%
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.project-block .proj-content .proj-loca{
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px !important;
}
.project-block .proj-content .proj-loca .icon{
  font-size: 17px;
  color: var(--secondary-color) !important;
}
.project-block .proj-content .proj-loca .info{
  color: var(--color-white);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
}
.project-block .proj-content .proj-title{
  color: var(--color-white);
  font-weight: 600;
  font-size: 28px;
  line-height: 35px;
  text-transform: capitalize;
  margin-bottom: 0 !important;
  transition: color 0.3s ease;
}
.project-block .proj-content .proj-title a{
  color: inherit;
}
.project-block .proj-content .proj-title:hover{
  color: #998B64;
}
.proj-action-wrap{
  margin-top: 45px;
}
/* CTA */
.cta-area{
  position: relative;
  background-image: url('../img/bg/cta-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}
.cta-action-wrap{
  margin-top: 45px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.call-box {
  display: flex;
  align-items: center;
  gap: 8px;
}
.call-icon {
  width: 55px;
  height: 55px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.call-icon i {
  font-size: 21px;
  color: var(--color-white);
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.25));
}
.call-content span {
  display: block;
  font-size: 15px;
  color: var(--color-white);
  font-weight: 500;
  margin-bottom: 3px;
}
.call-content a {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition:color .3s ease;
}
.call-content a:hover{
  color: var(--secondary-color);
}
.raq-intro-text{
  color:#000;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px; 
}
.raq-form-conteiner{
  margin-top: 30px;
}
.raq-form-conteiner .form-group{
  margin-bottom: 25px;
}
.raq-form-conteiner .form-control, .raq-form-conteiner .form-select{
 background-color: #f4f4f4;
    border: 1px solid #e9e9e9;
  padding: 15px 20px;
  border-radius: 50px;
  box-shadow: none !important;
}
.raq-form-conteiner .form-control::placeholder, .raq-form-conteiner .form-select::placeholder{
  color: #a9a8a7 !important;
}
.raq-form-conteiner .form-control:focus, .raq-form-conteiner .form-select:focus{
  border-color: var(--secondary-color) !important;
}
.rqa-widget-wrapper{
  text-align: center;
  margin-top: 40px;
}
.rqa-widget-wrapper img{
  border-radius: 30px;
}
/* footer */
.footer-area{
  position: relative;
  overflow: hidden;
  background-color: #1c3249;
  background: linear-gradient(to top right, #0D1B2A 0%, #1F3E63 40%, #4473A0 100%);
}
footer .footer-top{
  position: relative;
  padding: 80px 0 30px;
}
.footer-logo{
  background-color: var(--color-white);
  padding: 10px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 20px;
}
.footer-logo img{
  height: 75px;
  width: auto;
  border-radius: 20px;
}
.footer-desc{
  color: #e2e0e0;
  font-size: 16px;
  line-height: 27px;
}
.footer-social-wrapper{
  margin-top: 25px;
}
.footer-socials{
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer-socials li a{
  height: 40px;
  width: 40px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #998C65;
  font-size: 15px;
  color: var(--color-white);
  transition: all 0.4s ease-in-out;
}
.footer-socials li:hover a{
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.footer-title{
  position: relative;
  color: var(--color-white);
  font-size: 22px;
  font-weight: 600;
  text-transform: capitalize;
  padding-bottom: 15px;
  margin-bottom: 25px;
  z-index: 1;
}
.footer-title::before {
  position: absolute;
  content: '';
  z-index: -1;
  width: 90px;
  height: 3px;
  border-radius: 50px;
  background: rgb(255 255 255 / 45%);
  bottom: 0;
  left: 0;
}
.footer-title::after {
  position: absolute;
  content: '';
  z-index: -1;
  width: 30px;
  height: 3px;
  border-radius: 50px;
  background: var(--secondary-color);
  bottom: 0;
  left: 0;
  animation: electricMove 2s linear infinite;
}
@keyframes electricMove{
  0%{
    left: 0;
  }
  50%{
    left: 60px;
  }
  100%{
    left: 0;
  }
}
.footer-links{
  list-style: none;
}
.footer-links li{
  margin-bottom: 10px;
}
.footer-links li a{
  color: var(--color-white);
  font-size: 15px;
  transition: 0.3s ease all;
}
.footer-links li:hover a{
  color: var(--secondary-color);
}
.contus-links{
  list-style: none;
}
.contus-links li{
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
}
.contus-links li .icon{
  height: 40px;
  width: 40px;
  min-height: 40px;
  min-width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  font-size: 16px;
  color: var(--color-white);
  border-radius: 50%;
  border: 1px solid #4782c1;
  transition: all 0.4s ease-in-out;
}
.contus-links li:hover .icon{
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.contus-links li .info{
  color: var(--color-white);
  font-size: 16px;
  line-height: 27px;
  word-break: break-word;
  transition: 0.3s ease-in-out all;
}
.contus-links li a.info:hover{
  color: var(--secondary-color);
}
.footer-bottom {
    padding: 20px 0;
    background: linear-gradient(to top right, #08121E 0%, #1B3A5B 45%, #4473A0 100%);
    box-shadow: inset 0 30px 80px rgba(0,0,0,0.6);
    border-top: 1px solid #afc3d945;
}
.copyright-text, .credit-text {
    font-size: 16px;
    color: var(--color-white);
}
.copyright-text .brand-text {
    color: var(--secondary-color);
    text-transform: capitalize;
    font-weight: 600 !important;
    transition:color .5s ease-in-out;
}
.copyright-text .brand-text:hover{
  color: var(--primary-color);
}
.credit-text a {
    color: #0091BF !important;
    font-weight: 600 !important;
    text-transform: capitalize;
}
/* Breadcrumb */
.breadcrumb-area{
  position: relative;
  background-image: url('../img/bg/breadcrumb-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 185px 0 140px;
}
.breadcrumb-inner{
  position: relative;
  text-align: center;
}
.breadcrumb-inner .breadcrumb-title {
    color: var(--color-white);
    font-size: 54px;
    text-align: center;
    text-transform: capitalize;
    position: relative;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 10px !important;
}
.custom-breadcrumb {
    background: rgb(255 255 255 / 8%);
    padding: 8px 15px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    width: fit-content;
    backdrop-filter: blur(10px);
    margin: auto;
}
.custom-breadcrumb .breadcrumb{
  display:flex;
  gap:8px;
}
.custom-breadcrumb .breadcrumb-item{
  font-size: 15px;
}
.custom-breadcrumb a{
  color:#ffffff;
  text-decoration:none;
  font-size: 15px;
  font-weight:500;
  display:flex;
  align-items:center;
  gap:6px;
}
.custom-breadcrumb a:hover {
    color: #e39ea0;
}
.custom-breadcrumb .separator{
  color:#ffffff;
  opacity:0.7;
}
.custom-breadcrumb .breadcrumb-item.active {
    color: #97bee7;
    font-weight: 500;
}
/* Contact Us */
.contus-card{
  position: relative;
  background-color: var(--color-white);
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  border-radius: 15px;
  margin-bottom: 30px;
}
/* .contus-card::before {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    top: -8px;
    background: var(--secondary-color);
    border-radius: 10px;
    height: 20px;
    z-index: -1;
} */
.contus-card .media-thumb img{
  height: 268px;
  width: 100%;
  object-fit: cover;
  object-position: top;
}
.contus-card .contus-info {
    padding:30px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}
.contus-card .contus-info .ico-wrap{
  /* position: absolute; */
  /* left: 50%; */
  /* transform: translateX(-50%); */
  height: 90px;
  width: 90px;
   min-height: 90px;
  min-width: 90px;
  /* margin-top: -95px; */
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  border: 5px solid var(--color-white);
  transition: all 0.4s ease-in-out;
}
.contus-card:hover .contus-info .ico-wrap{
  background-color: var(--secondary-color);
  animation: shockShake 0.4s linear infinite;
}
.contus-card .contus-info .ico-wrap i{
  font-size: 37px;
  color: var(--color-white);
}
@keyframes shockShake{
  0%   { transform: translate(0,0) rotate(0deg); }
  10%  { transform: translate(-2px,2px) rotate(-2deg); }
  20%  { transform: translate(2px,-2px) rotate(2deg); }
  30%  { transform: translate(-2px,0px) rotate(-1deg); }
  40%  { transform: translate(2px,2px) rotate(1deg); }
  50%  { transform:  translate(-1px,-2px) rotate(-1deg); }
  60%  { transform:  translate(2px,1px) rotate(1deg); }
  70%  { transform:  translate(-2px,1px) rotate(-1deg); }
  80%  { transform:  translate(1px,-1px) rotate(1deg); }
  90%  { transform:  translate(-1px,2px) rotate(-1deg); }
  100% { transform:  translate(0,0) rotate(0deg); }
}
.contus-card .contus-info .contus-title{
   color: var(--heading-color);
   font-size: 25px;
   font-weight: 600;
   margin-top: 15px;
   margin-bottom: 14px;
}
.contus-card .contus-info .cts-value {
  display: block;
  color: #3e4042;
  font-size: 17px;
  line-height: 28px;
  margin-bottom: 2px;
  word-break: break-word;
  transition: all 0.4s ease;
}
.contus-card .contus-info a.cts-value:hover{
  color: var(--secondary-color);
}
.contus-form-container .form-group{
  margin-bottom: 25px;
}
.contus-form-container .form-control, .contus-form-container .form-select{
  box-shadow: none !important;
  padding: 15px 20px;
  border-radius: 0 !important;
  background-color: #f6f6f6;
  border-color: #f6f6f6;
  transition: 0.4s ease-in-out all !important;
}
.contus-form-container .form-control::placeholder, .contus-form-container .form-select::placeholder{
  color: #505d7b !important;
}
.contus-form-container .form-control:focus, .contus-form-container .form-select:focus{
  border-color: var(--secondary-color);
}
.contus-submit{
  margin-top: 12px;
}
/* Clients */
.client-card{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow:
    0 25px 60px rgba(68, 115, 160, 0.22),
    0 10px 25px rgba(68, 115, 160, 0.12);
  margin-bottom: 25px;
  transition: all 0.3s ease;
}
.client-card:hover{
  transform: translateY(-6px);
  box-shadow:
    0 35px 75px rgba(194, 66, 70, 0.22),
    0 15px 35px rgba(194, 66, 70, 0.10);
}
.client-logo {
    width: 100%;
    text-align: center;
}
.client-logo img {
    min-height: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.vm-card {
    position: relative;
    background-color: var(--color-white);
    padding: 30px;
    border-top: 7px solid #978b64;
    border-bottom: 7px solid #cb4048;
    border-radius: 40px;
    /* box-shadow: rgb(100 100 111 / 50%) 0px 7px 29px 0px; */
    box-shadow: rgba(151, 139, 100, 0.35) 0px 5px 15px;
    margin-top: 50px;
}
.vm-card .icon img{
  max-width: 125px;
  height: auto;
}
.vm-card .content{
  margin-top: 20px;
}
.vm-card .content .vision-desc{
  font-size: 20px;
  line-height: 32px;
  color: var(--color-dark);
}
.fw-b{
  font-weight: 600 !important;
}
.serinn-wid-wrap{
  position: relative;
    overflow: hidden;
    height: 100%;
    max-height: 100%;
    border-radius: 10px;
}

.serinn-wid-wrap img{
    width: 100%;
    height: 100%;
    /* max-height: 580px; */
    max-height: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.serinn-wid-wrap:hover img{
    transform: scale(1.06);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.serinn-wid-wrap::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;
}
.serinn-wid-wrap:hover::after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
.serinn-list li{
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 17px;
}

.serinn-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url("../img/icons/flash.png") no-repeat center;
    background-size: contain;
}
.projin-heading{
  position:relative;
  text-transform: capitalize;
    display: inline-block;
    color: var(--heading-color);
      font-size: 35px;
    line-height: 46px;
    font-weight: 600;
    margin-bottom: 45px;
    padding-bottom: 18px;
}

.projin-heading:before{
  content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    bottom: 0;
    max-width: 100px;
    left: 0;
}

.projin-heading:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    bottom: 0;
    max-width: 30px;
    border-inline: 4px solid #fff;
    left: 0;
    margin-left: 60px;
}
.projpp-card{
  position: relative;
  margin-bottom: 25px;
}
.projpp-card .projpp-image{
  position: relative;
  overflow: hidden; 
}
.projpp-card .projpp-image img{
  height: 275px;
  width: 100%;
  object-fit: cover; 
    transition: all 0.4s ease-in-out;
}
.projpp-card:hover .projpp-image img{
   transform: scale(1.1);
}
.re-anime{
  position: relative;
  overflow: hidden;
}
.re-anime: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;
}
.re-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.projpp-card .projpp-image .magni {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid #372d31;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.35s ease;
    cursor: pointer;
}
.projpp-card:hover .projpp-image .magni {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
 .magni i {
    font-size: 17px;
}
.fancybox__container{
  z-index: 105000 !important;
}
.projpp-card .proj-label{
    position: absolute;
    right: 30px;
    top: 30px;
    left: 30px;
    width: fit-content;
    z-index: 2;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    background: linear-gradient(to right, #B9A36A 0%, #8E7A49 50%, #B9A36A 100%);
    background-size: 200% auto;
    border-radius: 10px;
    text-transform: capitalize;
    color: var(--color-white);
    padding: 8px 20px;
    cursor: pointer;
    transition: 0.4s ease-in-out all;
}
.projpp-card:hover .proj-label{
  background: linear-gradient(to right, #D84A4E 0%, #A92E32 50%, #D84A4E 100%);
}
.raq-heading{
  font-size: 28px !important;
  line-height: 1 !important;
  margin-bottom: 3px;
}
.heading-divider{
  display: inline-block;
  position: relative;
  height: 4px;
  border-radius: 30px;
  background: #C24246;
  width: 90px;
}

.heading-divider:after {
  content: '';
  position: absolute;
  left: 0;
  top: -4.3px;
  height: 12px;
  width: 12px;
  background: #C24246;
  border-radius: 50px;
  box-shadow: 0 1px 80px 12px rgba(194, 66, 70, 0.25);
  animation: heading-move 5s infinite linear;
}

@keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(85px);
  }
  100% {
    transform: translateX(-1px);
  }
}

.license-section{
/*background: linear-gradient(135deg,#0f172a,#1e293b);
color:white;*/
    background:#978b6224;
   /* border-top-right-radius: 80px;
    border-top-left-radius: 80px;*/
}



.license-section{
/*background: linear-gradient(135deg,#0f172a,#1e293b);
color:white;*/
    background:#978b6224;
   
}

.license-title{
font-size:34px;
font-weight:700;
color:#d4af37;
}

.license-subtitle{
color:#cbd5e1;
font-size:18px;
}

.license-card{
background: rgba(255,255,255,0.05);
backdrop-filter: blur(12px);
border-radius:15px;
border:1px solid rgba(212,175,55,0.3);
box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

.license-img{
border-radius:10px;
border:2px solid #d4af37;
}

.license-text{
color:#e2e8f0;
font-size:16px;
}

.feature{
background: rgba(255,255,255,0.08);
padding:10px 15px;
border-radius:8px;
font-size:15px;
}

.feature i{
color:#d4af37;
margin-right:8px;
}

.verified{
color:#22c55e;
font-weight:600;
}#clients {
  background-color: #f8f9fa; /* light grey background */
}

.client-slider img {
  max-height: 50px;
  margin: 0 auto;
  /*filter: grayscale(100%);
  transition: filter 0.3s;*/
}

.client-slider img:hover {
  filter: grayscale(0%);
}