/* @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

    * {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    :root {
        /* --primary-font: "Manrope", sans-serif; */
        --primary-font: "Rubik", sans-serif;
        --secondary-font:Rubik, -apple-system, system-ui, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
        --rubik-font: "Rubik", sans-serif;
        --primary-color:#282B7B;
        --secondary-color:#2E0C7D;
        --color-white:#FFF;
        --color-dark:#000;
        --heading-color:#06040e;
        --gray-color:#81848a;
      }
      .newh4{color: var(--secondary-color); font-size: 22px;}
      ::selection{
        background-color: var(--secondary-color) !important;
        color: var(--color-white) !important;
      }
    .site-wrapper{
        overflow: hidden;
      }
      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 {
        font-family: var(--secondary-font);
        position: relative;
        margin: 0 0 20px;
        line-height: 27px;
        color: var(--color-dark);
        font-weight: 400;
        font-size: 16px;
        letter-spacing: 0.2px;
    }
    figure{
        margin: 0 !important;
    }
    p,
    li {
         font-family: var(--primary-font);
        text-decoration: none !important;
    }
    h1,
    h2,
    h3,
    h4,
    h5,
    h6{
        font-family: var(--primary-font) !important;
    }
    img{
        max-width: 100%;
    }
    .bg-clay{
        background-color: #f5f5f5 !important;
    }
    img.header-logo {
        max-width: 235px;
    }
    nav.navbar {
        padding: 0;
    }
    ul.navbar-nav {
        margin: 0 0 0 auto;
    }
    section.hero-slider {
        /* margin-top: -168px; */
        position: relative;
        z-index: 0;
        padding: 320px 0 260px;
    }
    .py-70{
      padding: 70px 0;
    }
    .pt-120{
      padding-top: 120px;
    }
    .mb-20{
        margin-bottom: 20px !important;
    }
    .mb-25{
        margin-bottom: 25px !important;
    }
    .btn{
         font-family: var(--primary-font);
          padding: 15px 25px;
    }
.site-btn {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 0.6em;
    text-transform: capitalize;
    color: #000;
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 2px 40px 2px 2px;
    border: none;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}
.site-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    width: 12px;
    height: 12px;
    background-image: url('../img/icons/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 24px auto;
    transform: translate(-15px, -50%);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}
.site-btn::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    border-radius: 8px;
    background: var(--secondary-color);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}
.site-btn:hover {
    background-color: transparent;
}
.site-btn:hover::before {
    transform: translate(-15px, -50%) rotate(45deg);
}
.site-btn:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}
.site-btn span {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1em;
    background-color: var(--color-white);
    color: var(--color-dark);
    border-radius: 8px;
    padding: 15px 20px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease-in-out;
}
.site-btn:hover span {
    background-color: transparent;
    color: var(--color-white);
}
.site-btn:hover span::after {
    width: 100%;
    left: 0;
    right: auto;
}
.header-btn .site-btn{
    background-color: transparent !important;
}
.header-btn .site-btn span {
    background-color: transparent !important;
    color: var(--color-white) !important;
}
.header-btn .site-btn::after{
    width: 100% !important;
    left: 0 !important;
    right: auto !important;
}
a.nav-link {
    font-family: var(--primary-font);
    font-size: 16px; 
    color: var(--color-dark); 
    margin: 0 8px;
    padding: 36px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.main-header.sticky a.nav-link:hover{
    color:var(--secondary-color) !important;
    transition: 0.3s ease;
}
.bs-box img.hb-img {
    max-height: 800px;
    min-height: 800px;
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    z-index: -1;
}
.bs-box {
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.bs-video-box, .bs-box{
  width: 100%;
  height: 650px;
}
.bs-box .hb-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 70%;
  z-index: -1; 
}
.bs-box:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(270deg, rgba(30, 30, 30, 0) 0.02%, rgba(30, 30, 30, 0.9) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0) 87.63%, rgba(30, 30, 30, 0.6) 100.45%);
    width: 100%;
    height: 100%;
    z-index: 1;
}
  .bs-con {
    position: absolute;
    top: 50%;
    left: 50%;
    right: 50%;
    width: 100%;
    max-width: 100%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
   .bs-con h6{
    color: var(--color-white);
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding-left: 26px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
   }
   .bs-con h6::before {
    content: '';
    position: absolute;
    top: 53%;
    left: 0;
    transform: translateY(-50%);
    background: url('../img/logo-icon.png') no-repeat;
    background-position: left center;
    background-size: cover;
    width: 24px;
    height: 16px;
}
    .bs-con h1{
    font-size: 50px;
    font-weight: 300;
    line-height: 65px;
    letter-spacing: -0.01em;
    color: var(--color-white);
    margin-bottom: 0;
    cursor: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
    }
    .bs-con h1 span{
        font-weight: 700 !important;
    }
    .bs-con p{
    color: #fff;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    margin: 25px 0;
    }
    .bsc-btn {
        /* display: flex;
        justify-content: center;
        column-gap: 30px; */
        margin-top: 35px;
    }
    .slick-vertical .slick-slide{
        border: none !important;
    }
.bs-slider .slick-prev, .bs-slider .slick-next {
    top: 87%;
    width: 50px !important;
    height: 50px !important;
    opacity: 1;
    background-color: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    /* transform: scale(0) !important; */
    transition: all 0.3s ease-in-out;
}
/* .bs-slider:hover .slick-prev, .bs-slider:hover .slick-next{
    transform: scale(1) !important;
    transition: transform 0.3s ease-in-out;
} */
.bs-slider .slick-prev i, .bs-slider .slick-next i{
   color: var(--secondary-color);
    font-size: 20px;
}
.bs-slider .slick-prev:hover, .bs-slider .slick-next:hover{
    background-color: var(--secondary-color);
}
.bs-slider .slick-prev:hover i, .bs-slider .slick-next:hover i{
  color: var(--color-white);
}
  .slick-dots li button {
    width: 15px !important;
    height: 15px !important;
    border-radius: 50%;
    padding: 0px !important;
    background-color: #c9c4be !important;
    border: 1px solid transparent !important;
    transition:all 0.3s ease;
}
    .slick-dots li button:before {
        display: none !important;
    }
    .slick-dots li {
        width: 17px !important;
        height: 17px !important;
        margin: 0 5px !important;
    }
  .bs-slider .slick-dots {
    bottom: 90px !important;
    left: 50%;
    right: 50%;
    transform: translateX(-50%) !important;
}
    .slick-dots li.slick-active button {
    background-color: var(--primary-color) !important;
    border-color: var(--color-white) !important;
    transition:all 0.3s ease;
   }
    .slick-prev {
        left: 40px !important;
        z-index: 1;
    }
    .slick-next {
        right: 40px !important;
    }
    .slick-next:before, .slick-prev:before {
        display: none;
    }
    .slick-next, .slick-prev {
        /* background-image: url(../../assets/img/la.png) !important; */
        width: 40px !important;
        height: 40px !important;
        background-size: 40px !important;
        opacity: 0.6;
    }
    .slick-next:hover, .slick-prev:hover {
        background-size: 20px !important;
        transition: 0.5s !important;
        opacity: 1;
    }
    .bs-slider {
        margin: 0 !important;
    }
/* Hide by default */
.slide-animate {
  opacity: 0;
  transform: translateY(40px);
}
/* Animation keyframe */
@keyframes fadeInUpCustom {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Optional delay classes */
.delay-1 {
  animation-delay: 0.3s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}
.sticky {
    width: 100%;
    position: fixed !important;
    top: 0px;
    z-index: 999;
    top: 0 !important;
    background-color: var(--color-white) !important;
}
.sticky img.header-logo {
    max-width: 230px;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .nav-link:focus {
    color: var(--primary-color) !important;
}
.header-dropdown .dropdown-menu {
    padding: 10px 15px;
    margin: 0;
    border: none;
    border-radius: 20px;
    background: var(--color-white);
}
.header-dropdown .dropdown-menu li {
    border-bottom: 1px solid rgb(197 197 203);
}
.header-dropdown .dropdown-menu li a {
    font-size: 15px;
    font-weight: 400;
    padding: 10px;
    color: #000;
    position: relative;
    overflow: hidden;
    transition: all .5s ease-in-out;
}
.header-dropdown .dropdown-menu li a{
    background-color: transparent !important;
}
.header-dropdown .dropdown-menu li:hover a{
  margin-left: 4px;
  background-color: transparent !important;
  color: var(--primary-color);
  transition: all .5s ease-in-out;
}
.header-dropdown .dropdown-menu li:hover a.sub-menu{
    color: #000;
}
.header-dropdown .dropdown-menu li .dropdown-item.active{
  background-color: var(--color-white);
    color: var(--primary-color) !important;
}
.header-dropdown .dropdown-menu li:last-child{
    border: none !important;
}
.nav-link:hover{
    color: var(--primary-color) !important;
    transition:color 0.3s ease;
}
#header-dropdown .dropdown-toggle::after {
    display: none;
    /* display: inline-block; */
    content: '\f078' !important;
    font-family: 'Font Awesome 6 Pro' !important;
    vertical-align: baseline !important;
    border: none !important;
    font-size: 14px;
    font-weight: 900;
    position: relative;
    top: -1px;
    right: 2px;
    padding-left: 0px;
}
/* Dropdown Submenu */

.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='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
.navbar-toggler {
    border: 2px solid var(--primary-color) !important;
    background-color: var(--primary-color) !important;
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem #282b7b36 !important;
}
.main-header {
    position: relative;
    z-index: 99999;
    padding: 5px 0;
    background: var(--color-white);
}
.section-padding{
    padding: 70px 0;
}
.section-space{
    margin: 35px 0;
}
/* About Us */
.abtus-section{
    background: url('../img/bg/about-us-bg.svg') no-repeat;
    background-position: bottom left;
    background-size: auto;
}
.about-image {
    position: relative;
    display: flex;
    justify-content: end;
    padding-top: 150px;
    margin-right: 40px;
}
.about-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 330px;
}
.about-img-1 figure img {
    height: 300px;
    width: 100%;
    border-radius: 40px;
    object-fit: cover;
}
.about-img-2 figure, .about-img-1 figure {
    display: block;
    border-radius: 40px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.about-img-2 img {
    border: 10px solid var(--color-white);
    aspect-ratio: 1 / 1;
    height: 400px;
    object-fit: cover;
    object-position: -30px center;
    border-radius: 40px;
}
.image-anime {
    position: relative;
    overflow: hidden;
}
.image-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;
}
.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
.company-experience {
    position: absolute;
    top: 0;
    right: 0px;
    display: flex;
    align-items: center;
    max-width: 250px;
    border-radius: 10px;
    padding: 15px;
    border: 6px dashed #3b3b8d38;
}
.company-experience-counter {
    width: 120px;
}
.company-experience-counter h2 {
    font-size: 50px;
    text-align: center;
    line-height: 60px;
    color: var(--primary-color);
    font-weight: 700;
}
.company-experience-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4em; 
    color: var(--primary-color);
    margin: 0;
}
.exp-badge {
    position: absolute;
    right: 11%;
    top: -8%;
    z-index: 0;
}
.exp-badge img {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(208, 167, 99, 0.9));
}
.section-title {
    margin-bottom: 40px;
}
.section-title h3 {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
    padding-left: 33px;
    margin-bottom: 15px;
}
.section-title h3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url('../img/logo-icon.png') no-repeat;
    background-position: left center;
    background-size: contain;
    width: 24px;
    height: 16px;
}
.section-title h3.text-white::before{
    filter: invert(1) brightness(10) !important;
}
.section-title h2 {
    font-size: 50px;
    font-weight: 300;
    line-height: 60px;
    letter-spacing: -0.01em;
    color: var(--heading-color);
    margin-bottom: 0;
    cursor: none;
}
.section-title h2 span{
    font-weight: 700 !important;
}
.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
}
.about-content-list {
    margin-bottom: 40px;
}
.about-content-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.about-content-list ul li {
    position: relative;
    color: var(--color-dark); 
    padding-left: 40px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
}
.about-content-list ul li:before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url('../img/icons/gear-check.png') no-repeat center left;
    background-size: cover;
}
.genuine-rating-counter {
    background: #f3f1f7;
    border-radius: 40px;
    padding: 50px;
    text-align: center;
}
.genuine-rating-counter .about-counter {
    margin-bottom: 5px;
}
.genuine-rating-counter .about-counter h2 {
    background: url('../img/bg/genuine-rating-counter-bg.jpg');
    background-size: cover;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-dark);
    font-size: 80px;
    font-weight: 900;
    margin: 0;
    line-height: 96px;
}
.genuine-rating {
    margin-bottom: 20px;
}
.genuine-rating ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.genuine-rating ul li {
    margin-right: 5px;
}
.genuine-rating ul li:last-child {
    margin-right: 0;
}
.genuine-rating ul li i {
    color: #ff9900;
}
.genuine-rating-counter-content p {
    text-transform: capitalize;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    color: var(--gray-color);
}
/* Services */
.services-section {
    position: relative;
    padding: 100px 0 150px;
    background-image: url("../img/bg/service-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center 63.0352px;
}
.services-section:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #131334;
    opacity: 70%;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.section-row{
    position: relative;
    margin-bottom: 80px !important;
    z-index: 1;
}
.our-services-list {
    position: relative;
    z-index: 2;
    margin-top: -180px;
}
.services-list-box {
    background: var(--color-white);
    border: 1px solid #f5f5f5;
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0px 4px 30px 0px #0000000A;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
}
.services-list-box .service-item {
    /* width: calc(25% - 45px); */
    width: calc(33.33% - 45px);
    position: relative;
}
.services-list-box .service-item:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    right: -30px;
    bottom: 0;
    left: auto;
    border-right: 1px solid #ebebeb;
}
.services-list-box .service-item:last-child::after{
    display: none;
}
.service-item .icon-box {
    position: relative;
    overflow: hidden;
    height: 280px;
    width: 280px;
    max-width: 100%;
    border-radius: 50%;
    align-items: center;
    border: 5px solid #3b3b8d2e;
    margin-bottom: 20px;
}
.service-item .icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition:0.6s ease-in-out;
}
.service-item:hover .icon-box img{
    transform: scale(1.2);
    transition:transform 0.6s ease-in-out;
}
.services-list-box .service-item:nth-child(2):hover .icon-box img{
   transform: scale(1.2) rotate(2deg) !important;
   transition:transform 0.6s ease-in-out;
}
.service-body {
    margin: 37px 0;
}
.service-body h3 {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
    margin: 0;
}
.service-item .service-footer a {
    background: #f5f5f5;
    border-radius: 8px;
    width: 70px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.service-item .service-footer a i {
    font-size: 18px;
    color: var(--color-dark);
    transition: all 0.3s ease-in-out;
}
.service-item:hover .service-footer a {
    background: var(--primary-color);
}
.service-item:hover .service-footer a i{
    color: var(--color-white);
}
.our-story-header-img {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.our-story-header-img figure {
    width: calc(50% - 15px);
    display: block;
    border-radius: 40px;
}
.our-story-header-img figure img {
    aspect-ratio: 1 / 0.71;
    height: 210px;
    width: 100%;
    object-fit: cover;
    border-radius: 40px;
}
.our-story-img {
    margin-right: 40px;
}
.our-story-img figure, .our-story-img img {
    width: 100%;
    display: block;
    border-radius: 40px;
}
.our-story-img img {
    aspect-ratio: 1 / 0.85;
    height: 490px;
    object-fit: cover;
}
.our-story-content-body {
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 30px;
    padding-bottom: 30px;
}
.our-story-content-body p:last-child {
    margin: 0;
}
.our-story-counters {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}
.our-story-counter {
    width: calc(33.33% - 20px);
}
.our-story-counter h3 {
    margin: 0;
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.our-story-counter p {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    text-transform: capitalize;
    color: var(--color-dark);
    margin: 0;
}
/* What we do */
.what-we-do {
    background: url('../img/bg/what-we-do-bg.svg'), #0f102e;
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: auto;
}
.what-we-do-content {
    padding: 100px 120px;
    height: 100%;
}
.what-we-do-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}
.what-we-do-list-box-1, .what-we-do-list-box-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.what-we-do-item {
    width: calc(50% - 15px);
    background-color: var(--secondary-color);
    border: 1px solid #ffffff5e;
    border-bottom-width: 3px;
    border-radius: 40px;
    padding: 30px;
}
.what-we-do-list-box-1 .what-we-do-item:nth-child(even), .what-we-do-list-box-2 .what-we-do-item:nth-child(odd) {
    background: #ffffff1a;
}
.what-we-do-item .icon-box {
    margin-bottom: 30px;
}
.what-we-do-item .icon-box img {
    max-width: 50px;
}
.what-we-item-content h3 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--color-white);
    margin-bottom: 10px;
}
.what-we-item-content p {
    color: var(--color-white);
    line-height: 27px;
    opacity: 80%;
    margin: 0;
}
.what-we-do-image, .what-we-do-image figure, .what-we-do-image figure img {
    width: 100%;
    height: 100%;
}
.what-we-do-image {
    position: relative;
}
.what-we-do-image figure img {
    height: 100%;
    /* min-height: 1200px; */
    /* aspect-ratio: 1 / 0.97; */
    object-fit: contain;
}
.contact-now-circle {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    top: 50%;
    transform: translate(-50% , -50%);
    z-index: 1;
}
.contact-now-circle img {
    width: 130px;
    height: 130px;
    animation: contactrotate 20s infinite linear;
}
@keyframes contactrotate{
    0% {
    transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* Our Process */
.our-process-image {
    margin-right: 30px;
}
.our-process-image figure {
    display: block;
    border-radius: 40px;
    overflow: hidden;
}
.our-process-image img {
    width: 100%;
    height: 550px;
    aspect-ratio: 1 / 0.93;
    object-fit: cover;
    border-radius: 40px;
}
.process-step-item {
    position: relative;
    border: 1px solid var(--primary-color);
    border-radius: 40px;
    display: flex;
    align-items: center;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}
.process-step-item::before {
    content: '';
    display: block;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    width: 100%;
    height: 0;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}
.process-step-item.active:before, .process-step-item:hover:before {
    height: 100%;
    top: 0;
    bottom: auto;
}
.process-step-no {
    position: relative;
    margin-right: 20px;
    z-index: 1;
}
.process-step-no h2 {
    font-size: 50px;
    font-weight: 700;
    margin: 0;
    line-height: 60px;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}
.process-step-item:hover .process-step-no h2, .process-step-item.active .process-step-no h2{
    color: var(--color-white);
}
.process-step-content {
    position: relative;
    z-index: 1;
}
.process-step-content h3 {
    color: var(--color-dark);
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
}
.process-step-item:hover .process-step-content h3, .process-step-item.active .process-step-content h3{
    color: var(--color-white);
}
.process-step-content p {
    font-size: 16px;
    line-height: 27px;
    margin: 0;
    transition: all 0.3s ease-in-out;
}
.process-step-item:hover .process-step-content p, .process-step-item.active .process-step-content p{
    color: var(--color-white);
}
/* Testimonials */
.testimonial-section {
    background: url(../img/bg/testimonial-bg.png), #f4f3f9;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.testimonial-widget {
    margin-left: 30px;
}
.testimonial-widget figure {
    display: block;
    border-radius: 40px;
    overflow: hidden;
}
.testimonial-widget figure img{
    width: 100%;
}
.testimonial-rating{
	margin-bottom: 20px;
}
.testimonial-item .testimonial-rating i{
	color: #ff9900;
}
.testimonial-content{
	margin-bottom: 60px;
}
.testimonial-content p {
    color: #000;
    font-size: 17px;
    margin: 0;
}
.testimonial-body{
	display: flex;
	align-items: center;
}
.testimonial-body .author-image{
	margin-right: 15px;
}
.testimonial-body .author-image img{
	width: 60px;
	height: 60px;
	border-radius: 10px;
}
.testimonial-body .author-content{
	width: calc(100% - 75px);
}
.testimonial-body .author-content h3{
    color: var(--color-dark);
	font-size: 20px;
    font-weight: 700;
	text-transform: capitalize;
	margin-bottom: 5px;
}
.testimonial-body .author-content p{
    color: var(--gray-color);
	margin: 0;
    text-transform: capitalize;
}
.testimonial-slider-wrap{
    position: relative;
}
.testimonial-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: right;
    column-gap: 30px;
    margin-top: 30px;
    z-index: 2;
}
.testimonial-btn .tb-prev, .testimonial-btn .tb-next {
    position: relative;
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border-radius: 10px;
    transition: all 0.4s ease-in-out;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.testimonial-btn .tb-prev i, .testimonial-btn .tb-next i{
    font-size: 24px;
    color: var(--color-white);
}
.testimonial-btn .tb-prev:hover, .testimonial-btn .tb-next:hover{
    background-color: var(--secondary-color);
}
.testimonial-company-slider {
    border-top: 1px solid #ebebeb;
    padding-top: 40px;
    margin-top: 40px;
}
.company-logo{
    text-align: center;
    padding: 0 10px;
}
.testimonial-company-slider .company-logo img {
    background-color: var(--color-white);
    height: 120px;
    width: 100%; 
    padding: 10px;
    object-fit: contain;
}
/* Footer */
.footer-section {
    position: relative;
    overflow: hidden;
    /* background: url(../img/bg/footer-bg.svg), var(--heading-color); */
    background: 
        url(../img/bg/footer-bg.svg),
        linear-gradient(to right, #000000, #282B7B);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: auto;
    padding: 70px 0 0;
    z-index: 2;
}
.footer-section::after {
    content: '';
    position: absolute;
    height: 100%;
    min-height: 700px;
    width: 100%;
    max-width: 500px;
    background-image: url('../img/bg/wave-pattern.png');
    background-repeat: no-repeat;
    background-size: cover;
    filter: invert(1) brightness(30);
    right: 0;
    top: -10px;
    opacity: 0.1;
    z-index: -1;
}
.footer-top{
    padding-bottom: 40px;
}
.footer-logo {
    width: fit-content;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 30px;
}
.footer-logo img{
    max-width: 210px;
}
.footer-social{
    margin-top: 30px;
}
.footer-social ul {
    display: inline-flex;
    align-items: center;
    column-gap: 20px;
}
.footer-social ul li a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    color: #fff;
    background: var(--primary-color);
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    transition: 0.3s ease-in-out all;
}
.footer-social ul li a i{
    font-size: 20px;
    color: var(--color-white);
}
.footer-social ul li:hover a{
    background: var(--secondary-color);
    transition: background 0.3s ease-in-out;
}
.footer-title{
  position: relative;
  font-size: 18px;
  color: var(--color-white);
  font-weight: 500;
  padding-bottom: 15px;
  margin-bottom: 25px;
  text-transform: uppercase;
}
.footer-title:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    height: 2px;
    width: 50px;
    border-radius: 10px;
    background-color: var(--color-white);
}
.footer-links li::before {
    display: none;
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 10px;
    width: 10px;
    border-style: solid;
    border-color: #fff;
    border-width: 2px 2px 0 0;
}
.footer-links li{
    position: relative;
    margin-bottom: 15px;
    transition: 0.4s ease-in-out;
}
.footer-links li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 10px;
    width:10px;
    border-style: solid;
    border-color: #fff;
    border-width: 2px 2px 0 0;
}
.footer-links li a {
    color: #fff; 
    /* padding-left: 20px; */
    display: inline-block;
    transition: 0.4s ease-in-out;
}
.footer-links li:hover a{
    color: #ababdf;
    margin-left: 5px;
    transition:all 0.4s ease-in-out;
}
.footer-links li:hover::before{
    border-color: #ababdf;
}
.footer-cont-ul{
    list-style: none;
}
.footer-cont-ul li{
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-bottom: 15px;
}
.footer-cont-ul li .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    min-height: 50px;
    min-width: 50px;
    background-color: #3f258d;
    border: 1px solid #fff;
    border-radius: 50%;
}
.footer-cont-ul li .icon i{
    font-size: 22px;
    color: var(--color-white);
}
.footer-cont-ul li .cdata p, .footer-cont-ul li .cdata a{
    color: var(--color-white);
    margin-bottom: 0 !important;
    transition: 0.3s ease all;    line-height: 26px;
    font-size: 15px;
}
.footer-cont-ul li .cdata a:hover{
    color: #ababdf;
    transition:color 0.3s ease;
}
/* .footer-bottom {
    position: relative;
    padding: 20px 0px;
    border-top: 1px solid rgb(216 214 223 / 35%);
} */
 .footer-bottom {
    position: relative;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    background: #040416bf;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    /* border-top: 1px solid rgb(21 18 30 / 35%); */
}
.copyright-text, .credit-text{
    color: var(--color-white);
}
.copyright-text .brand-text{
    text-transform: uppercase;
   font-weight: 600 !important;
}
.credit-text a{
    color: #0091BF !important;
    font-weight: 600 !important;
}
/* Breadcrumb */
.page-banner {
    background-image: url(../img/bg/breadcrumb-bg.webp);
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.page-banner:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: '';
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgb(4 4 10)), color-stop(100, rgba(255, 255, 255, 0)));
    z-index: 0;
}
.bc-title {
    position: relative;
    font-size: 38px;
    color: #ffffff;
    line-height: 43px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
    margin-bottom: 5px;
}
.page-banner .bread-crumb {
    position: relative;
    padding: 10px 0px;
}
.page-banner .bread-crumb li {
    position: relative;
    float: left;
    font-size: 13px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    text-transform: capitalize;
    cursor: default;
    padding-right: 15px;
    margin-right: 12px;
}
.page-banner .bread-crumb li.active{
    color: #a590e7;
}
.page-banner .bread-crumb li:before {
    position: absolute;
    right: -3px;
    font-size: 10px;
    line-height: 30px;
    color: #ffffff;
    content: "\f054";
    font-weight: 800;
    font-family: "Font Awesome 6 Pro";
}
.page-banner .bread-crumb li:last-child::before{
    display: none;
}
.page-banner .bread-crumb li a {
    color: var(--color-white);
    font-weight: 400;
    transition: all 300ms ease;
}
.inner-subhead {
    font-size: 40px;
    line-height: 50px;
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 0;
}
.heading-divider{
  display: inline-block;
    position: relative;
    height: 4px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background: var(--primary-color);
    width: 90px;
}
.heading-divider:after {
    content: '';
    position: absolute;
    left: 0;
    top: -4.3px;
    height: 12px;
    width: 12px;
    background: var(--secondary-color);
    border-radius: 50px;
    box-shadow: 0 1px 80px 12px rgba(46, 12, 125, 0.2);
    animation: heading-move 5s infinite linear;
}
@keyframes heading-move {
    0% {
        transform: translateX(-1px);
    }
    50% {
        transform: translateX(85px);
    }
    100% {
        transform: translateX(-1px);
    }
}
.ceo-prof-details{
    margin-top: 25px;
}
.ceo-prof-box{
    background-color: var(--color-white);
    box-shadow: 0px 4px 30px 0px #0000000A;
    border: 1px solid #f5f5f5;
    border-radius: 25px;
    padding: 30px;
    max-width: 400px;
}
.ceo-profile {
    margin-bottom: 25px;
}
.ceo-profile figure {
    display: block;
    border-radius: 15px;
    overflow: hidden;
}
.ceo-profile figure img {
    height: 370px;
    width: 100%;
    object-fit: cover;
    object-position: 0 -20px;
    border-radius: 15px;
    transition: all 0.4s ease-in-out;
}
.text-justify{
    text-align: justify !important;
}
.ceop-name {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0 !important;
    background: url('../img/bg/text-mask.jpg') center/cover no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ceop-name::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.1);
    mix-blend-mode: overlay;
}
.ceo-desig{
    font-size: 17px;
    color: var(--secondary-color);
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 14px;
    margin-bottom: 0;
}
.quality-policy-wrap{
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
     box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
     border-radius: 25px;
}
.qp-widget-box {
    position: relative;
    z-index: 1;
}
.qp-content-box{
    position: relative;
    text-align: center;
    padding: 50px;
}
.qp-logo {
    height: 190px;
    width: auto;
    position: absolute;
    left: 0;
    top: -60px;
    transform: rotate(-19deg);
    z-index: 0;
    opacity: 0.2;
}
.qp-content-box .qp-title:before {
    position: absolute;
    content: '';
    left: 0px;
    right: 0;
    margin: 0 auto;
    bottom: 0px;
    width: 80px;
    height: 1px;
    border-right: 60px solid var(--primary-color);
    border-left: 20px solid var(--secondary-color);
}
.qp-widget-box img{
    height: 500px;
    object-fit: cover;
    border-radius: 25px 0 0 25px;
}
.quality-text {
    margin-top: 30px;
    margin-bottom: 0;
}
@keyframes stampHit {
  0% {
    transform: scale(3) rotate(-25deg) translateY(-200px);
    opacity: 0;
    filter: blur(2px);
  }
  60% {
    transform: scale(1) rotate(4deg) translateY(0);
    opacity: 1;
    filter: none;
  }
  75% {
    transform: scale(0.95) rotate(-2deg);
  }
  90% {
    transform: scale(1.03) rotate(1deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.wow.stamp-effect.animated {
  animation-name: stampHit;
  animation-timing-function: cubic-bezier(.2, .9, .3, 1.2);
  animation-fill-mode: forwards;
  transform-origin: center center;
}
/* Contact Us */
.contus-section{
    position: relative;
    padding: 100px 0;
    background: url(../img/bg/about-us-bg.svg) no-repeat;
    background-position: bottom left;
    background-size: auto;
}
.contus-section::before{
    content: '';
    position: absolute;
    width: 500px;
    height: 100%;
    background-image: url('../img/bg/cts-shape.png');
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    top: 0;
    opacity: 0.1;
    z-index: -1;
}
.contus-col{
    margin-bottom: 25px;
}
.contact-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 30px 20px;
    position: relative;
    border-radius: 0px;
    background: var(--color-white);
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    transition: all .5s ease-in-out;
}
.contact-card:hover {
    transform: translateY(-8px);
}
.contact-card::before {
    border-left: none !important;
    border-bottom: none !important;
    border-radius: 50px;
    right: 10px;
    top: 10px;
}
.contact-card::after {
    border-right: none !important;
    border-top: none !important;
    left: 10px;
    bottom: 10px;
}
.contact-card::before, .contact-card::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border: 4px solid var(--primary-color);
    opacity: .5;
    transition: all .5s ease-in-out;
}
.contact-card.second-child{
   background-color: #e5e5fd;
}
.contus-icon{
    display: flex;
    justify-content: center;
}
.contus-avatar{
    position: relative;
    overflow: hidden;
    width: 70px;
    height: 70px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: var(--primary-color);
    transition: all 0.5s ease-in-out;
}
.contus-avatar::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}
.contact-card:hover .contus-avatar {
    background-color: transparent;
}
.contact-card:hover .contus-avatar::before {
    transform: scale(1);
}
.contus-avatar i{
    font-size: 35px;
    color: var(--color-white);
    z-index: 1;
}
.contact-card:hover .contus-avatar i{
    color: var(--color-white);
}
.contus-info{
    margin-top: 15px;
}
.contus-info h4 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}
.contus-info p, .contus-info a {
    display: block;
    color: var(--color-dark);
    font-weight: 400;
    font-size: 17px;
    margin-bottom: 8px;
    transition: 0.3s ease;
}
.contact-card:hover::before, .contact-card:hover::after {
    opacity: 1 !important;
}
.contact-card:hover::after{
    width: 30%;
    height: 50%;
}
.contus-info a:hover{
    color: var(--primary-color);
}
.map-section{
    position: relative;
    background-image: url('../img/bg/breadcrumb-bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
}
/* .contus-form-container{
    background-color: var(--color-white);
    border: 1px solid #f5f5f5;
    box-shadow: 0px 4px 30px 0px rgba(40, 43, 123, 0.15);
    border-radius: 40px;
    padding: 40px;
} */
.contus-form-container {
    background-color: #151516c7;
    border: solid #f5f5f5;
    border-width: 2px 2px 4px 2px !important;
    box-shadow: 0px 4px 30px 0px rgba(40, 43, 123, 0.15);
    border-radius: 40px;
    padding: 40px;
}
.contus-form-title {
    text-align: left;
    position: relative;
    color: var(--color-white);
    font-size: 32px;
    font-weight: 600;
    border: 1px solid #fff;
    padding-left: 20px !important;
    padding: 4px 15px 4px 20px;
    width: fit-content;
    margin-bottom: 35px;
    text-shadow: rgba(0, 0, 0, 0.2) 1px 1px 2px;
}
.contus-form-title::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 6px;
    background-color: #fff;
}
.contus-form-container .form-group{
    margin-bottom: 25px;
}
.contus-form-container .form-control, .contus-form-container .form-select{
    padding: 17px 15px;
    border: 1px solid #ebebeb;
    border-radius: 10px;
}
.contus-form-container .form-control:focus{
    box-shadow: none;
    border-color: var(--primary-color);
}
.cont-map-wrap {
    background-color: var(--color-white);
    padding: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 30px;
}
.cont-map-wrap iframe{
    height: 630px;
    border-radius: 30px;
}
.service-area-wrapper{
    margin-top: 30px;
    position: relative;
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: rgba(59, 52, 153, 0.2) 0px 2px 8px 0px;
    z-index: 2;
}
.service-area-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/about/about-img-2.png);
    background-repeat: no-repeat;
    background-size: 50% 100%;
    z-index: -1;
    opacity: 0.1;
}
.serarea-card {
    background: #e7e4fb;
    padding: 20px;
    border-left: 5px solid #3f258d;
    border-radius: 10px;
    box-shadow: rgb(233 227 249) 0px 0px 5px 0px, rgb(233 227 249) 0px 0px 1px 0px;
}
.serarea-card .sercard-title{
    position: relative;
    font-size: 25px;
    font-weight: 600;
    padding-bottom: 13px;
    margin-bottom: 25px;
    color: var(--primary-color);
    width: fit-content;
}
.serarea-wid-wrap img {
    height: 500px;
    transform: scale(1.1);
    object-fit: contain;
}
.serarea-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 23px;
    font-size: 19px;
    font-weight: 400;
    list-style: none;
}
.serarea-list li .sa-key{
    color: var(--heading-color);
    font-weight: 500;
    padding-right: 5px;
}
.serarea-list li.secondary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 25px;
  height: 25px;
  background: url('../img/icons/blue-map.png') no-repeat center;
  background-size: contain;
}
.serarea-list li.primary::before{
     content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 25px;
  height: 25px;
   background: url('../img/icons/red-map.png') no-repeat center;
   background-size: contain;
}
/* Team */
.syscon-team-item {
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(46, 12, 125, 0.25), 0 4px 12px rgba(46, 12, 125, 0.15);
    border-radius: 30px;
    padding: 10px;
}
.syscon-team-item::before {
    content: '';
    display: inline-block;
    position: absolute;
    background-color: transparent;
    outline: 0.6px solid #361e7787;
    outline-offset: 1.9px;
    width: 2px;
    height: 100%;
    top: 0;
    right: 30%;
    transform: skew(-15deg);
}
.syscon-team-item .syscon-media {
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 30px;
}
.syscon-team-item .syscon-media img{
    height: 350px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.syscon-teamp-wrap{
    padding: 30px;
    border-radius: 40px;
    box-shadow: rgba(40, 43, 123, 0.25) 0px 0px 5px 0px,
             rgba(40, 43, 123, 0.15) 0px 0px 1px 0px;
    margin-bottom: 40px;
}
.syscon-team-social{
    position: absolute;
    top: 100%;
    right: 0px;
    bottom: 0px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    border: 7px solid #969af3;
    border-radius: 20px;
    transition: all 0.5s linear;
    overflow: hidden;
}
.syscon-team-item:hover .syscon-team-social {
    top: 0px;
}
.team-content-holder {
    top: 6%;
    float: left;
    width: 100%;
    position: relative;
}
.team-content-holder .msg-title {
    position: relative;
    text-align: center;
    font-size: 28px;
    color: var(--color-white);
    font-weight: 700;
    padding-bottom: 15px;
    margin-bottom: 22px;
}
.team-content-holder .msg-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    width: 40%;
    background-color: #fff;
    border-radius: 14px;
}
.team-content-holder .team-message {
    color: #fff;
    padding: 0 30px;
}
.syscon-team-info {
    position: relative;
    width: 100%;
    padding: 30px;
}
.team-detail .team-name {
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 6px;
}
.team-detail .team-position{
    color: var(--color-white);
    font-size: 16px;
    line-height: 20px;
    display: block;
}
.team-det-wrap {
    padding: 25px;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    border-bottom: 0;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 4%);
    position: relative;
    border-radius: 5px;
    transform: skew(-15deg);
    border: 1px solid #3b3b8d38;
    outline: 1px solid #3f258d1f;
    z-index: 2;
}
.team-det-wrap::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    border: 4px solid #fff;
    left: 0;
    top: 0;
    border-radius: 2px;
}
.team-message-wrap .msg-title {
    position: relative;
    font-size: 26px;
    line-height: 33px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 30px;
    padding-bottom: 12px;
    width: fit-content;
}
.team-message-wrap .msg-title::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 40%;
    background-color: var(--primary-color);
}
.team-branch {
    font-size: 15px;
    color: #cab9fd;
    margin-top: 10px;
    margin-bottom: 0;
    font-weight: 400;
}
/* History Timeline */
.main-timeline3 {
    overflow: hidden;
    position: relative
}
.main-timeline3:before {
    content: "";
    width: 10px;
    height: 100%;
    border: 3px solid #a2a2bb;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.main-timeline3 .timeline {
    width: 50%;
    padding: 10px 60px 10px 100px;
    float: right;
    position: relative
}

.main-timeline3 .timeline:before {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 5px solid #fff;
    box-shadow: 0 0 1px 5px var(--primary-color);
    position: absolute;
    top: 42px;
    left: -14px;
} 
.main-timeline3 .timeline-content {
    display: block;
    background: #ececf7;
    padding: 70px 30px 20px;
    box-shadow: 0 0 10px rgb(202 202 245) inset;
    position: relative;
}

.main-timeline3 .timeline-content:hover {
    text-decoration: none
}
.main-timeline3 .year {
    display: block;
    width: 80%;
    height: 50px;
    background: var(--primary-color);
    padding: 0 0 0 50px;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    line-height: 50px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .4) inset;
    border-radius: 10px 10px 10px 0;
    position: absolute;
    top: 20px;
    left: -20px
}

.main-timeline3 .year:before {
    content: "";
    border-top: 40px solid var(--primary-color);
    border-left: 20px solid transparent;
    border-bottom: 20px solid transparent;
    position: absolute;
    bottom: -60px;
    left: 0
}

.main-timeline3 .title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #4a4a4a
}
.main-timeline3 .description {
    font-size: 17px;
    color: #000;
    font-weight: 500;
    margin-top: 20px;
}

.main-timeline3 .timeline:nth-child(2n) {
    padding: 10px 100px 10px 60px;
    text-align: right
}

.main-timeline3 .timeline:nth-child(2n):before {
    left: auto;
    right: -14px;
    background: var(--secondary-color);
    box-shadow: 0 0 1px 5px var(--secondary-color)
}

.main-timeline3 .timeline:nth-child(2n) .year {
    padding-right: 50px;
    border-radius: 10px 10px 0;
    left: auto;
    right: -20px;
    background: var(--secondary-color)
}

.main-timeline3 .timeline:nth-child(2n) .year:before {
    border-left: none;
    border-right: 20px solid transparent;
    left: auto;
    right: 0;
    border-top-color: var(--secondary-color) !important;
}

.main-timeline3 .timeline:nth-child(2) {
    margin-top: 140px
}

.main-timeline3 .timeline:nth-child(odd) {
    margin: -140px 0 0
}

.main-timeline3 .timeline:nth-child(even) {
    margin-bottom: 60px
}

.main-timeline3 .timeline:first-child,
.main-timeline3 .timeline:last-child:nth-child(even) {
    margin: 0
}

.main-timeline3 .timeline:nth-child(3n):before {
    background: var(--primary-color);
    box-shadow: 0 0 1px 5px var(--primary-color) !important;
}
.main-timeline3 .timeline.custom:before {
    background: var(--secondary-color) !important;
}
.main-timeline3 .timeline:nth-child(3n) .year:before {
    border-top-color: var(--primary-color)
}

.main-timeline3 .timeline:nth-child(4n):before {
    background: var(--secondary-color);
    box-shadow: 0 0 1px 5px var(--secondary-color)
}

.main-timeline3 .timeline:nth-child(4n) .year {
    background: var(--secondary-color)
}

.main-timeline3 .timeline:nth-child(4n) .year:before {
    border-top-color: var(--secondary-color)
}

@media only screen and (max-width:990px) {
    .main-timeline3 .timeline {
        padding: 10px 10px 10px 100px
    }

    .main-timeline3 .timeline:nth-child(2n) {
        padding: 10px 100px 10px 10px
    }
}

@media only screen and (max-width:767px) {
    .main-timeline3:before {
        width: 8px;
        top: 0;
        left: 12px;
        transform: translateX(0)
    }

    .main-timeline3 .timeline,
    .main-timeline3 .timeline:nth-child(even),
    .main-timeline3 .timeline:nth-child(odd) {
        width: 100%;
        float: none;
        text-align: left;
        padding: 0 0 0 60px;
        margin: 0 0 30px
    }

    .main-timeline3 .timeline:before,
    .main-timeline3 .timeline:nth-child(2n):before {
        width: 20px;
        height: 20px;
        border: 3px solid #fff;
        top: 38px;
        left: 6px
    }

    .main-timeline3 .timeline:nth-child(2n) .year {
        right: auto;
        left: -20px;
        border-radius: 10px 10px 10px 0
    }

    .main-timeline3 .timeline:nth-child(2n) .year:before {
        border-left: 20px solid transparent;
        border-bottom: 20px solid transparent;
        border-right: none;
        right: auto;
        left: 0
    }
}
/* Quality Policy Inner */
.qp-inner-wrapper{
    position: relative;
    background-color: var(--color-white);
    padding: 30px;
    box-shadow: rgba(46, 12, 125, 0.27) 0px 0px 0.25em,
             rgba(46, 12, 125, 0.15) 0px 0.15em 0.5em,
             rgba(46, 12, 125, 0.08) 0px 0.3em 1em;
}
.qp-logo-inner {
    position: absolute;
    left: 37%;
    top: 35%;
    height: 200px;
    width: auto;
    z-index: 0;
    opacity: 0.2;
}
.qp-inner-content{
    margin-top: 25px;
}
h6.tp-hl-text {
    font-size: 19px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 25px;
}
.checked-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 18px;
    font-size: 18px;
    list-style: none;
}
.checked-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 25px;
  height: 25px;
  background: url('../img/icons/shield-check.png') no-repeat center;
  background-size: contain;
}
.qp-heading-wrap{
    column-gap: 20px;
}
.iso-logo-wrap {
    position: relative;
    top: -8px;
}
.iso-logo{
    max-width: 75px;
    height: auto;
}

.bullet-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 18px;
    font-size: 18px;
    list-style: none;
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 30px;
  height: 30px;
  background: url('../img/icons/chevron-right.png') no-repeat center;
  background-size: contain;
}
.bullet-list.large-data {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bullet-list.large-data li {
  flex: 0 0 calc(50% - 10px); 
  box-sizing: border-box;
}
.certi-card{
    height: fit-content;
    padding: 15px;
    box-shadow: 0 0 10px 2px rgba(40, 43, 123, 0.35);
    margin-bottom: 45px;
}
.certi-img-wrap{
    height: fit-content;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.certi-img-wrap img{
    height: 600px;
    width: 100%;
    object-fit: cover;
}
.certi-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(46, 12, 125, 0.8), rgba(40, 43, 123, 0.8));
  transform: translateY(-100%);
  transition: transform 0.6s ease;
  z-index: 1;
  pointer-events: none;
}
.certi-img-wrap.award img{
    object-fit: contain !important;
}
.certi-view {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  height: 65px;
  width: 65px;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px dashed #fff;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s ease 0.2s;
  z-index: 2;
}
.certi-view::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transform: scale(1);
  opacity: 0;
  z-index: -1;
  animation: dottedPulse 1.8s ease-out infinite;
}
.certi-view i{
   color: #fff;
  font-size: 26px;
}
@keyframes dottedPulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  70% {
    transform: scale(2.3); 
    opacity: 0;
  }
  100% {
    transform: scale(2.3);
    opacity: 0;
  }
}
.certi-card:hover .certi-img-wrap::before {
  transform: translateY(0);
}
.certi-card:hover .certi-view {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.fancybox__container{
    z-index: 105000 !important;
}
.text-banner-section{
    position: relative;
    background-image: url('../img/bg/text-banner-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10px 0;
    width: 100%;
}
.banner-text{
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 45px;
    font-weight: 600;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 0;
}
.collab-wid-wrap {
    background: #fff;
    padding: 10px;
   box-shadow: 0 0 16px rgba(40, 43, 123, 0.2);
    border-radius: 5px;
}
.collab-wid-wrap img{
    border-radius: 5px;
}
.popup-wrap {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.popup-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2E0C7D;
  opacity: 0;
  filter: blur(10px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
  pointer-events: none;
}
.popup-ico-wrap {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 2;
  background-color: var(--primary-color);
  height: 65px;
  width: 65px;
  border: 3px solid var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.popup-ico-wrap i{
  color: #fff;
  font-size: 25px;
}
.popup-wrap:hover::before {
  opacity: 0.6;
  filter: blur(15px);
}
.popup-wrap:hover .popup-ico-wrap {
  top: 50%;
  opacity: 1;
}
/* Gallery */
.gallery-card {
    position: relative;
    background-color: var(--color-white);
    cursor: pointer;
    margin-bottom: 25px;
    box-shadow: rgba(59, 52, 153, 0.2) 0px 2px 8px 0px;
}
.gallery-card::before { content: ""; position: absolute; inset: 0; padding: 4px; background: repeating-linear-gradient( 90deg, rgba(46, 12, 125, 0.9) 0%, rgba(40, 43, 123, 0.9) 20%, transparent 40%, rgba(46, 12, 125, 0.9) 60%, rgba(40, 43, 123, 0.9) 80%, transparent 100% ); background-size: 300% 100%; animation: borderMove 4s linear infinite; -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; } @keyframes borderMove { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }
.gallery-card .overlay-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    max-height: 380px;
    display: block;
}
.gallery-card img {
    padding: 15px;
    height: 380px;
    width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    display: block;
    z-index: 2;
    position: relative;
}
.gallery-card .overlay-wrap::before,
.gallery-card .overlay-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 3;
  transition: transform 0.5s ease;
  pointer-events: none;
}
.gallery-card .overlay-wrap::before {
  left: 0;
 background-color: rgb(46 12 125 / 62%);
  transform: translateX(-100%);
}
.gallery-card .overlay-wrap::after {
  right: 0;
 background-color: rgb(40 43 123 / 66%);
  transform: translateX(100%);
}
.gallery-card:hover .overlay-wrap::before {
  transform: translateX(0);
}
.gallery-card:hover .overlay-wrap::after {
  transform: translateX(0);
}
.gallery-card .ico-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 60px;
  width: 60px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 4;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  transition: transform 0.4s ease 0.2s, opacity 0.4s ease 0.2s;
  pointer-events: none;
}
.gallery-card:hover .ico-wrap {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.gallery-card .ico-wrap i {
  font-size: 25px;
  color: var(--primary-color);
}
.gall-info{
    padding: 15px 10px;
    background:linear-gradient(to right, var(--secondary-color), var(--primary-color));
    text-align: center;
}
.gall-info h4 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--color-white);
}
.fw-b{
    font-weight: 600 !important;
}
.ce-certified {
    position: relative;
    top: -8px;
    height: 75px;
    width: auto;
}
.cmfac-card {
    border: none !important;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important;
    padding: 0;
    border-radius: 10px !important;
    margin-bottom: 25px;
}
.cmfac-card .cmfac-header {
    padding: 17px;
    padding-left: 25px;
    border-bottom: 1px solid #e1e1f7;
}
.cmfac-card .cmfac-header .card-heading {
    position: relative;
    font-size: 18px;
    line-height: 28px;
    padding-left: 15px; 
    font-weight: 600;
    color: var(--heading-color);
}
.cmfac-card .cmfac-header .card-heading::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 110%;
    width: 5px;
    background-color: var(--primary-color);
}
.cmfac-card .card-body {
    padding: 25px !important;
}
.cmfac-wid-wrap {
    position: relative;
    overflow: hidden;
    padding: 25px;
   box-shadow: 
  rgba(46, 12, 125, 0.4) 0px 0px 0px 2px, 
  rgba(46, 12, 125, 0.65) 0px 4px 6px -1px, 
  rgba(46, 12, 125, 0.2) 0px 1px 0px inset;
}
.cmfac-wid-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background-color: rgba(46, 12, 125, 0.6);
    z-index: 1;
    transition: height 0.4s ease;
    pointer-events: none;
}
.cmfac-wid-wrap:hover::before {
    height: 100%;
}
.cmfac-wid-wrap img {
    height: 350px;
    width: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.cmfac-wid-wrap:hover img {
    transform: scale(1.1);
}
.view-icon-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 55px;
    height: 55px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, 30px) scale(0.8);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
    color: white;
    font-size: 24px;
    outline: 3px dashed var(--color-white);
    outline-offset: 6px;
}
.cmfac-wid-wrap:hover .view-icon-wrap {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
.view-icon-wrap i {
    font-size: 25px;
    color: var(--primary-color);
}
.SYS-expt-card{
    position: relative;
}
.SYS-expt-header{
    background: #3B3499;
    padding: 7px 10px;
}
.SYS-expt-head {
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    padding: 5px 18px;
    color: var(--color-white);
    margin-bottom: 0;
    text-align: start;
}
.SYS-expt-card-body{
    padding: 25px;
    background-color: #ECECEC;
    border-bottom: 4px solid var(--primary-color);
}
.fukuda-text-head{
    font-size: 75px;
    line-height: 88px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0 !important;
    background: url('../img/bg/text-mask.jpg') left/cover no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fukuda-intro{
    margin-top: 40px;
}
.app-card{
    border: none !important;
    border-radius: 5px;
    margin-bottom: 25px;
}
.app-img-wrap{
    position: relative;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}
.app-img-wrap::before {
    background: rgba(46, 12, 125, 0.6);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    transition: all 500ms linear;
    z-index: 9999;
}
.app-card:hover .app-img-wrap::before {
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 500ms linear;
}
.app-card img {
    height: 280px;
    object-fit: cover;
    transition:all 0.8s ease-in-out;
}
.app-card:hover img{
    transform: scale(1.05);
    transition: transform 0.8s ease-in-out;
}
.app-card-info{
    background: linear-gradient(to right, #000000, var(--primary-color));;
    padding: 20px 10px;
   box-shadow: 0 5px 30px 0 rgba(46, 12, 125, 0.57);
}
.app-card-info .app-card-heading{
    font-size: 22px;
    font-weight: 600;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 0;
}
/* Clients */
.client-card {
    position: relative;
    text-align: center;
    padding: 15px;
    box-shadow: 0 8px 24px rgba(40, 43, 123, 0.2), 0 4px 10px rgba(40, 43, 123, 0.15);
    border-radius: 1px;
    transform: skew(-15deg);
    overflow: hidden;
    border: 2px solid #3b3b8d80;
    outline: 1px solid #3f258d;
    outline-offset: 5px;
    margin-bottom: 30px;
}
.client-logo-wrap {
    transform: skew(15deg);
    text-align: center;
}
.client-card .client-img {
    display: block;
    height: 72px;
    min-height: 72px;
    max-height: 72px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
}
/* Modal */
/* Center the modal perfectly */
.modal{
    z-index: 105555 !important;
}
.modal-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.modal.fade.show .modal-dialog {
  animation: modalZoomIn 0.3s ease forwards;
}
.modal.fade .modal-dialog {
  animation: modalZoomOut 0.25s ease forwards;
}
@keyframes modalZoomIn {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes modalZoomOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.7);
    opacity: 0;
  }
}
.modal-content{
    border: none !important;
    border-radius: 4px !important;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important;
}
.btn-close {
    --bs-btn-close-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='red' stroke-width='4' fill='none'%3E%3Cpath d='M2 2 L14 14 M14 2 L2 14'/%3E%3C/svg%3E") !important;
}
.btn-close{
   border: 3px solid red !important;
   border-radius: 50% !important;
}
#DownloadModal .modal-title{
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
}
.welmodal-wrap{
    padding: 10px;
}
.welmodal-wrap .form-group{
    margin-bottom: 25px;
}
.welmodal-wrap .form-control{
    height: 50px;
   border-radius: 4px !important;
}
.welmodal-wrap .form-control::placeholder{
    font-weight: 500;
    color: var(--color-dark) !important;
}
.welmodal-wrap .form-control:focus{
    box-shadow: none !important;
    border-color: var(--primary-color);
}
.welmodal-action-wrap{
    margin-top: 10px;
}
.welmodal-action-wrap .site-btn i, form-action-wrap i{
    font-size: 17px;
}
/* Our Facilities */
.facility-wrap{
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: rgba(40, 43, 123, 0.25) 0px 7px 29px 0px;
}
.facility-header {
    border-radius: 10px 10px 0 0;
    position: relative;
    background-image: url('../img/bg/text-banner-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 25px 0;
    width: 100%;
}
.facility-heading {
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 55px;
    font-weight: 600;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 0;
}
.facility-item{
    margin-bottom: 30px;
}
.facility-body{
    padding: 30px;
}
.facility-item,.facility-img-wrap, .facility-img-wrap figure{
    border-radius: 10px;
}
.facility-img-wrap img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.4s ease-in-out;
}
.facility-item:hover .facility-img-wrap figure img {
    transform: scale(1.1);
}
.facility-item .facility-info{
    margin-top: 25px;
}
.facility-item .facility-info h3{
    color: var(--heading-color);
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}
.sec-two-wrap{
    margin-top: 38px;
}
.inner-md-heading {
    position: relative;
    font-size: 26px;
    line-height: 38px;
    padding-left: 22px;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 17px;
}
.inner-md-heading::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 10px;
    background-color: var(--primary-color);
    border-radius: 3px;
}
.calib-widget-wrap, calib-widget-wrap figure, .calib-widget-wrap figure img{
    border-radius: 10px;
}
.SyScN-table-wrapper{
    margin-bottom: 15px;
}
.SyScN-table-wrapper .thead,tbody, th,td{
    border: 2px solid var(--primary-color) !important;
}
.thead-row th {
    background: linear-gradient(90deg, #2E0C7D 0%, #282B7B 100%);
    color: var(--color-white) !important;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
}
.SyScN-table-wrapper td{
    min-width: 40% !important;
}
.hightligted-li{
    font-weight: 500;
}
.careers-form-wrap{
    background: var(--color-white);
    padding:45px 35px;
    border-radius: 25px;
    box-shadow: rgba(46, 12, 125, 0.35) 0px 5px 15px;
}
.careers-form-wrap .form-group{
    margin-bottom: 25px;
}
.careers-form-wrap .form-control{
    color: var(--color-dark) !important;
    font-weight: 500 !important;
    border-radius: 4px !important;
}
.careers-form-wrap .form-control::placeholder{
    color: #080816 !important;
    font-weight: 500 !important;
}
.careers-form-wrap .form-control:focus{
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 .25rem rgb(63 37 141 / 14%) !important;
}
.careers-form-wrap .form-control.ff{
    height: 55px;
}
.careers-form-wrap .choose_file::file-selector-button, .careers-form-wrap .choose_file::file-selector-button:hover {
  padding: 10px 20px; 
  height: 55px; 
  background-color: var(--primary-color) !important;
  color: var(--color-white) !important;
}
.lab-SysC-tab-wrap{
    margin-top: 35px;
}
.lab-SysC-nav .nav-link{
    color: var(--primary-color);
    font-size: 17px;
    font-weight: 500;
    border: 2px solid var(--secondary-color);
    border-radius: 30px !important;
    padding: 12px 24px !important;
}
.lab-SysC-nav .nav-link.active{
    background-color: var(--primary-color) !important;
    color: var(--color-white) !important;
}
.lab-SysC-tab{
    padding: 30px;
    background: var(--color-white);
    box-shadow: 
  rgba(46, 12, 125, 0.27) 0px 0px 0.25em, 
  rgba(70, 40, 160, 0.1) 0px 0.15em 0.5em, 
  rgba(120, 80, 200, 0.06) 0px 0.3em 1em;
  border-radius: 20px;
}
.SyScN-table-heading{
    position: relative;
    display: inline-block;
    font-size: 26px;
    color: var(--heading-color);
    text-align: center;
    font-weight: 600;
    margin-bottom: 16px;
}
.SyScN-table-heading::before, .SyScN-table-heading::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: translateY(-50%);
    border-radius: 2px;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}
.SyScN-table-heading::before {
    left: -60px;
}
.SyScN-table-heading::after {
    right: -60px;
}
.main-head.cus-bg {
    font-weight: 600 !important;
    font-size: 18px !important;
    text-align: center !important;
    color: var(--primary-color) !important;
    background: #d7d8e5 !important;
}
.heading-td{
    color: var(--primary-color) !important;
    font-weight: 500;
    font-size: 19px;
}
.SyScNtb-card-wrapper{
    margin-top: 30px;
}
.SyScNtb-col{
    margin-bottom: 25px !important;
}
.SyScNtb-card{
    height: 100% !important;
    padding: 25px;
    border-radius: 7px;
   box-shadow: rgba(46, 12, 125, 0.2) 0px 8px 24px;
}
.SyScNtb-head{
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 600;
    margin: 15px 0;
}
.live-shake {
  display: inline-block;
  transition: transform 0.3s ease;
}
.live-shake:hover {
  animation: aliveShake 0.8s infinite ease-in-out;
}
@keyframes aliveShake {
  0% { transform: rotate(0deg) scale(1); }
  10% { transform: rotate(1deg) scale(1.02); }
  20% { transform: rotate(-1deg) scale(1.03); }
  30% { transform: rotate(1.5deg) scale(1.01); }
  40% { transform: rotate(-1.5deg) scale(1.02); }
  50% { transform: rotate(1deg) scale(1.03); }
  60% { transform: rotate(-1deg) scale(1.01); }
  70% { transform: rotate(1.2deg) scale(1.02); }
  80% { transform: rotate(-1.2deg) scale(1.03); }
  100% { transform: rotate(0deg) scale(1); }
}
.tilt-wrap {
  perspective: 1000px;
  display: inline-block;
  transform-style: preserve-3d;
}
.tilt-wrap img {
  transition: transform 0.2s ease;
  will-change: transform;
}
.BmSysc-team-item{
    background-color: var(--color-white);
    box-shadow: 0px 4px 30px 0px #2E0C7D1A;
    border: 1px solid #f5f5f5;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(46, 12, 125, 0.25), 0 4px 12px rgba(46, 12, 125, 0.15);
    margin-bottom: 45px;
}
.BmSysc-timg-block img{
    height: 290px;
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
}
.BmSysc-team-detail {
    margin-top: 20px;
}
.BmSysc-team-item .team-name {
    font-size: 25px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}
.BmSysc-team-item .team-position {
    color: var(--color-dark);
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
}
.BmSysc-team-item .team-designation {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
}

/* Language Switcher */
.lang-select-wrap {
  position: relative;
  display: inline-block;
}
.dropdown-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    padding: 13px 15px 13px 12px;
    border-radius: 6px;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}
.dropdown-btn i {
    margin-left: 4px;
    font-size: 11px;
    position: relative;
    right: 0;
    top: -2px;
}
.flag-icon {
  width: 20px;
  height: 14px;
  border-radius: 2px;
}
.translate-wrapper .dropdown {
  position: relative;
}
.dropdown-content {
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  position: absolute;
  top: 47px;
  left: -8px;
  background-color: #d2d2d8;
  min-width: 140px;
  border-radius: 6px;
  overflow: hidden;
  z-index: 999;
  transition: all 0.3s ease;
}
.translate-wrapper .dropdown:hover .dropdown-content,
.translate-wrapper .dropdown:active .dropdown-content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.dropdown-content a {
  color: var(--primary-color);
  padding: 8px 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
}

.dropdown-content a:hover {
  background-color: var(--primary-color);
  color: var(--color-white) !important;
}


/* Hide Google branding */
.goog-te-banner-frame.skiptranslate,
#goog-gt-tt, .goog-te-balloon-frame,
.goog-logo-link, .goog-te-gadget {
  display: none !important;
}

.translated-ltr body, html[lang="auto"] body{
  top: 0 !important;
}
.translated-ltr iframe, .skiptranslate{
  display: none !important;
  visibility:hidden !important;
}
.fify-timg {
    max-width: 65px;
    height: auto;
    position: absolute;
    bottom: 10px;
    right: 20px;
    filter: drop-shadow(3px 3px 8px rgba(61, 0, 119, 0.6));
}


