html {
    scroll-behavior: smooth;
}

* {
    margin: 0px;
    padding: 0px;
}

@font-face {
    font-family: 'Anton SC';
    src: url('../fonts/AntonSC-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Rollgates Luxury";
    src: url("../fonts/Rollgates\ Luxury.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

.floating-social-bar {
    position: fixed;
    top: 20%;
    left: 7px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.floating-social-bar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.floating-social-bar ul li {
    margin-bottom: 20px;
}

.floating-social-bar ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.floating-social-bar ul li a img {
    width: 20px;
    height: 20px;
}

.floating-social-bar ul::after {
    content: "";
    display: block;
    width: 1px;
    height: 77px;
    background: #D9D9D9;
    margin: 5px auto 0;
}

.floating-social-bar .follow-text {
    margin-top: 10px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 16px;
    font-weight: 500;
    color: #595959;
    padding-left: 5px;
    font-family: 'Poppins', sans-serif;
}

/* navbar */
.toggle-button {
    border: none !important;
    color: #1C274C !important;
}

.nav-bg {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 60%, rgba(230, 244, 251, 0.5) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.3s ease;
    height: 84px;
}

.navbar-nav {
    gap: 8px;
}

.nav-link {
    color: #001E61 !important;
    font-family: "Poppins", sans-serif;
    font-size: 14px !important;
    font-weight: 400 !important;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
}

.nav-link.active {
    color: #2BCBF2 !important;
    font-family: "Work Sans", sans-serif !important;
}

.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 8px;
    bottom: 0;
    width: 28px;
    height: 3px;
    background: #2BCBF2;
    border-radius: 2px;
}
.nav-item{
    cursor: pointer;
}
.nav-item.dropdown .dropdown-menu {
    opacity: 0; 
    visibility: hidden;
    transition: all 0.3s ease;
    /* display: block !important; */
}

/* show dropdowns on hover (desktop) or when Bootstrap adds .show (mobile/click) */
.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown.show > .dropdown-menu,
.nav-item.dropdown .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
}

.nav-item.dropdown {
    position: relative;
}

.navbar-nav li.dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
}

.mega-dropdown {
    width: 910px;
    height: auto;
    border-radius: 0px 0px 20px 20px !important;
    border: none !important;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 50% !important;
    transform: translateX(-50%) translateY(30px);
    z-index: 1000;
    transition: all 0.5s ease-in-out;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
}
.nav-item.dropdown:hover .mega-dropdown,
.nav-item.dropdown.show > .mega-dropdown,
.mega-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
/* Mobile: make mega-dropdown flow inline within collapsed navbar */
@media (max-width: 991.98px) {
    .mega-dropdown {
        position: static !important;
        width: 100% !important;
        transform: none !important;
        left: auto !important;
        border-radius: 10px !important;
        max-height: 65vh;
        overflow-y: auto;
    }
    .nav-item.dropdown.show > .mega-dropdown {
        transform: none !important;
    }
}

@media (max-width:425px){
    .nav-item.dropdown:hover .mega-dropdown,
    .nav-item.dropdown.show > .mega-dropdown,
    .mega-dropdown.show {
        transform: none !important;
    }
}
.dropdown-menu.mega-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.submenu-item {
    position: relative;
}

.submenu-item a {
    color: rgba(7, 5, 5, 0.35) !important;
    display: block;
}

.submenu-item a:hover {
    color: #001E61 !important;
}

.submenu-item:hover::after {
    content: "";
    position: absolute;
    top: 45%;
    right: 10px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-image: url('../images/arrow.gif');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.submenu-item.menu-item-has-children:hover::after {
    top: 12%;
}

/* Nested submenu items */
.nav-service-list ul.submenu {
    padding-left: 5px;
    margin-top: 5px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transition: transform 0.8s ease;
    
}

.nav-service-list li.menu-item-has-children:hover>ul.submenu {
    opacity: 1;
    max-height: 500px;
    visibility: visible;
    transition: transform 0.8s ease;

}

.nav-service-list li.menu-item-has-children>a {
    position: relative;
    padding-right: 20px;
}

.nav-service-list li.menu-item-has-children>a::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 30%;
    font-size: 16px;
    transition: transform 0.8s ease;
    width: 7px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='12' viewBox='0 0 7 12' fill='none'%3E%3Cpath d='M6.43725 5.3855L1.72058 0.677163C1.64311 0.599056 1.55095 0.537061 1.4494 0.494753C1.34785 0.452446 1.23893 0.430664 1.12892 0.430664C1.01891 0.430664 0.909984 0.452446 0.808435 0.494753C0.706886 0.537061 0.614718 0.599056 0.537249 0.677163C0.38204 0.833298 0.294922 1.04451 0.294922 1.26466C0.294922 1.48482 0.38204 1.69603 0.537249 1.85216L4.66225 6.01883L0.537249 10.1438C0.38204 10.3 0.294922 10.5112 0.294922 10.7313C0.294922 10.9515 0.38204 11.1627 0.537249 11.3188C0.614428 11.3976 0.706465 11.4602 0.808028 11.5031C0.909591 11.546 1.01866 11.5684 1.12892 11.5688C1.23917 11.5684 1.34824 11.546 1.4498 11.5031C1.55137 11.4602 1.6434 11.3976 1.72058 11.3188L6.43725 6.6105C6.52184 6.53246 6.58934 6.43775 6.63552 6.33233C6.68169 6.22692 6.70553 6.11308 6.70553 5.998C6.70553 5.88291 6.68169 5.76907 6.63552 5.66366C6.58934 5.55824 6.52184 5.46353 6.43725 5.3855Z' fill='%23A8A8A8'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
}

.nav-service-list li.menu-item-has-children:hover>a::before {
    transform: translateY(-50%) rotate(90deg);
    top: 50%;
    transition: transform 0.8s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='12' viewBox='0 0 7 12' fill='none'%3E%3Cpath d='M6.43725 5.3855L1.72058 0.677163C1.64311 0.599056 1.55095 0.537061 1.4494 0.494753C1.34785 0.452446 1.23893 0.430664 1.12892 0.430664C1.01891 0.430664 0.909984 0.452446 0.808435 0.494753C0.706886 0.537061 0.614718 0.599056 0.537249 0.677163C0.38204 0.833298 0.294922 1.04451 0.294922 1.26466C0.294922 1.48482 0.38204 1.69603 0.537249 1.85216L4.66225 6.01883L0.537249 10.1438C0.38204 10.3 0.294922 10.5112 0.294922 10.7313C0.294922 10.9515 0.38204 11.1627 0.537249 11.3188C0.614428 11.3976 0.706465 11.4602 0.808028 11.5031C0.909591 11.546 1.01866 11.5684 1.12892 11.5688C1.23917 11.5684 1.34824 11.546 1.4498 11.5031C1.55137 11.4602 1.6434 11.3976 1.72058 11.3188L6.43725 6.6105C6.52184 6.53246 6.58934 6.43775 6.63552 6.33233C6.68169 6.22692 6.70553 6.11308 6.70553 5.998C6.70553 5.88291 6.68169 5.76907 6.63552 5.66366C6.58934 5.55824 6.52184 5.46353 6.43725 5.3855Z' fill='%235C5C77'/%3E%3C/svg%3E");
}
/* Smooth animation for ul.submenu */
.nav-service-list ul.submenu {
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-service-list li.menu-item-has-children:hover > ul.submenu {
    opacity: 1;
    max-height: 500px;
    visibility: visible;
    transform: translateY(0);
}
/*  */
.dropdown-toggle::after {
    display: none !important;
}

.service-card {
    border-radius: 20px;
    border: 1px solid #f3f3f3;
    padding: 15px 15px 0px 15px !important;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    height: auto;
    overflow: hidden;
    position: relative;
}

.service-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.nav-image-stack {
    position: relative;
    aspect-ratio: 4 / 3;
}

.nav-image-stack img {
    position: absolute;
    top: 30px;
    left: -7px;
    height: auto;
    transition: transform 0.6s ease-in-out;
}

.nav-image-stack .img-left {
    left: -90px;
    top: 67px
}

.service-card:hover .img-left {
    transform: scale(1.10) translateX(-3%) rotate(-2deg);
}

.service-card:hover .img-right {
    transform: scale(1.10) translateX(3%) rotate(2deg);
}

.nav-service-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.nav-service-list li {
    justify-content: space-between;
}

.nav-service-list li a {
    text-decoration: none;
    color: #b1a6a6;
}

.nav-arrow {
    display: none;
}

.nav-service-list li:hover .nav-arrow {
    display: block;
}

/* banner */
.banner-slide {
    position: relative;
    overflow: hidden;
    height: 95vh !important;
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid #3DCCEE !important;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: translateX(0);
    animation: imagePanRight 10s linear forwards;
}

/* Reset animation for non-visible slides */
.banner-slide:not(.slick-active) .slide-bg {
    animation: none;
}

.content-layer {
    position: relative;
    z-index: 2;
}

.heading-wrapper {
    overflow: hidden;
    height: 10em;
    position: relative;
}

.slide-heading {
    display: inline-block;
    position: relative;
    transform: translateY(100%);
    animation: slideUpLoop 8S linear infinite;
    animation-delay: 0.5s;
}

/* Keyframes for continuous slide-up effect */
@keyframes slideUpLoop {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    20% {
        transform: translateY(0);
        opacity: 1;
    }

    80% {
        transform: translateY(0);
        opacity: 1;
    }

    90% {
        opacity: 0;
    }

    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}



.main-heading-container {
    align-items: center;
    height: 100vh;
}

.main-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 20px;
}

.main-heading h4 {
    color: var(--dark, #24243F);
    /* font-size: 57px; */
    font-size: 48px;
    font-weight: 600;
    line-height: 140%;
}

.main-heading span {
    background: linear-gradient(0deg, #2BCBF2 0%, #2BCBF2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 57px;
    font-weight: 600;
}

.main-heading p {
    color: var(--dark, #24243F);
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    width: 488px;
    line-height: 24px
}

.main-heading a {
    display: flex;
    align-items: center;
    color: #FFF;
    font-family: "Work Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    border-radius: 250px;
    background: linear-gradient(90deg, #42C4DC 0%, #42C4DC 100%);
    width: 345px;
    text-decoration: none;
    justify-content: space-around;
    padding: 8px 12px 8px 30px;
    text-transform: uppercase;
}

.main-heading a img {
    height: 50px;
    width: 50px;
    margin-left: auto;
}

.slick-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    justify-content: center;
    z-index: 10;
    list-style: none;
    padding: 0;
    margin: 0;
}

.slick-dots li button {
    font-size: 0;
    width: 12px;
    height: 12px;
    background-color: #009ABF;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slick-dots li.slick-active button {
    background-color: #009ABF !important;
}

.slick-dots {
    background-color: #F4F1E9B2;
    width: auto !important;
    border-radius: 100px;
    padding: 3px;
}

.slick-dots li button:before {
    color: #009ABF !important;
}

.arrow-bottom-right i {
    position: absolute;
    bottom: 40%;
    right: 60px;
    padding: 20px;
    z-index: 999;
    font-size: 24px;
    color: #000;
    background-color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.arrow-bottom-right {
    background-image: url('../images/arrowgif.gif');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 200px;
    height: 100px;
    position: absolute;
    bottom: -4%;
    right: 90px;
}

.slide {
    position: relative;
}

.mobile-slide-inner a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #42C4DC;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 250px;
    width: 90%;
    max-width: 300px;
    text-transform: uppercase;
}

/* About us */
.aboutUs {
    background-image: url(../images/vectorimg.png);
    background-repeat: no-repeat;
}

.img-div {
    padding-bottom: 50px;
}

.hover-container {
    position: relative;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.hover-container img {
    transition: 0.3s ease-in-out;
}

.hover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    height: 100%;
    background: rgba(12, 50, 100, 0.8);
    border-radius: 12px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.hover-container:hover .hover-overlay {
    opacity: 1;
    z-index: 1000;
}

.about-us-text {
    padding-left: 50px !important;
}

.aboutus-description {
    color: #FFF;
    font-family: "Josefin Sans", sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: normal;
}

.aboutus-content {
    color: var(--Primary-Main, #EBEBEB);
    text-align: center;
    font-family: "Jost", sans-serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 125%;
}

/*  */
.findus-bgimg {
    background-image: url(../images/scnshot.png);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 131px;
    position: relative;
}

.aboutUs-slide-text {
    width: 100%;
    position: absolute;
    top: 50%;
    right: -100%;
    transform: translateY(-50%);
    color: transparent;
    animation: slideIn 5s forwards;
    /* -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #42C4DC;
    font-family: "Work Sans", sans-serif;
    font-size: 128px;
    font-weight: 600;
    line-height: 42px; 
    text-transform: uppercase; */
}

@keyframes slideIn {
    to {
        right: 0%;
    }
}

.findus-para p {
    color: #2E2E75;
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    padding-right: 100px;
}

.findus-para hr {
    width: 220px;
    height: 2px;
    background: var(--dark, #24243F);
}

.findus-link img {
    width: 28px;
    height: 28px;
    aspect-ratio: 1/1;
}

.findus-link h5 {
    color: var(--Dark, #24243F);
    font-family: "Work Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    /* 25.2px */
    letter-spacing: -0.36px;
    padding: 0px 60px 0px 0px;
}

.onsiteworkers-heading {
    padding: 57px;
}

/* services */
.services {
    padding: 50px 40px 0px 40px;
    /* overflow: hidden; */
}

/* .services-heading h1{
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #42C4DC;
    font-family: "Work Sans", sans-serif;
    font-size: 128px;
    font-weight: 600;
    line-height: 42px;
    text-transform: uppercase;
} */
.sevices-text p {
    color: #2E2E75;
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    /* width: 583px; */
    max-width: 100%;
}

.services-card {
    border: 1px solid #f3f3f3;
}

.services-container {
    position: relative;
    padding-right: 18px !important;
    margin-top:30px !important;
}

.services-box {
    opacity: 1  ;
    transform: none;
    transition: opacity 0.6s ease, transform 0.8s ease, margin-top 0.8s ease;
    margin-top: -120px;
    position: relative;
    z-index: 1;
    will-change: transform, opacity,margin-top;
}
.services-box:nth-child(1) {
  transform: rotateZ(20deg);
}
.services-box:nth-child(2) {
    margin-top: -245px; 
    transform: rotateZ(15deg);
}
.services-box:nth-child(3) {
    margin-top: -250px; 
    transform: rotateZ(10deg);
}
.services-box:nth-child(4) {
    margin-top: -280px; 
    transform: rotateZ(3deg);
}

.services-description {
    background-color: #EFF7FF;
    border-radius: 30px 0px 0px 30px;
    display: flex;
    flex-direction: column;
    padding: 30px 30px 80px 32px !important;
    height: 100%;
    min-height: 245px;
}

.services-description p {
    color: #575757;
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    min-height: 80px;
}

.services-fixed-bg {
    background-image: url(../images/services-fixed-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0px 30px 30px 0px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-main-image {
    max-width: 100%;
    height: auto;
}

.image-stack {
    position: relative;
}

.image-stack .img-right {
    position: absolute;
    bottom: 0;
    /* left: 210px; */
    right: 0px;
}

.image-stack .img-left {
    position: absolute;
    bottom: 0px;
    left: 30%;
}

/* sectors */
.sector-heading {
    padding: 0px 47px;
    overflow: hidden;
}

.sectors-bg {
    margin: -45px 0px 10px;
    padding-top: 50px;
    padding-bottom: 50px;
    background: url('../images/BG.png') no-repeat;
    background-size: cover;
    height: 500px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.sector-slider {
    position: relative;
    z-index: 1;
}

.sectors-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.sector-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.sectors-layout h1 {
    position: relative;
    z-index: 2;
    font-family: "Anton SC", sans-serif;
    font-size: 200px;
    color: #0A4C69;
    -webkit-text-stroke-width: 5px;
    -webkit-text-stroke-color: #FFF;
    background: inherit;
    background-clip: text;
    -webkit-background-clip: text;
    transform: translateY(200px);
    transition: all 4s ease;
    text-align: center;
}

.sectors-layout.animate h1 {
    opacity: 1;
    transform: translateY(0);
    transition: all 3s ease;
}

.sector-image-wrapper {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: visible;
    margin-top: -240px;
    z-index: 1;
}
.sector-image-wrapper h1{
    margin-top:-245px
}
.sector-image-wrapper img {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
}

/* Animate only when active */
.sectors-layout.animate .sector-image-wrapper img {
    animation: slideImage 9s linear infinite;
}

@keyframes slideImage {
    0% {
        left: 100%;
        transform: translateY(-50%);
    }

    50% {
        left: 40%;
        transform: translate(-50%, -50%);
    }

    75% {
        left: 30%;
    }

    90% {
        right: 90%;
    }

    100% {
        left: -80%;
    }
}


.sectors-client {
    display: flex;
    height: 100%;
    gap: 40px;
}

.sectors-client-review {
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 30px;
    border-radius: 20px;
    overflow: hidden;
}

.sectors-client-review .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.sectors-client-review .sectors-details-wrapper {
    position: relative;
    z-index: 1;
}

.sectors-details-wrapper {
    position: relative;
    width: fit-content;
    max-width: 350px;
}

.sectors-details {
    background: url('../images/Vector 52.png') no-repeat;
    border-radius: 12px;
    color: #fff;
    width: 100%;
    height: 100%;
    padding: 20px;
    /* text-align: center; */
    padding-left: 60px;
}

.sectors-user-profile {
    display: flex;
    align-items: center;
}

.sectors-user-profile img {
    width: 29px;
    height: 29px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -15px;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sectors-user-profile img:first-child {
    margin-left: -40px;
}

.sectors-details h4 {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    max-width: 200px;
    padding: 12px 15px;
    margin: 0;
}

.sectors-review {
    align-content: center;
    width: 50%;
}

.sectors-review h3 {
    color: #FFF;
    font-family: "Work Sans", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 42px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.sectors-review p {
    color: #FFF;
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 30px;
}

.sectors-review a {
    border-radius: 23px;
    border: 1px solid #F4F1E9;
    background: #FFF;
    color: #465479;
    text-align: center;
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    padding: 10px 32px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.sector-navigation {
    position: absolute;
    left: 0px;
    top: 70%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: #1A9FC9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Projetcs */
.projects {
    padding: 60px 70px;
}

.projects-text {
    position: relative;
    /* width:50%; */
}

.projects-slide-text {
    position: relative;
    right: -100%;
    transform: translateX(100%);
    animation: slideInFromRight 5s ease-out forwards;
    white-space: nowrap;
}

@keyframes slideInFromRight {
    to {
        transform: translateX(0);
    }
}

.paragraph-line {
    width: 133px;
    height: 2px;
    background-color: #24243F;
    margin-bottom: 12px;
    margin-top: 70px;
}

.projects-text p {
    margin-top: 20px;
    color: #2E2E75;
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 28px;
    width: 280px;
}

.project-feature h4 {
    text-align: left;
    color: #FFF;
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 35px;
    background: url('../images/Vector 51.png') no-repeat;
    border-radius: 12px;
    width: 258.16px;
    padding: 15px 10px;
}

.project-centre {
    color: #000;
    font-family: "Rollgates Luxury", serif;
    font-weight: 400;
    line-height: 65px;
    text-transform: uppercase;
}

.project-navigation img {
    width: 50px;
    height: 50px;
}

.puzzle-wrapper {
    position: relative;
    width: 590px;
    height: 519px;
    margin: 50px auto;
    --piece-radius: 12px;
}

.puzzle-wrapper .piece {
    position: absolute;
    overflow: hidden;
    border-radius: var(--piece-radius);
    transition: all 0.5s ease;
}

.puzzle-wrapper .piece .inner {
    width: 100%;
    height: 100%;
    background-image: var(--img);
    background-repeat: no-repeat;
    background-size: 590px 519px;
    transition: inherit;
}

/* Piece positions and masks */
.puzzle-wrapper .piece1 {
    width: 272px;
    height: 349px;
    bottom: 170px;
    left: 0;
    transform: translate(-10px, -10px);
}

.puzzle-wrapper .piece1 .inner {
    background-position: 0 0;
}

.puzzle-wrapper .piece2 {
    width: 293px;
    height: 337px;
    bottom: 182px;
    left: 271px;
    transform: translate(15px, -80px);
}

.puzzle-wrapper .piece2 .inner {
    background-position: -297px 0;
}

.puzzle-wrapper .piece3 {
    width: 126px;
    height: 125px;
    top: 348px;
    left: 0;
    transform: translate(140px, 10px);
}

.puzzle-wrapper .piece3 .inner {
    background-position: 0 -394px;
    background-size: 590px 565px;
    background-position: 0 -394px;
    width: 100%;
    height: 100%;
}

.puzzle-wrapper .piece4 {
    width: 293px;
    height: 203px;
    bottom: 0;
    left: 271px;
    transform: translate(15px, -40px);
}

.puzzle-wrapper .piece4 .inner {
    background-position: -297px -316px;
}

.puzzle-wrapper .puzzle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 96%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    pointer-events: none;
}

/* Show on hover */
.projects .puzzle-wrapper:hover .puzzle-overlay {
    opacity: 1;
}

/* Text inside the overlay */
.puzzle-text {
    margin: 0;
    color: #fff;
    font-size: 16px;
    text-align: justify;
    opacity: 1;
    pointer-events: none;
}

/* On hover: Animate all to correct position */
.projects .puzzle-wrapper:hover .piece {
    transform: translate(0, 0);
    border-radius: 0;
}

.projects .puzzle-wrapper:hover .piece3 {
    width: 272px;
    height: 200px;
}

/* Features */
.features {
    padding-bottom: 100px;
}

.features-title {
    padding: 0px 47px 60px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
    overflow: hidden;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    border: 2px solid #42C4DC;
    border-radius: 20px;
    width: 328px;
    padding: 30px 20px;
    background: #FFF;
    transition: transform 2.5s ease;
}

/* Rotation setup (initial state) */
.f-card-1 {
    transform: rotate(-10deg);
    transform-origin: right;
}

.f-card-2 {
    transform: rotate(0deg);
}

.f-card-3 {
    transform: rotate(20deg);
    transform-origin: left;
}

.f-card-4 {
    transform: rotate(-18deg);
    transform-origin: center;
}

.f-card-5 {
    transform: rotate(-7deg);
    transform-origin: bottom;
}

.f-card-6 {
    transform: rotate(11deg);
    transform-origin: top left;
}

/* Animate to upright */
.feature-card.animate {
    transform: rotate(0deg) !important;
}

.feature-icon-container {
    width: 54px;
    height: 54px;
    padding: 12px;
    border-radius: 12px;
    background: linear-gradient(90deg, #42C4DC 0%, #42C4DC 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card-title {
    color: #262626;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    padding: 16px;
}

.feature-card-description p {
    color: #575757;
    text-align: center;
    font-family: "Work Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.feature-card {
    position: relative;
    overflow: hidden;
}

.bg-fade {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 0;
}

.feature-card:hover .bg-fade {
    opacity: 1;
}

.feature-card>*:not(.bg-fade) {
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon-container {
    background: #FFF;
}

.main-clients h1 {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #42C4DC;
    font-family: "Work Sans", sans-serif;
    font-size: 128px;
    font-weight: 600;
    line-height: 42px;
    text-transform: uppercase;
    color: transparent;
    text-align: center;
}

.clients-row {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin: 20px 0;
}

.clients-mid {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px 0;
}

.clients-side {
    display: flex;
    gap: 70px;
}

.clients-side.left {
    margin-right: 40px;
}

.clients-side.right {
    margin-left: 40px;
}

/*  */
.client-img-container {
    position: relative;
    display: inline-block;
}

.client-img {
    display: block;
    padding: 20px 3px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    width: 73px;
    height: 80px;

}

.client-img-container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    padding: 0px;
    border: 1px solid rgba(138, 137, 213, 0.5);
    border-radius: 20px;
    transition: transform 2s ease, padding 0.5s ease, border 0.8s ease;
    z-index: -1;
}

.client-img-container.zoom::before {
    transform: scale(1.2);
    border: 1px solid rgba(138, 137, 213, .5);
    padding: 40px;

}

.mobile-client-heading {
    padding: 40px;
}

/* testimonials */
.testimonials {
    padding: 80px 0px 80px 80px;
}

.testimonial-review {
    background: url(../images/review.png) no-repeat center center/cover;
    position: relative;
    padding: 60px 25px;
}

.testimonials-text {
    flex: 0 0 30%;
}

.testimonial-container {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    overflow: hidden;
}

.testimonial-item {
    padding: 20px;
    width: 80%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.testimonial-header {
    display: flex;
    gap: 10px;
    min-height: 30px;
}

.testimonial-slide {
    width: calc(22% - 35px) !important;
    margin-right: 20px;
}

.testimonial-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    color: var(--Colors-Default, #000);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.2px;
}

.testimonial-info .stars {
    color: #FFC120;
    width: 16px;
    height: 16px;
}

.testimonial-header .time {
    margin-left: auto;
    color: #4D4D4D;
    text-align: right;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.2px;
}

.testimonial-item p {
    color: var(--Dark, #24243F);
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 140%;
    margin-top: 10px;
    padding-left: 60px;
    text-align: left;
    min-height: 100px;
}

.next-btn {
    position: absolute;
    top: 80%;
    right: 60%;
    transform: translateY(-50%);
    z-index: 999;
    display: inline-block;
}

.next-btn img {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

/* certifications */
.certifications {
    padding-bottom: 50px;
}

.certificate-text h3 {
    color: var(--Darker, #161E3D);
    font-family: "Work Sans", sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 67px;
    letter-spacing: 5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
}

.certificate-text h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 132.94px;
    height: 1.79px;
    background: var(--dark, #24243F);
}

.certificate-text p {
    color: #2E2E75;
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 28px;
    margin-bottom: 0px;
}

.certified-companys {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 50px;
}
.certified-companys img{
    width: 100px;
    height: 140px;
}

/* blog */
.blog-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    overflow: hidden;
    max-width: 100%;
    padding-left: 50px;
}

.blog-text h3 {
    color: var(--Darker, #161E3D);
    font-family: "Work Sans", sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 67px;
    letter-spacing: 5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
}

.blog-text h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 132.94px;
    height: 1.79px;
    background: var(--dark, #24243F);
}

.blog-text {
    align-content: center;
    max-width: 25% !important;
    margin: 100px;
    flex: 0 0 25%;
}

.blog-items {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.blog-text p {
    color: #2E2E75;
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 28px;
    min-height: 72px;
}

.blog-content {
    padding: 18px;
    text-align: left;
}

.blog-content p {
    min-height: 68px;
    margin-bottom: 0px !important;
}

.blog-item {
    margin: 10px;
    flex: 0 0 40%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.10);

}

.blog-item img {
    border-radius: 10px 10px 0px 0px;
}

.blog-title {
    color: var(--Black, #232233);
    font-family: "Work Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-transform: uppercase;
    min-height: 90px;

}

.blog-description p {
    color: var(--gray-paragraph, #6C6C72);
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 28px;
}

.blog-content .read-more {
    color: #5851EA;
    font-family: "Josefin Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 130%;
    text-decoration-line: underline;
    text-transform: uppercase;
}

.custom-blog-slide {
    width: calc(33% - 13.3333px) !important;
    margin-right: 20px;
}

.custom-blog-slide img {
    width: 100%;
}
#blog-slider button{
        display: none !important;
    }
/*conatct form  */
.contact-form h2 {
    color: var(--Darker, #161E3D);
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 65px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.contact-form button {
    color: var(--White, #FFF);
    font-family: Poppins;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.26px;
    text-transform: uppercase;
    border-radius: 10px;
    background: linear-gradient(90deg, #42C4DC 0%, #42C4DC 100%);
    border: none;
    padding: 8px 100px;
}

.info-lock p {
    color: rgba(0, 0, 0, 0.43);
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

.info-lock img {
    width: 30px;
    height: 30px;
}

/* footer */
.footer {
    background: url('../images/Subtract.png') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 40px 0;
    position: relative;
}

.footer .back-to-top {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #38b6ff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
}

.footer-discription p {
    color: #FBFBFB;
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
    text-transform: uppercase;
}

.footercolumn a {
    color: #E0E0E0;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    display: block;
}

.footercolumn h5 {
    color: #FFF;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
}

.footer-discription .social-icons {
    display: flex;
    gap: 15px;
}

.footer-discription .social-icons a {
    display: flex;
    padding: 12px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 160px;
    border: 2px solid var(--Light, #FBFBFB);
}

.footer-discription .rating {
    display: flex;
    gap: 20px;
    padding: 10px 15px;
}

.footer-discription .rating a {
    text-decoration: none;
    color: #FFF;
    font-family: "Poppins", sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 28px;
    text-transform: uppercase;
}

.privacy-terms {
    display: flex;
    gap: 15px;
    align-items: end;
}

.privacy-terms a {
    text-decoration: none;
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.bottom-footer-img img {
    width: 232px;
    height: 155px;
    flex-shrink: 0;
    align-items: center;
}

.copy-right h6 {
    color: #FFF;
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 42px;
    text-transform: uppercase;
}

.menu-footer-legal-menu-container ul {
    display: flex;
    list-style-type: none;
}

.menu-footer-legal-menu-container ul li {
    position: relative;
    padding: 0 10px;
}

/* Add dot before all items except the first one */
.menu-footer-legal-menu-container ul li:not(:first-child)::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fff;
    font-size: 14px;
    top: 50%;
    transform: translateY(-50%);
}

/* about page */
.puzzle-video {
    /* margin: 90px auto; */
    margin-top: 200px !important;
}

.video-puzzle-wrapper {
    position: relative;
    width: 590px;
    height: 519px;
    margin: 50px auto;
    --piece-radius: 12px;
}

.video-puzzle-wrapper .piece {
    position: absolute;
    overflow: hidden;
    border-radius: var(--piece-radius);
    transition: all 0.5s ease;
}

.video-puzzle-wrapper .piece .inner {
    position: absolute;
    width: 590px;
    height: 519px;
    object-fit: cover;
    top: 0;
    left: 0;
    pointer-events: none;
}

/* Each piece clips a portion of the video */
.video-puzzle-wrapper .piece1 {
    width: 272px;
    height: 349px;
    bottom: 170px;
    left: 0;
    transform: translate(-10px, -10px);
}

.video-puzzle-wrapper .piece1 .inner {
    transform: translate(0px, 0px);
}

.video-puzzle-wrapper .piece2 {
    width: 293px;
    height: 337px;
    bottom: 182px;
    left: 271px;
    transform: translate(15px, -80px);
}

.video-puzzle-wrapper .piece2 .inner {
    transform: translate(-297px, 0px);
}

.video-puzzle-wrapper .piece3 {
    width: 126px;
    height: 125px;
    top: 348px;
    left: 0;
    transform: translate(140px, 10px);
}

.video-puzzle-wrapper .piece3 .inner {
    transform: translate(0px, -394px);
}

.video-puzzle-wrapper .piece4 {
    width: 293px;
    height: 203px;
    bottom: 0;
    left: 271px;
    transform: translate(15px, -40px);
}

.video-puzzle-wrapper .piece4 .inner {
    transform: translate(-297px, -316px);
}
.to-know-section h5 {
    color: #EC651B;
    font-family: "Work Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    /* 122.222% */
    letter-spacing: 6px;
    text-transform: uppercase;
}

.to-know-section h3 {
    color: #10111A;
    font-family: "Work Sans", sans-serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 65px;
    /* 125% */
    letter-spacing: 5px;
    text-transform: uppercase;
}

.to-know-section p {
    color: #24243F;
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    /* padding: 47px 0px; */
}

.to-know-section a {
    text-decoration: none;
    /* text-transform: uppercase; */
}

.custom-quote-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #42C4DC;
    color: white;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 10% 10% 16% 10% / 40% 40% 100% 40%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
    text-decoration: none;
}
.know-section{
    display: flex;
    flex-direction: column;
}
.svg-button-wrapper {
    background-image: url('../images/button-shape-removebg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    max-width: 280px;
    height: auto;
    aspect-ratio: 440 / 130;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top:auto;
    filter: drop-shadow(0px 1.852px 3.148px rgba(68, 68, 68, 0.02)) drop-shadow(0px 8.148px 6.519px rgba(68, 68, 68, 0.04)) drop-shadow(0px 20px 13px rgba(68, 68, 68, 0.05)) drop-shadow(0px 38.519px 25.481px rgba(68, 68, 68, 0.06)) drop-shadow(0px 64.815px 46.852px rgba(68, 68, 68, 0.08)) drop-shadow(0px 100px 80px rgba(68, 68, 68, 0.10));
}

.svg-button-text {
    color: #FFF;
    font-family: "Work Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    letter-spacing: 1.8px;
    text-transform: uppercase;
    z-index: 1;
    /* padding: 1rem 2rem; */
    text-align: center;
}

.custom-quote-button:hover {
    background-color: #32b5d0;
    transform: scale(1.03);
}

/* text animation */
.animation-text {
    overflow: hidden;
}

.text-wipe {
    font-weight: 400;
    text-transform: lowercase;
    font-size: 80px;
    line-height: 1.4;
    letter-spacing: 2px;
    color: #e5e5e5;
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
}

.text-wipe span {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

/* The black letter sliding in */
.text-wipe span::before {
    content: attr(data-char);
    position: absolute;
    top: 0;
    left: 0;
    color: #000;
    transform: translateX(-100%);
    animation: letterWipe 0.8s forwards;
    animation-delay: calc(var(--i) * 0.10s);
}

@keyframes letterWipe {
    to {
        transform: translateX(0);
    }
}

.scrollUp-container {
    position: relative;
}

.scroll-up {
    position: sticky;
    top: 0;
    width: 210px;
    height: 260px;
    border-radius: 46px;
    border: 12px solid #F9A88E;
    background: #FFF;
    transform: rotate(15deg);
    margin: 0 auto;
}

.scroll-up img {
    position: absolute;
    left: 13px;
    transform: rotate(-16deg);
}

.about-list-content {
    display: flex;
    align-items: center;

}

.about-list-descp p {
    font-size: 7px;
    position: absolute;
    left: 55px;
    top: 140px;
    transform: rotate(1deg);
}

.about-list-number {
    position: absolute;
    left: 13px;
    top: 180px;
    font-size: 24px;
}

.scroll-2 {
    transform: rotate(-15.27deg);
    margin-top: 40px;
    border: 12px solid var(--blue-gradient, #57E7DF) !important;
}

.scroll-2 img {
    transform: rotate(15deg);
}

.scroll-3 {
    transform: rotate(48.387deg);
    margin-top: 40px;
    border: 12px solid var(--orange-gradient, #F15A24);
}

.scroll-3 img {
    top: -32px;
    transform: rotate(-48deg);
}

.scroll-4 {
    transform: rotate(-30.863deg);
    margin-top: 40px;
    border: 12px solid var(--green-gradient, #ACFB30);

}

.scroll-5 {
    transform: rotate(18.824deg);
    margin-top: 40px;
    border: 12px solid var(--rose-gradient, #F9A88E);
}

.scroll-6 {
    transform: rotate(48.387deg);
    margin-top: 40px;
    border: 12px solid var(--orange-gradient, #F15A24);
}

/* our story */
.our-story {
    padding: 0 50px;
}

.our-story-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.timeline-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    scroll-behavior: smooth;
}

.timeline-container {
    position: relative;
    padding: 200px 20px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: auto;
    overflow-x: auto;
    overflow-y: hidden;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    background-color: #FF928E;
    z-index: 0;
    animation: growLine 5s linear forwards;
}

@keyframes growLine {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.timeline-item {
    position: relative;
    flex: 1 1 20%;
    text-align: center;
    margin-bottom: 60px;
    min-width: 140px;
    z-index: 1;
    transition: opacity 0.4s ease-in-out;
}

.timeline-circle {
    width: 40px;
    height: 40px;
    border: 4px solid #52E4FF;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    top: 75%;
    transform: scale(0);
    transition: transform 0.4s ease-in-out;
}

.timeline-item.active .timeline-circle {
    transform: scale(1);
}

.timeline-circle .inner-circle {
    width: 20px;
    height: 20px;
    background-color: #52E4FF;
    border-radius: 50%;
}

.timeline-item .year {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: #FF928E;
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    opacity: 0;
    transition: transform 0.4s ease-in-out;
}

.timeline-item.active .year {
    opacity: 1;
}

.timeline-item .year.year-bottom {
    top: auto;
    bottom: -70px;
}

.timeline-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 0;
}

.timeline-content p {
    color: #343434;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    width: 100px;
}

.timeline-content.top {
    bottom: 65px;
    transform-origin: bottom;
}

.timeline-content.bottom {
    top: 110px;
    transform-origin: top;
}

.timeline-item.active {
    opacity: 1;
}

.timeline-item.active .timeline-content {
    transform: translateX(-50%) scaleY(1);
    opacity: 1;
}

.timeline-content.bottom p {
    margin-top: 50px;
}

.timeline-content.bottom::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background-color: #DCDCDC;
}

.timeline-content.bottom::after,
.timeline-content.top::after {
    content: '';
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #DCDCDC;
    border-radius: 50%;
}

.timeline-content.top::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background-color: #DCDCDC;
}

.our-story-container .reload-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 70px; */
    padding: 10px 25px;
    color: #BCBCBC;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 17.60px;
    border-radius: 25px;
    border: 1px solid #E3E3E3 !important;
}

/* mission vision*/
.mission-vision {
    margin-top: 80px;
}

.corevalues h5 {
    color: #EC651B;
    font-family: "Work Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.corevalues h3 {
    color: #10111A;
    font-family: "Work Sans", sans-serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 65px;
    letter-spacing: 5px;
}

.corevalues p {
    color: #24243F;
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
}

.corevalues h4 {
    text-align: left;
    color: #FFF;
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 35px;
    background: url('images/vectormission.png') no-repeat;
    border-radius: 12px;
    width: 320px;
    padding: 15px 10px;
}

.mission-vision-puzzle.puzzle-wrapper {
    transform: scaleX(-1);
}
/* message */
.message {
    margin-top: 80px;
}

.company-chairman {
    margin-top: 100px !important;
}

.chairman-msg {
    padding: 0 60px;
}

.chairman-msg img {
    border-radius: 12px;
    display: flex;
    justify-content: center;
}

.chairman-details {
    margin-top: 20px;
}

.chairman-details h5 {
    color: #2E2E75;
    font-family: "Public Sans", sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 37px;
    text-transform: uppercase;
}

.chairman-details p {
    color: #555;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 15.4px;
    text-transform: uppercase;
}

.chairman-msg-descp P {
    color: #2E2E75;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 51px;
    padding: 60px 0px;
}

.company-chiarman h6 {
    color: #2E2E75;
    font-family: "Public Sans", sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 37px;
    text-transform: uppercase;
}

/* certification */
.certifcates-images {
    background:
        url('../images/about-certificates.png') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;

}

.about-certificates-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 70px;

}

/* gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: center;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.blank {
    width: 100%;
    height: auto;
}

/* partnership */
.partnerships {
    padding: 100px 40px;
}

.partnership-text h5 {
    color: var(--Darker, #161E3D);
    font-size: 32px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 67px;
    letter-spacing: 5px;
}

.partnership-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.partner-img-container {
    flex: 0 0 calc(25% - 38px);
    /* 4 items per row with 50px gap */
    box-sizing: border-box;
    border: 1px solid #C7B3EE;
    border-radius: 12px;
}

.partner-img-container img {
    margin: auto;
    padding: 8px;
    display: block;
}

/* promise */
.bond-marquee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-right: 3rem;
    color: #EAEAEA;
    font-family: 'cursive';
    font-size: 1.2rem;
    white-space: nowrap;
}

.bond-marquee-item .text {
    color: #EAEAEA;
    font-size: 36px;
    font-family: "Akaya Kanadaka", cursive;
    font-weight: 400;
}


.our-promise-heading h2 {
    color: #0A4C69;
    -webkit-text-stroke-width: 5px;
    -webkit-text-stroke-color: #FFF;
    font-family: "Anton SC", sans-serif;
    font-size: 138px;
    font-weight: 400;
    line-height: 135px;
    text-transform: uppercase;
}

.promise-list {
    position: relative;
    max-width: 500px;
    height: 300px;
    text-align: left;
    /* overflow: hidden; */
}

.promise-list h5 {
    padding: 0px 10px;
    color: var(--Darker, #161E3D);
    font-family: "Work Sans", sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 67px;
    letter-spacing: 5px;
    text-transform: uppercase;
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.8s ease, opacity 0.8s ease;

}
.promise-list h5.active {
  opacity: 1;
  transform: translateY(0);
}

.promise-list h5.exit {
  opacity: 0;
  transform: translateY(-100%);
}
.scroll-reveal {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.4s ease, opacity 0.4s ease;
    text-align: left;
    font-size: 20px;
    padding: 10px 0;
}

/* When it enters the viewport */
.scroll-reveal.visible {
    opacity: 1;
    /* z-index: 1; */
    transform: translateY(0);
} 
.bluecollar-navigation {
    position: relative;
    top: 120px;
    height: 300px;
    width: 100%;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #161C28 100%),
        url('../images/bluecollarfooter.png') no-repeat center center;
    background-size: cover;
    padding: 0px 60px;
}

.bluecollar-navigation h2 {
    width: 100%;
    height: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    font-size: 64px;
    font-family: 'Anton SC', sans-serif;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #FFFFFF;
    font-weight: 400;
    line-height: 98px;
    color: transparent;
}

.bluecollar-navigation a {
    text-align: center;
    color: white;
    font-size: 23.10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 35px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-transform: uppercase;
}

/* contact page */
.contactpage-form {
    padding: 50px;
    margin-top: 100px;
}

.contact-page-form {
    padding: 50px !important;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contactpage-form .contactform h2 {
    color: #10111A;
    font-size: 52px;
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    line-height: 65px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.contactform p {
    color: #24243F;
    font-size: 20px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 1.20px;
}

.contactpage-form .contact-details {
    margin-top: 100px;
    gap: 60px;
}

.contact-details .mail-id,
.location-details {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #EEF2F5;
}

.contact-details .mail-id .mail-text h6 {
    color: #333333;
    font-size: 18px;
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
}

.contact-details .mail-id .mail-text p {
    color: var(--Subtitle-Text, #9797AA);
    font-size: 12px;
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    margin-bottom: 0px;
}

.contact-details .mail-id .mail-icon img,
.location .mail-id .mail-icon img {
    width: 24px;
    height: 24px;
}

.contact-page-social-icons .social-icons {
    display: flex;
    gap: 15px;
}

.contact-page-social-icons .social-icons a {
    display: flex;
    padding: 12px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 160px;
    margin-top: 8px;
    border: 2px solid var(--Light, rgba(0, 0, 0, 0.20));
}

.location-img {
    position: relative;
}

.location-img img {
    border-radius: 20px;
}

.location-details {
    display: flex;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.5s ease forwards;
}

.location-img .image-container {
    position: relative;
    display: inline-block;
}

.hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-img .image-container:hover .hover-image {
    opacity: 1;
}

.location-img .image-container:hover .main-image {
    opacity: 0;
}

.location-img:not(:hover) .location-details {
    animation: none;
    opacity: 0;
    transform: translateY(10px);
}

/* First item */
.location-img:hover .location-details:nth-of-type(3) {
    animation-delay: 0.4s;
}

/* Second item */
.location-img:hover .location-details:nth-of-type(4) {
    animation-delay: 0.6s;
}

.location-img:hover .location-details:nth-of-type(5) {
    animation-delay: 0.8s;
}

.location .diff-lactions {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}
.diff-lactions a {
    color: inherit !important;      
    text-decoration: none !important; 
}
.diff-lactions.otherprojects-slider a{
    margin-right:30px;
}
.location-img .image-container {
    position: relative;
    display: inline-block;
}

.location-img .main-image {
    transition: opacity 0.3s ease;
}

.location-img .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.location-img .image-container:hover .hover-image {
    opacity: 1;
}

.location-img .image-container:hover .main-image {
    opacity: 0;
}

.office-tour-video {
    margin-top: 60px !important;
}

.office-tour-video h5 {
    color: #24243F;
    font-size: 20px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 1.20px;
}

#modalVideo {
    border-radius: 20px;
}

.contact-page-clientlist .contactpage-clients {
    margin-right: 20px;
}

#officeVideoModal .videomodal-spacing {
    padding: 28px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
}

#officeVideoModal .custom-close-btn {
    position: absolute !important;
    top: -5px !important;
    right: 0px !important;
    color: #FFF !important;
    border: none;
    width: 10px;
    height: 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Keyframes for fade and slide */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.office-tour-video-container {
    position: relative;
}

.video-button {
    position: absolute;
    top: 50%;
    left: 98%;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
}

.video-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background-color: rgba(66, 196, 220, 0.4);
    /* Light blue with transparency */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseZoom 1.5s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulseZoom {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
}

.contact-page-clientlist {
    margin: 200px 0;
}

.contact-page-clientlist h5 {
    color: black;
    font-size: 20px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 1.20px;
    text-align: center;
}

.contactpage-clients-images {
    flex-wrap: nowrap !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    white-space: nowrap;
    margin-top: 30px;
}

.contactpage-clients {
    flex: 0 0 auto;
    scroll-snap-align: center;
}

.contactpage-clients img {
    max-height: 60px;
    padding: 15px 30px;
    object-fit: contain;
}

/* manpower services */
.manpower-services {
    margin-top: 150px;
}

.services-img-left {
    background-color: #DAE3FE;
    border-radius: 30px 0px 0px 30px;
}

.assurance-container {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
}

.assurance {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
    overflow-x: hidden;
    min-width:430px;
}

.assurance p {
    color: black;
    font-size: 15.62px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
    min-width: 230px;
}

.rotated-video {
    overflow: hidden;
    margin-top: 50px;
}

.animated-video {
    position: relative;
}

.sales-range {
    position: absolute;
    bottom: -98px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 2;
    text-align: center;
    height: auto;
}

.sales-rate {
    display: flex;
    justify-content: space-between;
}

.sales-rate p {
    color: #000339;
    font-size: 26px;
    font-family: 'Gilroy-Bold', sans-serif;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0.26px;
}

.sales-rate img {
    width: 26px;
    height: 16px;
}

.sales-rate-para {
    color: #97918B;
    font-size: 12px;
    font-family: 'Gilroy-Medium', sans-serif;
    font-weight: 400;
    width: 210px;
    text-align: left;
}

.sales-rate-para {
    position: relative;
    display: inline-block;
    padding-bottom: 25px;
}

.sales-rate-para::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 208px;
    height: 1.2px;
    background-color: #FB9F6D;
}

.sales-user-profile-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;

}

.sales-user-profile {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.sales-user-profile img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -10px;
    z-index: 1;
    position: relative;
    z-index: calc(100 - var(--i));
}

.standout-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 50px;
}

.standout-list-icon {
    margin-right: 14px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.standout-list-icon img {
    height: 32px;
    width: 32px
}

.standout-list-icon p {
    color: #14181F;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 21px;
    padding: 0;
    margin: 0;
}

.features-list-container {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: hidden;
    margin: 70px 0;
    position: relative;
    z-index: 5;
}

.features-list-container .features-list {
    display: flex !important;
    background-color: #F1F6F4;
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none !important;
}

.features-list-container a:hover,
.features-list-container a.active  {
    background-color: #FFF3D7;
}

.workers-onsite-container {
    background: url(../images/Dark\ Gradient\ 02.png) no-repeat;
    overflow: hidden;
    background-size: cover;
    padding: 0px 0px 10px 90px;
    max-height: 900px;
    margin-bottom: 70px;
}

.workers-onsite-section {
    background: url(../images/CryptoFlower3d.png) no-repeat top right;
    padding: 150px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    height: 100%;
}

.workers-onsite-section h1 {
    color: white;
    font-size: 138px;
    font-family: 'Anton SC', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 135px;
}

.workers-onsite-section .site-icon {
    width: 125px;
    height: 118px;
}

.vertical-image-gallery {
    display: flex;
    gap: 20px;
}

.vertical-image-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    animation: scrollUp 30s linear infinite;
}

.vertical-image-gallery .vertical-image-column:nth-child(2) {
    margin-top: 150px;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-50%);
    }

}

.vertical-image-column img {
    width: 300px;
    height: 350px;
    border-radius: 8px;
}

.related-services {
    padding: 0 0 0 50px;
}

.related-services-container {
    margin: 50px 0;
    overflow: hidden;
    display: flex;
    gap: 15px;
}

.related-services-box {
    overflow: hidden;
    margin-right: 38px;
    max-width: calc(5% - 80px);
    padding: 0px;
}
/* why us */
.highlights-slider {
    overflow: hidden;
    margin: 50px 187px;
    padding: 150px 0px;
    background: url('../images/highlightsbgg.png') no-repeat center center;
    background-size: cover;
    align-items: stretch;
    justify-content: center;
    display: flex !important;
    flex-wrap: nowrap !important;
    transition: gap 8s ease, margin-right 8s, padding 8s ease;
    gap: 0;

}


.highlights-slider .slick-list {
    padding: 60px 0px !important;
}

.highlights-slider .slick-track {
    display: flex;
    flex-wrap: nowrap;
}

.highlights-box {
    background: #FFF;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    padding: 40px 10px;
    width: 370px;
    min-width: 370px;
    min-height: 242px !important;
    position: relative;
    transition: transform 8s ease, margin-left 8s ease, margin-right 8s ease, z-index 3s ease;
    cursor: pointer;
}

.highlights-box img {
    height: 24px;
    width: 24px;
}

.highlights-box h5 {
    color: #232233;
    font-size: 20px;
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 30px;
}

.highlights-box p {
    color: #6C6C72;
    font-size: 14px;
    font-family: "Work Sans", sans-serif;
    font-weight: 300;
    line-height: 28px;
}

.rotate1 {
    transform: rotate(18.78deg);
    z-index: 1;
}

.rotate2 {
    transform: rotate(-13.55deg);
    z-index: 2;
    margin-left: -150px;
}

.rotate3 {
    transform: rotate(18.78deg);
    z-index: 3;
    margin-left: -150px;
}

.rotate4 {
    transform: rotate(-13.55deg);
    z-index: 4;
    margin-left: -150px;
}

.rotate5 {
    transform: rotate(18.78deg);
    z-index: 5;
    margin-left: -150px;
}
.highlights-container .bondmarquee-slider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(30%);
    transition: all 0.5s ease;
    pointer-events: none;
    margin: 20px;
}

.highlights-container .bondmarquee-slider {
    width: 100% !important;
}

.highlights-container .bondmarquee-slider .text {
    color: #bdb9b9 !important;
}

.highlights-slider:hover .bondmarquee-slider {
    opacity: 1;
    transform: translateY(-40%);
    transition: transform 8s ease;
    pointer-events: auto;
}

/* blog */
.blog-page-main,
.blog-all,
.blog-widgets,
.blog-singlepage,
.blog-page-container {
    margin-top: 100px;
}
.blog-page-main,
.related-blog-posts{
    margin-bottom:100px;
}
.blog-page-main .blog1 {
    margin-top: 30px;
}

.blog-page-details {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.blog-author {
    display: flex;
}

.blog-author p,
.blog-date p,
.blog-tag p {
    color: #9F9F9F;
    font-size: 16px;
    font-family: "Lexend", sans-serif;
    font-weight: 400;
    padding: 0;
    margin: 0;
}

.blog-title h2 {
    color: black;
    font-size: 30px;
    font-family: "Lexend", sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    margin-top: 30px;
}

.blog-title p {
    color: #9F9F9F;
    font-size: 15px;
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    line-height: 22.50px;
    text-transform: lowercase;
    margin-top: 30px;
    text-align: justify;
}

.blog-title a {
    color: black;
    font-size: 30px;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 500;
    text-decoration: none !important;
    /* text-transform: uppercase; */
    line-height: 26px;
}

.blog-readmore {
    color: #5851EA !important;
    font-size: 20px !important;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600 !important;
    text-decoration: underline !important;
    text-transform: uppercase;
}

.blog-widgets .search {
    position: relative;
    width: 100%;
}

.blog-widgets .search input {
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    border: 1px #9F9F9F solid
}

.blog-widgets {
    padding: 40px 70px;
}

.blog-widgets form {
    margin-bottom: 30px;
}

.blog-widgets .search button {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: #666;
    font-size: 18px;
    cursor: pointer;

}

.related-blog-posts .blog-text {
    display: none;
}

.related-blog-posts .blog-container {
    padding-left: 0px !important;
}

.categories {
    padding: 0 50px 0 0;
}

.categories h2 {
    color: black;
    font-size: 24px;
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
}

.category-items {
    display: flex;
    justify-content: space-between;
    margin: 20px 0px;
}

.category-items h5 a,
p {
    color: #9F9F9F;
    font-size: 16px;
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    text-decoration: none;
}

.latest-updates-items {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
}

.latest-updates-items h3 {
    color: black;
    font-size: 14px;
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
}

.latest-updates-item a {
    border-radius: 10px;
    height: 80px !important;
    width: 80px !important;
}

.latest-updates-items-title h3 a {
    color: black;
    font-size: 14px;
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    text-decoration: none;
}

.latest-updates-items-title p {
    margin: 0;
}

.latest-updates-items .latest-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 38px;
    padding-bottom: 50px;
}

.blog-pagination .page-no {
    border-radius: 10px;
    padding: 10px 15px;
    color: black;
    background: var(--Backgrounds-Secondary, #F2F2F7);
}

.blog-pagination .page-no a {
    text-decoration: none !important;
    color: black;
}

.blog-pagination .page-no .current {
    color: #fff;
}

/* solutions */
#jobSectionsWrapper {
    margin-top: 100px;
}

.we-work {
    margin-top: 50px;
}

.we-work h3 {
    color: #10111A;
    font-size: 52px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    line-height: 65px;
    letter-spacing: 5px;
    text-align: center;
}

.workprogres-steps {
    display: flex;
    flex-wrap: wrap;
    padding-top: 60px;
}

.step-box {
    max-width: 200px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    position: relative;
    background: #F0F0F0;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25) inset;
    overflow: hidden;
}

.step-number {
    font-size: 18px;
    font-weight: bold;
    background-color: #009ABF;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.step-title {
    font-size: 16px;
    background: #E9EFFD;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
    color: #009ABF;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.step-title::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #D9D9D9;
    transition: all 0.3s ease;
}

.step-description {
    color: black;
    font-size: 18.60px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    line-height: 28px;
}

/* Hover Effects */
.step-box:hover .step-icon {
    box-shadow: none;
}

.step-box:hover .step-number {
    opacity: 0;
}

.step-box:hover .step-icon::after {
    content: "✓";
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background-color: blue;
    border-radius: 50%;
    height: 30px;
    width: 30px;
}

.step-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: height 0.4s ease;
    z-index: 1;
}

.step-box:hover .step-icon::before {
    height: 100%;
    left: auto;
    right: 0;
}

.step-title::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: blue;
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 20px;
}

.step-box:hover .step-title::after {
    width: 100%;
    left: auto;
    right: 0;
}

.step-box:hover .step-title {
    color: white;
}

.step-box:hover .step-title::before {
    border-bottom-color: blue;
}

/* why us */
.whyus-wrapper {
    margin-top: 100px !important;
}

.whyus-video {
    display: flex;
    align-items: center;
}

/* projects page */
.project-location-text {
    position: absolute;
    top: 30px;
    right: 40px;
    padding: 10px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 20px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.40);
    color: #fff;
}

/* single sectors page */
.sectors-single .image-stack img {
    position: absolute;
    bottom: 0px;
    left: 120px;
}

.sectors-single .services-img-left,
.sectors-single .services-fixed-bg {
    padding: 150px;
}

.extended-content-block p {
    color: #24243F;
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
}
.extended-content-block ul li {
    color: #24243F;
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    text-align: justify;
}
.extended-content-block .subheading{
    color: #10111A;
    font-family: "Work Sans",sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 65px; /* 203.125% */
    font-variant: all-small-caps;
}
.extended-content-block .image-column {
  padding-right: 40px; 
}

.extended-content-block .text-column {
  padding-left: 40px; 
}
.extended-content-block img{
    border-radius: 10px;
}
.svg-button-wrapper a {
    text-decoration: none;
}

/* projects page*/
.projects-page {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
}

.projects-tab .nav-tabs .nav-link {
    font-family: 'Lexend', sans-serif !important;
    text-transform: none !important;
    border-bottom: 1px solid #eceaea !important;
    color: #a5a0a0 !important;
    border-width: 0 0 1px 0;
}

.projects-tab .nav-link.active {
    border-bottom: 1px solid #000 !important;
    border-width: 0 0 1px 0;
}

.projects-tab .nav-tabs .nav-link.active {
    color: #000 !important;
    border-color: none !important;
}

.projects-tab .projects-images {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;

}

.projects-tab .projects-images img {
    border-radius: 12px;
}

.project-location-wrapper {
    position: relative;
}

.project-location-text {
    position: absolute;
    top: 30px;
    right: 40px;
    padding: 10px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 20px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.40);
    color: #fff;
}

.career-page,
.career-puzzle {
    margin-top: 100px !important;
    margin-bottom: 100px;
}

.career-descrp p {
    color: #24243F;
    font-family: "Work Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 1.2px;
    text-align: justify;
}

.career-checkout h3 {
    color: #24243F;
    font-family: "Work Sans";
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 1.2px;
}

/* instant quote modal */
.modal-sub-header {
    display: flex;
    padding: 0px 50px 0px 50px;
}

.modal-sub-header h5 {
    color: var(--Darker, #161E3D);
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 67px;
    text-transform: uppercase;
}

#instantQuoteModal .modal-content {
    border-radius: 20px;
}

#instantQuoteModal .modal-content .info-lock,
#careerFormModal .modal-content .info-lock {
    padding: 0px 50px;
}

#instantQuoteModal .modal-content .info-lock p {
    font-size: 14px;
}

#instantQuoteModal .modal-body,
#careerFormModal .modal-body {
    padding: 50px 0px;
}

#instantQuoteModal .modal-header,
#careerFormModal .modal-header {
    border-bottom: none;
}

#instantQuoteModal .modal-header button {
    color: #2C3D7B !important;
    padding: 20px;
}

.applynow-btn {
    background-color: #42C4DC !important;
    color: #FFF !important;
    font-family: "Work Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    filter: drop-shadow(0px 1.852px 3.148px rgba(68, 68, 68, 0.02)) drop-shadow(0px 8.148px 6.519px rgba(68, 68, 68, 0.04)) drop-shadow(0px 20px 13px rgba(68, 68, 68, 0.05)) drop-shadow(0px 38.519px 25.481px rgba(68, 68, 68, 0.06)) drop-shadow(0px 64.815px 46.852px rgba(68, 68, 68, 0.08)) drop-shadow(0px 100px 80px rgba(68, 68, 68, 0.10));
}

/* project single */
.search-results,
.project-single,
.project-single .project-detailing,
.faq-section,
.featurelistdetails-container,
.gallery-page,
.gallery-slider {
    margin-top: 100px;
    margin-bottom: 100px;
}

.project-detailing img {
    border-radius: 20px;
}

.project-duration {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-duration h6 {
    color: var(--Dark, #24243F);
    font-family: "Work Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.4px;
}

.project-duration p {
    color: #10111A;
    font-family: "Work Sans", sans-serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 65px;
    font-variant: all-small-caps;
    letter-spacing: 5px;
}

.project-details-duration {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-duration-left1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #E3F7FD;
    ;
    border-radius: 30px 0px 0px 30px;
}

.project-duration-left2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #EFFFFD;
    border-radius: 30px 0px 0px 30px;
}

.projects-fixed-bg1 {
    background-image: url(../images/projectfixedbg1.png);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0px 30px 30px 0px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-fixed-bg2 {
    background-image: url(../images/projectfixedbg2.png);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0px 30px 30px 0px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.other-projects-container {
    margin-top: 50px;
}

.other-projects-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 32px;
    padding-bottom: 10px;
    overflow: hidden;
}

.single-project-location-wrapper {
    flex: 0 0 auto;
    width: 362px;
    height: 220px;
    text-decoration: none;
    margin-right: 32px;
}

.single-project-location-wrapper img {
    height: 180px;
    width: 362px;
    border-radius: 20px;
}

.project-location-text.text-wrap {
    top: 20px !important;
    right: 20px !important;
}

.career-positions {
    color: #24243F;
    font-family: "Work Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 1.2px;
}

/* faq */
.faq-wrapper {
    max-width: 1234px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #D9DBE9;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 32px 20px;
    width: 100%;
}

.faq-number {
    color: #A0A3BD;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    flex: 0 0 auto;
}

.faq-question h3 {
    color: var(--Colors-Neutrals-Neutral-800, #170F49);
    font-family: 'Poppins', sans-serif;
    font-size: var(--Typography-Font-Size-Display-4, 18px);
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
    flex: 1 1 auto;
    text-align: center;
}

.faq-toggle-icon {
    color: #A0A3BD;
    font-size: 22px;
}

.faq-answer {
    display: none;
    color: #000;
    padding: 0px 30px 30px;
    border-radius: 20px;
    position: relative;
    animation: fadeIn 0.3s ease;
    flex: 1 1 auto;
    text-align: center;
}

.faq-close {
    position: absolute;
    top: -65px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.faq-answer p {
    color: #2E2E75;
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active {
    border-radius: 24px;
    background: rgba(0, 199, 190, 0.10);
    border-bottom: none;
}

.faq-item.active .faq-question h3,
.faq-item.active .faq-number,
.faq-item.active .faq-close {
    color: #34B1A3;
    font-family: 'Poppins', sans-serif;
    font-size: var(--Typography-Font-Size-Display-4, 18px);
    font-style: normal;
    font-weight: 600;
    line-height: 135%;
}

.faq-item.active .faq-toggle-icon {
    display: none;
}

.faq-wrapper .faq-item.before-active {
    border-bottom: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feature details page */
.featurelistdetails-img .detail-fullwidth-img {
    position: relative;
    margin-top: 15px;
}

.featurelistdetails-img .bottom-corner-img {
    position: absolute;
    bottom: -10px;
    left: -5px;
    width: 40%;
    max-width: 245px;
    border-radius: 25px;
    border: 8px solid #fff;
    z-index: 10;
}
.featurelistdetails-img .detail-fullwidth-img .fullwidth-img{
    width: 747.16px;
    height: 254.38px;
    border-radius: 16px;
}
.featurelistdetails-img .featurelistdetails-right-img img{
    height: 320px;
    width: 420px;
    border-radius: 16px;
}
.featurelistdetails-leftimg{
    gap: 16px;
    justify-content: space-between;
}

.featurelistdetails-img .responsive-fixed-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    max-width: 382px;
    max-height: 319px;
}

.featurelistdetails-img .main-img-box {
    width: 382px;
    height: 319px;
    flex-shrink: 0;
}

.featurelistdetails-img .side-img-box img {
    width: 100%;
    max-width: 382px;
    height: 150px; 
    object-fit: cover;
    border-radius: 16px;
}
/*  */
.whyus-wrapper .puzzle-wrapper .piece3 .inner{
    background-position: -145px -394px;
}
.mission-vision-puzzle.puzzle-wrapper .piece3 .inner {
    background-position: -146px -394px !important;
} 
/* contact detail */
.location-details-banner{
    margin-top:15px;
    height: 100vh;
    position: relative;
}
.location-details-banner .locationdetails-heading{
    max-width: 800px;
    position: absolute;
    bottom: 180px;
}
.location-details-banner .locationdetails-heading h5{
    color: #000;
    font-family: "Work Sans",sans-serif;
    font-size: 44px;
    font-weight: 600;
    line-height: 68px;
    text-transform: uppercase;
    
}
.location-details-banner .locationdetails-heading span{
    border-radius: 20px;
    background: linear-gradient(99deg, #22D1EE 6.69%, #7BECFF 100%);
    color: #FFF !important;
    font-family: "Work Sans",sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 68px;
    text-transform: uppercase;
    padding: 5px 10px;
}
.location-details-banner .locationdetails-heading p{
    color: #000;
    font-family: "Work Sans",sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px; 
    max-width: 700px;
}

.loationdetails-description h3{
    color: #10111A;
    font-family: "Work Sans",sans-serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 65px;
    text-transform: capitalize;
}
.loationdetails-description p{
    color: #24243F;
    font-family: "Work Sans",sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    text-align: justify;
}
.featurelistdetails-img .locationdetails-main-img-box {
    max-width: 100%;
    width: 260px;
    height: 350px;
    flex-shrink: 0;
}
.featurelistdetails-img .side-img-box.locationdetails-2image img {
    height: 167px;
    object-fit: cover;
    width: 100%;
    border-radius: 16px;
}
.locationdetails-container .detailed-content{
    padding: 0px 145px;
}
.location .diff-lactions-slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 32px;
    justify-content: center;
}
.diff-lactions-slider a {
    color: inherit !important;      
    text-decoration: none !important; 
    margin-right: 30px;
}
.slide-counter img{
    border-radius: 50px;
}
.slide-counter-animation{
    display: flex;
    flex-direction: column;
    gap:20px;
    align-items: start;
    justify-content: center;
}
.slider-counter-content{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    padding: 20px;
    background: rgba(199, 247, 255, 0.20);
    box-shadow: 0 3px 4px 0 rgba(139, 139, 139, 0.25) inset;
}
.slider-counter-content h5{
    display: flex;
    color: var(--Darker, #161E3D);
    font-family: "Work Sans",sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 67px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.slider-counter-content span{
    color: var(--Darker, #161E3D);
    font-family: "Work Sans",sans-serif;
    font-size: 50px;
    font-weight: 600;
    line-height: 67px; /* 134% */
    letter-spacing: 1px;
    text-transform: uppercase;
}

.slide-counter-animation2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: end;
    justify-content: center;
}

.slide-counter-text,
.delayed-img {
    position: relative;
    left: -50px;
    opacity: 0;
    transition: all 0.4s ease;
}

.slide-counter-text.active,
.delayed-img.active {
    left: 0;
    opacity: 1;
}

.slide-counter-text-right {
    position: relative;
    opacity: 0;
    transition: all 0.4s ease;
}

.slide-counter-text-right.active {
    right: 0;
    opacity: 1;
}
/* Gallery page */
.gallery-page{
    display: flex;
    flex-direction: column;
}
.gallery-page h3{
    color: #10111A;
    font-family: "Work Sans",sans-serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 65px;
    text-transform: capitalize;
}
.gallery-listing{
    display: flex;
    gap:40px;
    margin-top: 40px;
}
.gallery-listing a{
    text-decoration: none;
}
.gallery-listing-content{
    display: flex;
    flex-direction: column;
    gap:10px;
}
.gallery-listing-content img{
    border-radius: 10px;
}
.gallery-listing-content .title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px
}
.gallery-listing-content .title h5{
    color: #000;
    font-family: "Work Sans",sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px; 
    text-transform: capitalize;
}
.load-more-btn{
    margin: 30px auto 0;
    display: inline-flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 8px;
    border: 1px solid #42C4DC;
    color: #42C4DC;
    font-family: "Work Sans",sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px; 
    text-transform: capitalize;
    background: #fff;
}
.load-more-btn:hover{
    border-radius: 8px;
    border: 1px solid #42C4DC;
    background: #42C4DC;
    color:#fff;
}
.load-more-btn:hover svg path{       
    stroke: #fff;
}
/* gallery single page */
.gallery-site-banner{
    background-repeat: no-repeat;
    background-size: cover;
    height: 306.313px;
}
.gallery-site-banner{
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-site-banner h3{
    color: #fff;
    font-family: "Work Sans",sans-serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 65px;
}
.next-more-icon{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.next-more-icon span svg{
    width: 30px;
    height: 30px;
    padding: 5px;
    border-radius: 30px;
    border: 1px solid #42C4DC;
    transition: transform 0.3s;
}

.next-more-icon .next-div-btn svg{
    transform: rotate(180deg);
}
.whole-slick-gallery .masonry-wrapper{
    display: flex !important;
    width: 100%;
}
.whole-slick-gallery .slick-dots{
    display: none !important;
}
.masonry-wrapper{
    display: flex;
    gap: 20px;
}

.masonry-wrapper > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.masonry-wrapper img{
    width:100%;
    height: auto;
    border-radius: 15px;
    display: block;
    object-fit: cover;  
}

.masonry-wrapper-col1,
.masonry-wrapper-col3{
     flex: 0 0 23%; 
}

.masonry-wrapper-col2{
     flex: 0 0 50%;
}
.video-thumb{
  position: relative;
  width: 100%;
  max-width: 1050px;
  height: 0;
  padding-bottom: 58.57%;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}

.video-thumb video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.video-thumb .play-icon{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    cursor:pointer;
}

.two-small{
    display: grid;
    grid-template-columns: 240px 400px;
    gap: 15px; 
    width: 100%;
    max-width: 655px;
    margin: 0 auto;
}
 .small-img-container, .large-img-container {
    position: relative;
    overflow: hidden;
}

.small-img, .large-img {
    width: 100%;
    height: 350px !important;
    display: block;
}
.gallery-slider {
    padding: 0 15px;
    position: relative;
}

.slick-gallery {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.slick-gallery .slide-item {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.slick-gallery .slide-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    max-width: 100%;
    margin: 0 auto;
}

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #42C4DC;
    background: transparent;
    outline: none;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slick-gallery button svg{
    border-radius: 30px;
    border: 1px solid #42C4DC;
    padding: 4px;
    width: 24px;
    height: 24px;
}
.slick-prev.slider-arrow {
    left: -60px;
}

.slick-next.slider-arrow {
    right: -60px;
}

.slick-disabled {
    opacity: 0.4;
}
.gallery-slider .slick-dots{
    color: #42C4DC;
    background:none !important;
}
.slick-prev:before ,
.slick-next:before {
    display: none;
}
@media (min-width: 1026px) and (max-width: 1400px) {
    .image-stack .img-left {
        left: 120px;
    }

    .image-stack .img-right {
        left: 115px;
    }

    .services-box.top-stack {
        margin-top: -55px !important;
    }

    .services-box.first-box {
        margin-top: -335px;
    }

    .services-box.revealed {
        top: -286px;
    }

    /* projects */
    .puzzle-wrapper .piece1 {
        width: 240px;
        transform: translate(128px, -10px);
    }

    .puzzle-wrapper .piece2 {
        width: 240px;
        transform: translate(110px, -80px);
    }

    .puzzle-wrapper .piece3 {
        width: 126px;
        transform: translate(241px, 10px);
    }

    .puzzle-wrapper .piece4 {
        width: 240px;
        height: 203px;
        transform: translate(110px, -40px);
    }

    .projects .puzzle-wrapper:hover .piece1 {
        transform: translate(145px, 0px);
    }

    .projects .puzzle-wrapper:hover .piece2 {
        transform: translate(114px, 0px);
    }

    .projects .puzzle-wrapper:hover .piece3 {
        width: 240px;
        height: 144px;
        transform: translate(145px, 0px);
    }

    .projects .puzzle-wrapper:hover .piece4 {
        height: 176px;
        transform: translate(114px, -27px);
    }

    .puzzle-overlay {
        left: 144px;
        width: 82%;
        height: 95%;
    }
    /* CLIENTS */
    .clients-side {
        gap: 40px;
    }

    .next-btn {
        right: 68%;
    }
}

@media (min-width: 1200px) {
    .sectors {
        margin-top: 25px !important;
    }
}
@media (max-width: 1200px) {
    .nav-link {
        font-size: 11px !important;
    }
}
@media (min-width: 1026px) and (max-width: 1200px) {
    .sectorsingle-br {
        margin: 0px -55px !important;
    }

    .puzzle-wrapper .piece1 {
        transform: translate(24px, -10px);
    }

    .puzzle-wrapper .piece2 {
        transform: translate(10px, -80px);
    }

    .puzzle-wrapper .piece3 {
        transform: translate(139px, 10px);
    }

    .puzzle-wrapper .piece4 {
        transform: translate(10px, -40px);
    }
}

@media(min-width:1026px) and (max-width:1399px){
    .text-wipe{
        font-size: 58px;
    }
}
@media (max-width: 1024.99px) {
    .text-wipe {
        font-size: 58px;
    }
    .services-container {
        width: 95% !important;
    }

    .clients-mid .clients-side {
        display: none !important;
    }

    .puzzle-wrapper .puzzle-overlay {
        left: 92px;
        width: 86%;
    }

    .puzzle-text {
        transform: translateX(0%);
    }

    .mega-dropdown {
        width: 700px;
    }

    .chairman-msg-descp P {
        padding: 0px;
    }

    .chairman-details p {
        line-height: 25px;
    }
    .masonry-wrapper-col1,
    .masonry-wrapper-col3{
        flex: 0 0 12%; 
    }
    .small-img, .large-img {
        width: 100%;
        height: 200px !important;
    }
    .slick-gallery{
        width:100%
    }
    .slick-gallery .slide-item img{
        width:80%;
    }
    .slick-next.slider-arrow {
       right: 70px;
    }
    .slick-prev.slider-arrow {
       left: 70px;
    }
    .slick-prev, .slick-next {
       top: 35%;
    }
     .project-navigation img {
        width: 35px;
        height: 35px;
    }
    .locationdetails-container .detailed-content {
        padding: 0px 45px;
    }
}
@media (max-width: 991px) {
    .featurelistdetails-img .main-img-box,
    .locationdetails-main-img-box{
        width: 100%;
        height: auto;
    }
    .featurelistdetails-img .responsive-fixed-img,
    .locationdetails-main-img-box {
        max-width: 100%;
        height: auto;
    }
    .extended-content-block .image-column,
    .extended-content-block .text-column {
        padding: 10px;
    } 
}
@media (min-width: 992px) {
    .navbar .dropdown-toggle {
       pointer-events: none; 
    }
}
@media (min-width: 992px) and (max-width: 1024.99px) {
    .mega-dropdown {
        width: 700px;
    }
    .main-heading {
        flex: 0 0 95% !important;   /* take ~95% width */
        max-width: 95% !important;
    }
    .sector-image-wrapper h1{
        margin-top:25px;
    }
    /* projects */
    .projects {
        padding: 30px;
    }

    .puzzle-wrapper .piece1,
    .video-puzzle-wrapper .piece1 {
        width: 230px;
        height: 349px;
        bottom: 170px;
        left: 0;
        transform: translate(95px, -10px);
    }

    .puzzle-wrapper .piece2,
    .video-puzzle-wrapper .piece2 {
        width: 240px;
        height: 337px;
        bottom: 182px;
        left: 271px;
        transform: translate(65px, -80px);
    }

    .puzzle-wrapper .piece3,
    .video-puzzle-wrapper .piece3 {
        width: 126px;
        height: 125px;
        top: 348px;
        left: 0;
        transform: translate(202px, 10px);
    }

    .puzzle-wrapper .piece4,
    .video-puzzle-wrapper .piece4 {
        width: 240px;
        height: 203px;
        bottom: 0;
        left: 271px;
        transform: translate(70px, -40px);
    }

    .projects .puzzle-wrapper:hover .piece {
        transform: translate(90px, 0);
    }

    .projects .puzzle-wrapper:hover .piece1 {
        width: 272px;
    }

    /* clients */
    .clients-side {
        gap: 45px;
    }

    .clients-mid .clients-side {
        display: none !important;
    }

    .custom-blog-slide {
        width: calc(25% - 13.3333px) !important;
    }

    .testimonial-slide {
        width: calc(30% - -30px) !important;
        margin-right: 20px;
    }


    /* services */
    .services-container {
        margin-top: 300px !important;
    }

    .image-stack .img-right {
        left: 85px !important;
    }

    .image-stack .img-left {
        left: 0px !important;
    }

    .services-box.top-stack {
        margin-top: -50px !important;
    }

    .services-box.first-box {
        opacity: 1;
        margin-top: -350px;
        transform: rotateZ(5deg) translateY(0);
    }

    /* Others revealed with transform */
    .services-box.revealed {
        opacity: 1;
        z-index: 10;
        top: -315px;
    }

    .last-box-two {
        margin-top: -335px;
    }

    .sectors-layout h1 {
        font-size: 180px;
    }

    .blog-title {
        min-height: 150px;
    }

    /* why us page */
    .why-us .puzzle-wrapper .piece1,
    .career-page .puzzle-wrapper .piece1
     {
        transform: translate(20px, -10px);
    }

    .why-us .puzzle-wrapper .piece2,
    .career-page .puzzle-wrapper .piece2{
        transform: translate(-4px, -80px);
    }

    .why-us .puzzle-wrapper .piece3,
    .career-page .puzzle-wrapper .piece3{
        transform: translate(125px, 10px);
    }

    .why-us .puzzle-wrapper .piece4,
    .career-page .puzzle-wrapper .piece4{
        transform: translate(3px, -40px);
    }

    .highlights-slider {
        margin: 0px;
    }

    /* sectors single  */
    .single-sector-page .services-container {
        margin-top: 0px !important;
    }

    .sectorsingle-br {
        margin: 0px -55px !important;
    }

    /* about page */
    .video-puzzle-wrapper .piece1 {
        transform: translate(50px, -10px);
    }

    .video-puzzle-wrapper .piece2 {
        transform: translate(25px, -80px);
    }

    .video-puzzle-wrapper .piece3 {
        transform: translate(151px, 10px);
    }

    .video-puzzle-wrapper .piece4 {
        transform: translate(25px, -40px);
    }

    .timeline-container {
        max-width: 100% !important;
        margin-top: 0px !important;
    }

    .our-story {
        margin-top: 70px;
        padding: 0px;
    }

    .mission-vision-puzzle.puzzle-wrapper .piece1 {
        transform: translate(-33px, -10px);
    }

    .mission-vision-puzzle.puzzle-wrapper .piece2 {
        transform: translate(-56px, -80px);
    }

    .mission-vision-puzzle.puzzle-wrapper .piece3 {
        transform: translate(70px, 10px);
    }

    .mission-vision-puzzle.puzzle-wrapper .piece4 {
        transform: translate(-55px, -40px);
    }

    /* career */
    .career-puzzle .careerpuzzle1 .piece1 {
        transform: translate(52px, -10px);
    }

    .career-puzzle .careerpuzzle1 .piece2 {
        transform: translate(26px, -80px);
    }

    .career-puzzle .careerpuzzle1 .piece3 {
        transform: translate(158px, 10px);
    }

    .career-puzzle .careerpuzzle1 .piece4 {
        transform: translate(27px, -40px);
    }

}

@media (max-width: 992px) {
    .navbar-nav {
        background: #fff;
        backdrop-filter: blur(10px);
    }

    .findus-para p {
        padding-right: 0px !important;
    }

    .projects {
        display: flex;
        flex-direction: column;
    }

    .image-puzzle {
        margin-top: 55px;
    }

    .puzzle-wrapper .puzzle-overlay {
        display: none;
    }

    /* about us */
    .about-us-text {
        padding: 40px !important;
    }

    /* services */
    .services {
        padding: 50px 20px;
    }

    .services-box .row {
        flex-direction: column;
    }

    .services-description {
        border-radius: 30px 30px 0 0;
        padding: 30px 20px 30px !important;
    }

    .services-fixed-bg {
        border-radius: 0 0 30px 30px;
        padding: 30px;
    }

    .services-box.top-stack {
        margin-top: 30px !important;
    }

    .services-box {
        transform: none !important;
    }

    .services-box.revealed {
        top: -95px;
    }

    /* projects */
    .projects {
        display: flex;
        flex-direction: column !important;
    }

    .image-puzzle {
        margin-top: 80px !important;
    }

    /* sector */
    .sectors-bg {
        height: 550px;
    }
    .blog-container {
        flex-direction: column;
    }

    .blog-text {
        padding: 20px;
        max-width: 100% !important;
    }

    .blog-title {
        min-height: 150px;
    }

    .custom-blog-slide {
        width: calc(50% - 13.3333px) !important;
    }

    .image-stack {
        margin-top: 10px;
        height: auto;
    }

    .image-stack .img-left,
    .image-stack .img-right {
        display: inline-block;
        margin: 10px;
    }

    .clients-mid .clients-side {
        display: none !important;
    }

    .testimonial-container {
        flex-direction: column;
    }

    .next-btn {
        right: 38%;
    }

    .blog-text {
        margin: 0px;
    }

    /* single sectors */
    .sectors-single .services-fixed-bg {
        display: none;
    }

    .sectors-single .image-stack img {
        left: 0px;
        bottom: 40px;
    }

    .workers-onsite-container {
        max-height: 100%;
    }

}

@media (min-width: 770px) and (max-width: 991px) {
    .puzzle-overlay {
        left: 0px;
        width: 96%;
    }

    /* solutions page */
    .manpower-services-container {
        margin-top: 30px !important;
    }

    .services-img-left {
        border-radius: 20px 20px 0px 0px;
    }

    .services-fixed-bg {
        padding: 50px !important;
    }

    .image-stack .img-left {
        left: 75px;
    }
}

@media (max-width: 768.99px) {
    /* reduce spacing between items when collapsed
       dropdowns were previously separated by gap:8px which felt large on phones */
    .navbar-nav {
        gap: 0;
    }

    /* ensure dropdown list items don't add extra bottom margin */
    .navbar-nav .nav-item {
        margin-bottom: 0;
    }

    .navbar-collapse {
        background: #fff;
        position: absolute;
        width: 100%;
        top: 0px;
        left: 0px;
        padding: 60px 0px 24px 24px;
        /* make dropdown tall menus scrollable on small screens */
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .navbar-nav .nav-link.active::after {
        left: 0px;
    }

    /* force mega menus to behave like regular block elements on mobile */
    .mega-dropdown {
        width: 100%;
        position: static !important;
        box-shadow: none;
        transform: none;
    }

    /* nested dropdowns also static so they stack inside collapse */
    .mega-dropdown .dropdown-menu {
        position: static;
        float: none;
    }

    /* show nested submenus fully (no height animation on mobile) */
    .nav-service-list ul.submenu {
        max-height: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-service-list li.menu-item-has-children>a::before {
        display: none; /* hide arrow icon on collapsed mobile menu */
    }

    .nav-image-stack img {
        top: -18px;
        left: 17px;
    }

    .nav-image-stack .img-left {
        left: -6px;
        top: 0px;
    }

    .slide {
        background: none !important;
    }

    .main-heading{
        margin-top:-180px !important;
    }
    .main-heading h4 {
        margin-top:50px;
    }

    .main-heading span {
        font-size: 42px;
    }

    .main-heading p {
        width: 100%;
    }

    .arrow-bottom-right {
        display: none !important;
    }

    .arrow-bottom-right i {
        display: none;
    }
    .sector-image-wrapper h1{
        margin-top:56px
    }
    /* about us */
    .findus-bgimg {
        background-image: none;
    }

    .aboutUs-slide-text {
        width: 100%;
    }

    .about-us-text {
        padding: 40px !important;
    }

    /* services */
    .services-heading p {
        width: 100%;
    }

    .services-box {
        margin-top: 20px !important;
    }

    .services-description {
        padding: 30px 30px 40px !important;
        border-radius: 30px 30px 0px 0px;
    }
    .image-stack .img-right {
        left: 210px;
    }
    .services-container {
        margin-top: 200px !important;
    }
    .services-fixed-bg {
        border-radius: 0px 0px 30px 30px;
        background-image: url(../images/services-mobile-fixedbg-removebg-preview.png);
    }

    .services-box.top-stack {
        margin-top: 80px !important;
    }

    .services-box {
        margin-top: -210px !important;
    }

    .centered-service {
        justify-content: center;
        align-items: center;
    }

    /* sector */
    .sector-heading {
        padding: 0px 30px;
        margin-bottom: 40px;
    }

    .sectors-layout h1 {
        font-size: 76px;
        font-weight: 500;
    }

    .sectors-layout img {
        margin-top: -90px;
    }

    .sectors-bg {
        margin: -125px 0px 10px;
    }

    .sectors-client {
        display: flex;
        flex-direction: column;
    }

    .sectors-review {
        width: 100% !important;
    }

    .sectors-bg {
        height: 100%;
    }

    .sectors-client-review {
        width: 100%;
    }

    .sectors-details h4 {
        font-size: 10px;
    }

    .sector-navigation {
        top: 80%;
    }

    /* projects */
    .projects {
        padding: 30px;
        flex-direction: column;
    }

    .project-details {
        padding: 0px;
    }

    .image-puzzle {
        width: 100%;
    }

    .puzzle-wrapper {
        margin-left: 25%;
    }

    .puzzle-wrapper .piece1 {
        width: 170px;
        height: 254px;
    }

    .puzzle-wrapper .piece2 {
        width: 170px;
        height: 207px;
        transform: translate(-107px, -50px);
    }

    .puzzle-wrapper .piece3 {
        width: 91px;
        height: 91px;
        transform: translate(70px, 0px);
    }

    .puzzle-wrapper .piece4 {
        bottom: 0px;
        width: 170px;
        height: 148px;
        transform: translate(-107px, -80px);
    }

    /* On hover: Animate all to correct position */
    .projects .puzzle-wrapper:hover .piece3 {
        width: 198px;
        height: 115px;
    }

    .projects .puzzle-wrapper:hover .piece2 {
        transform: translate(-73px, -35px);
    }

    .projects .puzzle-wrapper:hover .piece1 {
        width: 198px;
        transform: translate(0px, 0px);
    }

    .projects .puzzle-wrapper:hover .piece4 {
        transform: translate(-72px, -56px);
        width: 170px;
        height: 162px;
    }

    .puzzle-text {
        transform: translateX(0%);
        width: 100%;
    }

    .puzzle-overlay {
        top: 386px;
        left: 0px;
        width: 70%;
        height: 76px;
    }

    /* feature */
    .features-title {
        padding: 45px 20px;
    }

    /* clients */
    .main-clients h1 {
        font-size: 66px;
    }

    .clients-row {
        display: flex;
        align-items: flex-start;
        gap: 5px;
        justify-content: space-around;
    }

    .clients-row.top .client-img-container:nth-child(odd) {
        margin-top: -125px;
    }

    .clients-row.bottom .client-img-container {
        margin-top: 100px;
    }

    .clients-row.bottom .client-img-container:nth-child(even) {
        margin-top: -15px;
    }

    .clients-mid .clients-side {
        display: none;
    }

    /* testimonials */
    .testimonials {
        padding: 0px;
    }
    .testimonial-slide {
        width: calc(21% - 20px) !important;
        padding:0 20px;
        margin-right: 20px;
    }
    .testimonial-container {
        flex-direction: column;
    }

    .testimonial-item {
        padding: 3px !important;
        width: 100% !important;
        margin: 5px;
    }

    .testimonial-review .next-btn {
        display: none;
    }

    /* cerifications */
    .certificates {
        display: flex;
        flex-direction: column-reverse;
    }

    .certified-companys {
        gap: 20px;
    }

    /* blog */
    .blog-container {
        flex-direction: column;
        padding-left: 0px;
    }

    .blog-text {
        max-width: 100% !important;
        margin: 0px;
    }

    .custom-blog-slide {
        width: 100% !important;
        margin-right: 0;
    }

    .splide {
        max-width: none !important;
        flex: 1;
    }

    /* contact form */
    .contactform {
        padding: 0px !important;
        flex-direction: column;
    }

    .contact-form {
        padding: 30px;
    }

    .contactform img {
        display: none;
    }

    .contact-form button {
        padding: 10px 74px;
    }

    .contact-page-clientlist {
        margin: 80px 30px;
    }
    .scroll-reveal:first-child {
        opacity: 1;
        transform: translateY(0);
        position: relative;
    }
    .mousegif{
        display: none;
    }
    /* footer */
    .footer {
        background: url('../images/footer-mobile-bg.png') no-repeat;
        background-size: cover;
        background-position: top;
        color: white;
        padding: 40px 0;
        position: relative;
        border-radius: 24px 24px 0 0;
    }

    .footer-discription p {
        margin-top: 80px;
    }

    .copy-right h6 {
        line-height: 20px;
    }

    .footer .back-to-top {
        position: absolute;
        top: -60px;
        left: 51%;
    }

    .privacy-terms {
        flex-direction: column;
        align-items: center;
    }

    /* why us page */
    .highlights-container {
        margin-top: 20px;
    }

    .highlights-slider {
        flex-direction: column;
        align-items: center;
        padding: 50px 20px;
        margin: 20px;
        gap: 20px;
        background-size: cover;
    }

    .highlights-slider .slick-list,
    .highlights-slider .slick-track {
        display: flex !important;
        flex-direction: column;
        width: 100% !important;
    }

    .highlights-box {
        width: 100%;
        max-width: 370px;
        min-width: auto;
        margin-left: 0 !important;
        transform: none !important;
        z-index: auto !important;
    }

    /* Disable slick slider effects on mobile */
    .highlights-slider .slick-slide {
        float: none;
        width: 100% !important;
        height: auto;
        margin-bottom: 20px;
    }

    .why-us {
        margin: 0px !important;
    }

    .why-us .puzzle-wrapper .piece1 .inner {
        background-position: 0 -135px;
    }

    .why-us .puzzle-wrapper .piece2 .inner {
        background-position: -292px -107px;
    }

    .whyus-service .stand-out {
        margin-top: 0px !important;
    }

    .highlights-slider .bondmarquee-slider {
        display: none;
    }

    /* about page */
    .puzzle-video {
        margin-top: 150px !important;
    }

    .our-story {
        margin-top: 70px;
        padding: 0px 30px;
    }
    .text-wipe {
        font-size: 58px;
    }
    .timeline-container {
        max-width: 100% !important;
        margin-top: 0px !important;
    }

    .timeline-item {
        min-width: 100px !important;
    }

    .chairman-msg {
        padding: 0px;
    }

    .chairman-msg-descp P {
        padding: 60px 20px;
    }

    .partnership-images {
        margin-top: 50px !important;
        flex-direction: column;
    }

    .partner-img-container {
        flex: 0 0 calc(18% - 35px);
    }

    /* manpower single page */
    .assurance {
        min-width: 400px;
    }
    .assurance-container {
        flex-direction: column;
    }

    .services-img-left {
        border-radius: 30px 30px 0px 0px;
    }

    .manpower-services-container {
        margin-top: 50px !important;
    }

    .stand-out {
        margin-top: 150px !important;
        padding: 30px !important;
    }

    .bluecollar-navigation {
        padding: 0px;
    }

    .bluecollar-navigation h2 {
        font-size: 45px;
        justify-content: start;
        line-height: 70px;
    }

    /* solutions page */
    .services-img-left {
        display: flex;
        justify-content: center;
    }

    .related-services-container .image-stack .img-left {
        left: 8%;
    }

    .related-services-container .image-stack .img-right {
        left: 30%;
    }

    /* single sectors */
    .sectors-single .services-fixed-bg {
        display: none;
    }

    .sectors-single .image-stack img {
        left: 0px;
        bottom: 40px;
    }

    .workers-onsite-container {
        max-height: 100%;
    }

    /* single project page */
    .project-details-duration {
        padding: 0px !important;
    }

    .project-duration-left1,
    .project-duration-left2 {
        border-radius: 30px 30px 0px 0px !important;
    }

    .projects-fixed-bg1,
    .projects-fixed-bg2 {
        border-radius: 0px 0px 30px 30px !important;
    }

    .video-button {
        left: 50%;
    }
    .vertical-image-gallery {
        max-height: 500px;
        overflow: hidden;
    }
    /* gallery single page */
    .masonry-wrapper{
        flex-direction: column;
    }
    .masonry-wrapper-col1,
    .masonry-wrapper-col2,
    .masonry-wrapper-col3{
        flex: 0 0 100%;
    }
    .two-small{
        flex-direction: column;
    }
    .two-small img{
        width:100%;
    }
    .two-small {
        grid-template-columns: 1fr 1.67fr;
        max-width: 100%;
    }
     .slick-gallery {
        width: 100%;
    }
    .slide-counter .row{
        gap:20px;
    }
    .services-heading .row{
        margin-top: 20px !important;
    }
    .main-clients{
        margin-top: 60px;
    }
}

@media (min-width: 426px) and (max-width: 767px) {
    .slide-bg {
        display: none;
    }

    .banner-slide {
        background-image: none !important;
        border-bottom: none !important;
    }

    .main-heading a {
        width: 100%;
        display: none !important;
    }

    .slick-dots {
        opacity: 0;
    }
    /* features detail page */
    .featurelistdetails-leftimg{
        flex-direction: column;
        gap: 16px;
    }
}

@media (min-width: 426px) and (max-width: 600px) {

    .image-stack .img-left {
        left: -25px;
    }

    .image-stack .img-right {
        left: 40px;
    }

    .puzzle-wrapper {
        margin-left: 0%;
    }

    .puzzle-text {
        transform: translateX(-53%);
        width: 90%;
    }
}

@media (max-width: 425px) {
    .modal-form {
        padding: 0px 15px 0px !important;
    }
    #instantQuoteModal .modal-content .info-lock,
    #careerFormModal .modal-content .info-lock {
        padding: 0px 15px;
    }
    .floating-social-bar {
        display: none;
    }

    .slide-bg {
        display: none !important;
    }

    .heading-wrapper {
        height: 280px;
        margin-top:30px;
    }
    .slider-container{
        margin-top:60px;
    }
    .mobile-slide-inner{
        margin-top:30px;
    }
    .banner-slide {
        background-image: none !important;
        border-bottom: none !important;
    }

    .main-heading a {
        width: 100%;
        display: none !important;
    }
    .main-heading h4 {
        font-size: 38px;
    }
    .slick-dots {
        opacity: 0;
    }

    .slick-dotted.slick-slider {
        margin-bottom: 50px !important;
    }
    .sectors-details h4{
        margin-top: 10px;
    }
    .aboutUs {
        background-image: none;
    }

    .about-us-text {
        padding: 30px !important;
    }

    .hover-overlay {
        width: 100%;
    }
    .promise-list h5 {
        top:0;
    }

    /* services */
    .services-container{
        margin-top:200px !important;
    }
    .image-stack .img-left {
        left: -35px;
    }

    .image-stack .img-right {
        left: 0px;
    }

    .services-box {
        transform: none !important;
    }

    .services-box.first-box {
        opacity: 1;
        /* margin-top: -360px !important; */
    }

    .services-box.revealed {
        top: 0px !important;
    }

    /*  */
    .sector-navigation {
        top: 80%;
    }
    .image-puzzle {
        margin-top: 0px !important;
    }

    .puzzle-wrapper .piece1 {
        width: 145px;
        transform: translate(-19px, -10px);
    }

    .puzzle-wrapper .piece2 {
        width: 145px;
        transform: translate(-140px, -50px);
    }

    .puzzle-wrapper .piece3 {
        width: 91px;
        transform: translate(30px, 0px);
    }

    .puzzle-wrapper .piece4 {
        width: 145px;
        bottom: -14px;
        transform: translate(-140px, -95px);
    }

    .projects .puzzle-wrapper:hover .piece1 {
        transform: translate(-20px, -22px);
        height: 220px;
        width: 150px;
    }

    .projects .puzzle-wrapper:hover .piece2 {
        transform: translate(-141px, -22px);
        height: 208px;
    }

    .projects .puzzle-wrapper:hover .piece3 {
        width: 150px !important;
        height: 136px;
        top: 327px;
        left: -20px;
    }

    .projects .puzzle-wrapper:hover .piece4 {
        transform: translate(-141px, -70px);
        width: 145px;
        height: 150px;
    }

    .puzzle-wrapper {
        margin-left: 0 !important;
    }

    .puzzle-text {
        transform: translateX(0%);
    }

    .puzzle-overlay {
        top: 386px;
        left: -20px;
        width: 88%;
    }

    .certificate-text h3 {
        font-size: 24px !important;
    }
    .main-clients{
        margin-top: 100px;
    }
    /* why us page */
    .to-know-section h3 {
        font-size: 26px;
        line-height: 42px;
    }

    .why-us,
    .why-us .image-puzzle,
    .why-us .puzzle-wrapper,
    .why-us,
    .whyus-service {
        margin: 0px !important;
    }

    .why-us .puzzle-wrapper .piece1 {
        transform: translate(0px, -10px);
    }

    .why-us .puzzle-wrapper .piece1 .inner {
        background-position: 0px -130px;
    }

    .why-us .puzzle-wrapper .piece2 {
        transform: translate(-118px, -50px);
    }

    .why-us .puzzle-wrapper .piece2 .inner {
        background-position: -300px -111px;
    }

    .why-us .puzzle-wrapper .piece3 {
        transform: translate(52px, 0px);
    }

    .why-us .puzzle-wrapper .piece4 {
        transform: translate(-118px, -95px);
    }

    .whyus-service .stand-out {
        margin-top: 0px !important;
    }

    /* about page */
    .video-puzzle-wrapper {
        width: 100% !important;
    }

    .text-wipe {
        font-size: 22px;
    }

    .timeline-content p {
        font-size: 10px;
    }

    .timeline-content.bottom p {
        padding: 20px;
    }

    .corevalues h3 {
        font-size: 24px;
        line-height: 40px;
    }

    .mission-vision-puzzle {
        margin: 0px;
    }

    .mission-vision-puzzle.puzzle-wrapper .piece1 {
        transform: translate(-4px, -10px);
    }

    .mission-vision-puzzle.puzzle-wrapper .piece2 {
        transform: translate(-120px, -50px);
    }

    .mission-vision-puzzle.puzzle-wrapper .piece3 {
        transform: translate(48px, 0px);
    }

    .mission-vision-puzzle.puzzle-wrapper .piece4 {
        transform: translate(-121px, -89px);
    }
    .mission-vision-puzzle.puzzle-wrapper .piece2 .inner {
        background-position: -297px -110px;
    }
    .mission-vision-puzzle.puzzle-wrapper .piece1 .inner {
        background-position: -91px -113px;
    }
    .chairman-msg {
        padding: 0px;
    }

    .chairman-msg-descp P {
        padding: 0px;
    }

    .partnerships {
        padding: 100px 16px;
    }

    .partnership-images {
        margin-top: 50px !important;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .partner-img-container {
        flex: 0 0 calc(13% - 38px);
    }

    .our-promise-heading h2 {
        font-size: 80px;
        line-height: 93px;
    }

    .partnership-text h5 {
        font-size: 24px;
        letter-spacing: 3px;
        line-height: 55px;
    }

    .onsiteworkers-heading {
        padding: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .about-list-items {
        margin-top: 50px !important;
    }

    .about-certificates-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-puzzle-wrapper .piece1 {
        width: 145px;
        transform: translate(0px, -10px);
    }

    .video-puzzle-wrapper .piece2 {
        width: 145px;
        transform: translate(-119px, -65px);
    }
    .video-puzzle-wrapper .piece2 .inner {
        transform: translate(-160px, 0px);
    }
    .video-puzzle-wrapper .piece3 {
        width: 91px;
        transform: translate(50px, 10px);
    }

    .video-puzzle-wrapper .piece4 {
        width: 145px;
        transform: translate(-118px, -30px);
    }
    .video-puzzle-wrapper .piece4 .inner {
        transform: translate(-155px, -316px);
    }
    .timeline-item {
        min-width: 0px !important;
    }

    .promise-list h5 {
        font-size: 24px;
        line-height: 55px;
    }

    /* manpower single */
    .related-services-container,
    .gallery-listing  {
        flex-direction: column;
    }

    .related-services {
        padding: 10px !important;
    }

    .single-sector-page {
        margin-top: 100px;
    }

    .related-services-box {
        margin-right: 39px;
        max-width: calc(2% - 28px);
    }

    /* contact page */
    .contactpage-form .page,
    .contact-details {
        padding: 10px;
    }

    .contactpage-form .contactform h2 {
        font-size: 24px;
        line-height: 47px;
    }

    .contact-page-form {
        padding: 20px 10px !important;
    }

    .video-button {
        left: 50%;
    }

    .contact-page-clientlist {
        margin: 80px 30px;
    }

    /* blog */
    .blog-page-details {
        gap: 0px;
    }

    .navigation-flex {
        flex-direction: column;
    }

    /* sectors single page */
    .sectors-single .services-fixed-bg {
        display: none;
    }

    .sectors-single .image-stack img {
        left: 0px;
        bottom: 40px;
    }

    .sectors-single .services-img-left {
        border-radius: 30px 30px 30px 30px;
    }

    .workers-onsite-container {
        padding: 0px 0px 10px 0px;
        max-height: 100%;
    }

    .workers-onsite-section h1 {
        font-size: 84px;
        line-height: 98px;
    }

    /* instant quote */
    .modal-sub-header {
        flex-direction: column;
        padding: 0px 15px 0px 15px !important;
    }

    .modal-sub-header h5 {
        font-size: 24px;
        line-height: 55px;
    }

    /* footer */
    .footer-discription .rating a {
        font-size: 9px;
    }

    .footercolumn a {
        font-size: 12px;
    }

    .privacy-terms a {
        font-size: 12px;
    }

    #menu-footer-legal-menu {
        padding: 0px;
    }
    .featurelistdetails-leftimg{
        flex-direction: column;
    }
    .featurelistdetails-leftimg{
        margin-top:45px;
    }
    .career-puzzle .puzzle-wrapper .piece2 {
        transform: translate(-125px, -50px);
    }
    .career-puzzle .puzzle-wrapper .piece4 {
        transform: translate(-125px, -95px);
    }
    .career-puzzle .puzzle-wrapper .piece3 {
        transform: translate(50px, 0px);
    }
    .career-puzzle .puzzle-wrapper .piece1 {
        transform: translate(-5px, -10px);
    }
    .career-puzzle .puzzle-wrapper .piece2 .inner {
        background-position: -297px -107px;
    }
    .career-puzzle .puzzle-wrapper .piece1 .inner {
        background-position: -10px -121px;
    }
    /* location details */
    .location-details-banner .locationdetails-heading p {
        font-size: 18px;
    }
    .featurelistdetails-img .locationdetails-main-img-box {
        width: 100%;
    }
    .locationdetails-container .detailed-content {
        padding: 0px 10px;
    }
    .image-appears{
        flex-direction: column;
    }
    .slider-counter-content h5 {
        flex-direction: column;
    }
     .two-small {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .slick-gallery {
        width: 100%;
    }
    .slick-next.slider-arrow {
        right: -5px;
    }
    .slick-prev.slider-arrow {
        left: -10px;
    }
    .next-more-icon{
        flex-direction: column;
        padding-bottom: 20px;
    }
    .gallery-page h3,
    .gallery-site-banner h3 {
        font-size: 36px;
        line-height: 48px;
    }
    
}

@media (min-width: 375px) and (max-width: 425px) {

    .puzzle-wrapper,
    .video-puzzle-wrapper {
        margin-left: 30px !important;
    }

    .puzzle-text {
        transform: translateX(0%);
    }
}

@media (max-width: 320px) {
    .heading-wrapper {
        margin-top:100px;
    }
    .main-heading h4 {
        margin-top:18px;
    }
    /* clients */
    .clients-row {
        gap: 0px;
    }

    /* certificates */
    .certificate-text h3 {
        font-size: 18px;
    }

}

@media (max-width: 290px) {

    /*projects  */
    .projects-text p {
        width: 100%;
    }

    .project-feature h4 {
        width: 100%;
        font-size: 18px;
    }

    .puzzle-wrapper .piece1,
    .video-puzzle-wrapper .piece1 {
        width: 95px;
        transform: translate(10px, -10px);
    }

    .puzzle-wrapper .piece2,
    .video-puzzle-wrapper .piece2 {
        width: 95px;
        transform: translate(-159px, -50px);
    }

    .puzzle-wrapper .piece3,
    .video-puzzle-wrapper .piece3 {
        width: 100px;
        transform: translate(5px, 0px);
    }

    .puzzle-wrapper .piece4,
    .video-puzzle-wrapper .piece4 {
        width: 95px;
        transform: translate(-158px, -95px);
    }

    .projects .puzzle-wrapper:hover .piece1 {
        transform: translate(-20px, -22px);
        height: 220px;
        width: 120px;
    }

    .projects .puzzle-wrapper:hover .piece2 {
        transform: translate(-171px, -22px);
        height: 208px;
    }

    .projects .puzzle-wrapper:hover .piece3 {
        width: 120px !important;
        height: 136px;
    }

    .projects .puzzle-wrapper:hover .piece4 {
        transform: translate(-171px, -70px);
        width: 95px;

    }

    .puzzle-text {
        transform: translateX(-60%);
    }
}

@media (hover: hover) and (pointer: fine) {
    .highlights-slider:hover .highlights-box {
        transform: rotate(0deg) translateX(0) !important;
        margin-right: 165px !important;
    }

    .highlights-slider:hover {
        margin-right: 0 !important;
        padding: 200px 0 !important;
    }
}