#page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #f4f4fc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: opacity .5s, visibility .5s;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-rocks {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 64px;
}

.loader-rocks span:nth-child(1) {
    width: 18px;
    height: 22px;
    background: #343273;
    border-radius: 4px 10px 3px 7px;
    animation: rockBounce 1.4s ease-in-out infinite;
    animation-delay: 0s;
}

.loader-rocks span:nth-child(2) {
    width: 14px;
    height: 16px;
    background: #4a4790;
    border-radius: 7px 3px 8px 2px;
    animation: rockBounce 1.4s ease-in-out infinite;
    animation-delay: .12s;
}

.loader-rocks span:nth-child(3) {
    width: 24px;
    height: 30px;
    background: #343273;
    border-radius: 3px 9px 4px 6px;
    animation: rockBounce 1.4s ease-in-out infinite;
    animation-delay: .24s;
}

.loader-rocks span:nth-child(4) {
    width: 10px;
    height: 13px;
    background: #625ED9;
    border-radius: 6px 2px 7px 3px;
    animation: rockBounce 1.4s ease-in-out infinite;
    animation-delay: .36s;
}

.loader-rocks span:nth-child(5) {
    width: 20px;
    height: 25px;
    background: #4a4790;
    border-radius: 5px 8px 2px 9px;
    animation: rockBounce 1.4s ease-in-out infinite;
    animation-delay: .48s;
}

.loader-rocks span:nth-child(6) {
    width: 12px;
    height: 15px;
    background: #625ED9;
    border-radius: 2px 6px 8px 3px;
    animation: rockBounce 1.4s ease-in-out infinite;
    animation-delay: .60s;
}

.loader-rocks span:nth-child(7) {
    width: 22px;
    height: 28px;
    background: #343273;
    border-radius: 8px 3px 5px 7px;
    animation: rockBounce 1.4s ease-in-out infinite;
    animation-delay: .72s;
}

.loader-bar {
    width: 200px;
    height: 6px;
    background: #e8e6f5;
    border-radius: 3px;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #343273, #625ED9);
    animation: fillRoad 1.8s ease-in-out forwards;
}

@keyframes rockBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: .7
    }

    50% {
        transform: translateY(-18px) rotate(-5deg);
        opacity: 1
    }
}

@keyframes fillRoad {
    to {
        width: 100%;
    }
}
/* loading end */
.clients {
    padding: 100px 0;
    position: relative;
}

.clients::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    /* width: auto;
    height: auto; */
    background-image: url("../assets/images/client1.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 250px;
    height: 300px;
    filter: opacity(30%);
    z-index: -1;
}

.client-img {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.client-img img {
    width: clamp(75px, 20vw, 150px);
    height: auto;
    margin: 10px;
}

.clients .hero-cta {
    justify-content: center;
}
.clients .hero-cta .secondary-btn {
    border: 1px solid var(--main-color);
}



/* contact_us */
.contact-title {
    color: #353272;
    font-weight: 600;
    font-size: clamp(25px, 4vw, 35px);
    margin-bottom: 20px;
}

.contact-us form {
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    background: var(--white-color);
    border-radius: 20px;
    padding: 30px;
}

.contact-us label {
    font-size: 20px;
    color: #343273;
    font-weight: 600;
    margin-bottom: 10px;
}
/* .contact-us form .input-group{
    justify-content: flex-end;
} */
.contact-us form input, .contact-us form textarea{
    width: 100%;
    padding: 10px;
    background-color: #625ED91A;
    border-radius: 20px !important;
    font-size: 16px;
    border: none;
    text-align: left;
}

.contact-us form input:focus,
.contact-us form textarea:focus {
    outline: none;
    border: 1px solid var(--main-color);
}

.contact-us form textarea {
    resize: none;
    height: 150px;
}

.contact-us form .main-btn {
    margin: 0 auto;
    padding: 10px 100px;
}

.map {
    margin-top: 60px;
}

.map iframe {
    height: clamp(300px, 50vw, 620px);
}

#service-request .modal-body,
#contactUs .modal-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
}

#service-request .title,
#contactUs .title {
    display: flex;
    justify-content: flex-end;
}

#service-request .modal-body .closeModal,
#contactUs .modal-body .closeModal {
    color: var(--main-color);
    width: 30px;
    height: 30px;
    background-color: transparent;
    font-size: 22px;
    transition: .5s;
}

.modal-body .img {
    width: 60px;
    height: 60px;
}

.modal-content-body {
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/*  Our Services */
.ourServices {
    margin-top: 80px;
    margin-bottom: 80px;
    background-image: url('../assets/images/bg-Section.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.ourServices .heading-title{
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 20px;
        padding-bottom: 40px;
        color: var(--main-color);
        background-color: transparent;
}
/* h2{
            font-size: 24px;
            font-weight: 700;
        } */
.ourServices-content{
    margin-top: 40px;
}

.ourServices-item{
    height: 470px;
    position: relative;
    perspective: 1000px;
}

.ourServices-img{
    height: 100%;
}

.ourServices-img img {
    height: 100%;
    width: 95%;
    object-fit: cover;
    border-radius: 25px;
    transform: skewX(-4deg);
}




.ourServices-text-container {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    overflow: hidden;
}

.ourServices-text {
    mask-image: url('../assets/images/mask-serviceCard.webp');
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    width: 100%;
    height: 85%;
    background: linear-gradient(180deg, #343273 0%, #625ED9 100%);
    color: var(--white-color);
    text-align: center;
    position: absolute;
    bottom: 0;
    right: -34px;
    overflow: visible;
    z-index: 1;
}

.ourServices-text-content {
    position: absolute;
    top: 27%;
    right: 10%;
    width: 43%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: white;
}

.ourServices-text-content .icon{
    width: 70px;
    height: 70px;
}

.ourServices-text-content h3 {
    font-size: 22px;
    width: 100%;
    text-align: left;
    position: relative;
}

.ourServices-text-content h3::after {
    content: '';
    display: block;
    width: 30%;
    height: 2px;
    background-color: #353272;
    margin-top: 10px;
    position: absolute;
    bottom: -7px;
    left: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.ourServices-text-content p {
    font-size: 16px;
    text-align: left;
    height: 70%;

    overflow: hidden;

    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

.ourServices-text-content .read-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
}

.ourServices-text-content i {
    font-size: 14px;
    font-weight: 700;
    color: var(--white-color);
    transition: all 0.3s ease;
    background-color: var(--main-color);
    padding: 5px;
    border-radius: 50%;
}

.ourServices-text-content .read-more:hover i {
    transform: translateX(10px);
}



/* ************************************************* */
.ourServices-item .card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}
.ourServices-item.active .card-inner {
    transform: rotateY(180deg);
}
.ourServices-item .card-front,
.ourServices-item .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backface-visibility: hidden;
}
.ourServices-item .card-front {
    z-index: 2;
}
.ourServices-item .card-back{
    position: absolute;
    inset: 0;
    transform: rotateY(180deg);
    background: linear-gradient(180deg, #343273 0%, #625ED9 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    color: var(--white-color);
    backface-visibility: hidden;
}
.ourServices-item .back-content {
    width: 100%;
    text-align: center;
    height: 95%;
    overflow: auto;
    padding-bottom: 15px;
    /* scrollbar-width: none; */
}
/* .ourServices-item .back-content::-webkit-scrollbar {
    display: none;
} */
.ourServices-item .back-content h3 {
    margin-bottom: 20px;
}
.ourServices-item .back-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    padding-right: 10px;
}
.ourServices-item .back-btn {
    color: var(--main-color);
    font-weight: bold;
}
.ourServices-item .back-btn img {
    width: 20px;
    height: 20px;
    background-color: var(--main-color);
    border-radius: 50%;
    padding: 2px;
}



/*! ============================= About-US =============================  */
.about-Us {
    background-color: var(--bg-color);
    /* overflow: hidden; */
    padding-bottom: 0 !important;
}

.about-Us .about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 9;
}

.about-Us .about-content h3 {
    display: flex;
    flex-direction: column;
    font-size: clamp(25px, 4vw, 40px);
    font-weight: 600;
    position: relative;
    z-index: 9;
}

.about-Us .about-content h3 span {
    color: var(--main-color);
}
.about-Us .about-content .desc {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.about-Us .about-content p {
    font-size: clamp(15px, 2vw, 20px);
    font-weight: 400;
    color: var(--text-color);
    padding-right: 80px;
}

.about-Us .info-card {
    background-color: var(--white-color);
    padding: 15px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    height: 100%;

    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Card */
.about-Us .info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(52, 50, 115, 0.15);
}

.about-Us .info-card .image {
    transition: 0.4s ease;
}

.about-Us .info-card:hover .image {
    transform: scale(1.1) rotate(5deg);
    background-color: rgba(98, 94, 217, 0.3);
}

.about-Us .info-card .image {
    width: 50px;
    height: 50px;
    background-color: rgba(98, 94, 217, 0.2);
    padding: 5px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-Us .info-card .image img {
    width: 35px;
    height: 35px;
}

.about-Us .info-card h3 {
    color: var(--main-color);
    font-size: clamp(23px, 4vw, 30px);
    font-weight: 500;
}

.about-Us .info-card p {
    font-size: clamp(13px, 3vw, 16px);
    color: var(--text-color);
    line-height: 1.9;
}

.about-Us .image-box {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    position: relative;
    width: 320px;
    margin-left: auto;
}

.about-Us .image-box .man-about {
    position: absolute;
    left: -180px;
}

.about-Us .image-box img.aboutUs-1,
.about-Us .image-box img.aboutUs-2 {
    border-radius: 20px;
    border: 4px solid #fff;
    object-fit: cover;
}

.about-Us .image-box img.aboutUs-1 {
    width: 280px;
    height: 300px;
    transform: skew(-5deg, 0);
}

.about-Us .image-box img.aboutUs-2 {
    width: 220px;
    height: 200px;
    transform: skew(-5deg, 0deg);
    align-self: end;
    position: absolute;
    top: 75%;
    right: 20px;
    z-index: 9;
}

.about-Us .image-box::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: var(--main-color);
    right: 15px;
    top: 110%;
    border-radius: 30px;
    transform: skew(-10deg, 0deg);
    z-index: 9;
}

.about-Us .experience-badge {
    width: 150px;
    height: 150px;
    background-color: var(--white-color);
    border-radius: 50%;
    padding: 5px;
    position: absolute;
    bottom: -35px;
    left: -15px;
    z-index: 9;
}

.about-Us .experience-badge .experience-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #000;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    padding: 10px 5px;
    text-align: center;
}

.about-Us .experience-badge .experience-info .label {
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 700;
}

.about-Us .experience-badge .experience-info .year {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
    color: var(--main-color);
}

.about-Us .experience-badge .experience-info p {
    font-size: clamp(14px, 3vw, 16px);
}

/*! ============================= Stats-section =============================  */
.about-Us .stats-section {
    background-image: linear-gradient(to right, rgba(52, 50, 115, 1), rgba(98, 94, 217, 1));
    padding: 25px 0;
    margin-top: 30px;
}

.about-Us .stats-section .stats-container {
    display: flex;
    color: var(--white-color);
    justify-content: space-evenly;
    align-items: center;
    gap: 10px;
}

.about-Us .stats-section .stats-container .stat-card {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.about-Us .stats-section .stats-container .stat-card .image {
    width: 40px;
    height: 40px;
    background-color: rgba(98, 94, 217, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-Us .stats-section .stats-container .stat-card .image img {
    width: 35px;
    height: 35px;
}

.about-Us .stats-section .stats-container .stat-card .stat-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-Us .stats-section .stats-container .stat-card .stat-info .stat-number {
    font-size: 25px;
    font-weight: 600;
}

.about-Us .stats-section .stats-container .stat-card .stat-info .stat-label {
    font-size: 20px;
    font-weight: 100;
}

/*! ============================= Our-Equipment =============================  */
.our-equipment {
    position: relative;
}

.our-equipment::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../assets/images/bg-Section.svg");
    background-size: cover;
    background-position: center;
    transform: scaleX(-1);
    z-index: -1;
}

.our-equipment .equipment-card figure,
.projects .project-card figure {
    width: 100%;
    height: 314px;
    position: relative;
    overflow: hidden;
}

.our-equipment .equipment-card figure img,
.projects .project-card figure img {
    border-radius: 30px;
    object-fit: cover;
}

/* Layer */
.our-equipment .equipment-card figure .layer {
    position: absolute;
    inset: 0;
    background-color: rgba(53, 50, 114, 0.6);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition:
        transform 0.6s ease 0.4s,
        opacity 0.6s ease 0.4s; */
}

.our-equipment .equipment-card figure .layer p {
    color: var(--white-color);
    font-size: clamp(25px, 3vw, 40px);
    font-weight: 600;
    /* opacity: 0;
    transform: translateX(-200px);
    transition: 0.4s ease; */
}

/** Hover In */
/* .our-equipment .equipment-card:hover .layer {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    transition-delay: 0s;
}

.our-equipment .equipment-card:hover .layer p {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.5s;
} */

/** Hover Out */
/* .our-equipment .equipment-card:not(:hover) .layer p {
    opacity: 0;
    transform: translateX(200px);
} */

/*! ============================= Projects =============================  */
.projects,
.contact-us {
    background-image: url("../assets/images/bg-Section.svg");
    background-position: center;
    background-size: cover;
}

.projects .project-card {
    height: 360px;
}

.projects .project-card figure {
    height: 100%;
    border-radius: 30px;
    transition: 0.5s ease;
    box-shadow: 0px 3px 4px #00000042;
}

.projects .project-card figure img:not(.icon-img img) {
    transition: 0.5s ease;
}

.projects .project-card figure .layer {
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 120px;
    background-color: rgba(221, 221, 239, 1);
    font-size: 18px;
    padding: 20px;
    color: rgba(0, 0, 0, 0.8);
    border-radius: 20px 20px 30px 30px;
    transition: .5s;
}

.projects .project-card figure .layer .icon-img {
    width: 55px;
    height: 55px;
    background-color: var(--white-color);
    border-radius: 50%;
    position: absolute;
    bottom: 90%;
    left: 50%;
    transform: translateX(-50%);
}

.projects .project-card figure .layer .icon-img img {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.projects .project-card:hover figure img:not(.icon-img img) {
    transform: scale(1.08);
}

/*! ============================= About-US & Projects & Equipment Pages =============================  */
.bg-body {
    /* position: relative; */
    background-image: url("../assets/images/bg-Section.svg");
    background-position: center;
    background-size: cover;
}
/* .bg-body::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-image: url("../assets/images/bg-Section.svg");
    background-size: cover;
} */

/* About-US */
.our-identitySec,
.core-valuesSec {
    padding-bottom: 30px !important;
}
.our-identitySec .main-title,
.core-valuesSec .main-title {
    width: 100%;
}
.our-identitySec .main-title .title,
.core-valuesSec .main-title .title {
    margin: 0 auto 0 0;
}

/* Projects & Equipment */
.projectsPage .main-title,
.equipmentPage .main-title {
    width: 100%;
}
.projectsPage .main-title .info,
.equipmentPage .main-title .info {
    align-items: start;
    text-align: left;
}
.projectsPage .main-title .info h3 {
    font-size: clamp(25px, 3vw, 30px);
    font-weight: 600;
}
.projectsPage .main-title .info h3 span {
    color: var(--main-color);
}




/* our-team page */
.team-main {
    margin-top: 80px;
    background-image: url('../assets/images/bg-Section.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.team-card {
    height: clamp(100px, 20vw, 150px);
    display: flex;
    align-items: center;
    gap: clamp(15px, 3vw, 40px);
    background-color: #3432731A;
    ;
    padding: 15px;
    border-radius: 15px 15px 0 15px;
    transition: 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.our-team .main-title {
    width: 100%;
}

.our-team .main-title .info {
    align-items: baseline;
    text-align: left;
}

.team-card .img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.team-card img {
    width: 100%;
    height: 100%;
}

.team-card-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding-left: 20px;
}
.timeline-row .team-card-content{
    gap: 0;
}

.team-card-content span {
    font-weight: 500;
    font-size: clamp(18px, 3vw, 32px);
    color: var(--main-color);
}

.team-card-content p {
    font-size: clamp(14px, 3vw, 24px);
    color: var(--text-color);
}


.timeline-wrapper {
    position: relative;
    margin: auto;
    padding: 100px 0 0 0;
}

.team-content {
    padding: 50px 0;
    text-align: center;
    font-weight: 500;
    font-size: clamp(18px, 3vw, 32px);
    color: var(--main-color);
}

.center-line {
    position: absolute;
    left: 50%;
    top: 300px;
    transform: translateX(-50%);
    width: 2px;
    height: stretch;
    background: var(--main-color);
    transform-origin: top;
    animation: growLine 2s ease infinite;
}
.timeline-row .card-box{
    gap: 8px;
}
.timeline-row .card-box .team-card-content h6{
    font-size: clamp(16px, 3vw, 22px);
}
.timeline-row .card-box .team-card-content p{
    font-size: clamp(14px, 3vw, 18px);
    width: 85%;
}
.timeline-row .card-box .team-card-content{
    padding-left: 0;
}
.timeline-row .card-box .img{
    width: 50px;
    height: 50px;
}

@keyframes growLine {
    from {
        transform: translateX(-50%) scaleY(0);
    }

    to {
        transform: translateX(-50%) scaleY(1);
    }
}

.timeline-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 18px;
    position: relative;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--main-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(91, 87, 166, .7);
    }

    70% {
        transform: translateX(-50%) scale(1.2);
        box-shadow: 0 0 0 12px rgba(91, 87, 166, 0);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

.card-box {
    display: flex;
    align-items: center;
    gap: clamp(15px, 3vw, 40px);
    background-color: #3432731A;
    border-radius: 15px 15px 0 15px;
    transition: 0.4s ease;
    height: stretch;
    width: 42%;
    padding: 15px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    min-height: 75px;
    align-items: baseline;
}

.card-box-img {
    background: var(--main-color);
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    overflow: hidden;
    clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
}

.card-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-box .team-card-content {
    align-items: flex-start;
}

.card-box h6 {
    color: #1e1e1e;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 700;
}

.card-box p {
    color: #777;
    font-size: 12px;
    margin: 0;
    line-height: 1.5;
}

.left::after,
.right::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 80px;
    height: 2px;
    transform: translateY(-50%);
    background: repeating-linear-gradient(to right,
            var(--main-color) 0 8px,
            transparent 8px 16px);
    animation: moveLine 2s linear infinite;
}

.left::after {
    right: -80px;
}

.right::before {
    left: -80px;
}

@keyframes moveLine {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 16px 0;
    }
}

@media(max-width:768px) {

    .center-line {
        left: 20px;
        height: 80%;
    }

    .card-box p {
        width: 70%;
    }

    .timeline-row {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px;
    }

    .card-box {
        width: 100%;
        flex-direction: column;
        margin-bottom: 15px;
    }

    .dot {
        left: 20px;
    }

    .left::after,
    .right::before {
        display: none;
    }
}


.tables-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-bottom: 100px;
}

.table-box h2 {
    color: #34347d;
    margin-bottom: 15px;
    font-size: clamp(16px, 3vw, 22px);
    font-weight: 700;
}

table {
    width: 100%;
    height: 100%;
    border-collapse: collapse;
    background: #3432733d;
}

th,
td {
    /* border: 1px solid #8f91c9; */
    padding: 14px 10px;
    text-align: center;
    color: #333;
    font-size: 15px;
}

tr {
    border: 1px solid #625ed99d;
}

tbody tr td:first-child {
    color: #000000E5;
    font-weight: 700;
}

th {
    color: #34347d;
    font-weight: 700;
}

td:nth-child(2) {
    text-align: left;
    padding-left: 20px;
}

@media(max-width:992px) {
    .tables-wrapper {
        grid-template-columns: 1fr;
    }
}

/* our-team page end */
.service-main{
    margin-top: 80px;
    background-image: url('../assets/images/bg-Section.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.client-main {
    margin-top: 80px;
    background-image: url('../assets/images/bg-Section.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.client-main .row .col-md-3 img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

.client-main .main-title p,
.service-main .main-title p {
    padding-right: 0;
}
.service-main .main-title{
    width: 100%;
}
.service-main .main-title .info {
    align-items: baseline;
    text-align: left;
}

.client-main .hero-cta {
    justify-content: center;
}
