.section-services .slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 0 70px;
    --gap: 25px;
}
.section-services .services-slider {
    display: flex;
    align-items: stretch;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: max-content;
    gap: var(--gap);
}
.section-services .services-slider .slide {
    box-sizing: border-box;
    height: auto; 
    display: flex; 
}
.section-services .service-card {
    background: var(--white);
    border-radius: var(--br-30);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    text-decoration: none;
    width: 100%;
}
.section-services .service-card .card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    flex-shrink: 0;
    z-index: 1;
    overflow: hidden;
}
.section-services .service-card .card-img::before,
.section-services .service-card .card-img::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 55%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.55s ease;
}
.section-services .service-card .card-img::before {
    right: 50%;
    transform: translateX(80%);
}
.section-services .service-card .card-img::after {
    left: 50%;
    transform: translateX(-80%);
}
.section-services .service-card:hover .card-img::before {
    opacity: 1;
    transform: translateX(-20%);
}
.section-services .service-card:hover .card-img::after {
    opacity: 1;
    transform: translateX(20%);
}
.section-services .service-card .card-img picture,
.section-services .service-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.section-services .service-card:hover .card-img img {
    transform: scale(1.1);
}
.section-services .service-card .card-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--global-color-primary-light-orange);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding: 12px;
}
.section-services .service-card .card-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--white);
}
.section-services .service-card .card-body {
    position: relative;
    inset: unset;
    background: var(--white);
    padding: 22px;
    border-radius: 0;
    z-index: 2;
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1; /* bacha hua space le, content ke hisaab se grow karega */
}
.section-services .service-card:hover .card-body {
    transform: translateY(-5px);
}
.section-services .service-card .card-body .card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.section-services .pagination-lines {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    line-height: 1;
}
.section-services .pagination-lines .line {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: var(--br-p50);
    background: var(--white);
    border: 1px solid var(--global-color-primary-border);
    cursor: pointer;
    transition: all 0.3s ease;
}
.section-services .pagination-lines .line.active {
    background: var(--global-color-primary-light-orange);
    border-color: var(--global-color-primary-light-orange);
    transform: scale(0.9);
}
@media (min-width: 768px) {
    .section-services .services-slider .slide {
        height: unset;
    }
    .section-services .service-card {
        aspect-ratio: 4 / 5;
        height: 100%;
    }
    .section-services .service-card .card-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        aspect-ratio: unset;
        flex-shrink: unset;
    }
    .section-services .service-card .card-body {
        position: absolute;
        bottom: 15px;
        left: 15px;
        right: 15px;
        top: 48%;        
        border-radius: 20px;
        flex: unset;
        max-height: unset;
        overflow: hidden;
    }
}
@media (min-width: 992px) {
        .section-services .service-card .card-body {
        position: absolute;
        bottom: 15px;
        left: 15px;
        right: 15px;
        top: 65%; 
        border-radius: 20px;
        flex: unset;
        max-height: unset;
        overflow: hidden;      
    }
}
@media (min-width: 1024px) {
    .section-services .service-card {
        aspect-ratio: 4 / 4.8;
    }
    .section-services .service-card .card-body {
        top: 62%;
    }
    .section-services .service-card .card-body .card-desc {
        display: block;
        -webkit-line-clamp: unset;
        overflow: visible;
    }
}.section-whyus .row-1 {
    align-items: center;
}

.section-whyus .row-1 .col-a .cards-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}
.section-whyus .row-1 .col-a .card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: var(--br-20);
    background-color: var(--global-color-primary-lightest-gray);
}
.section-whyus .row-1 .col-a .card .card-icon {
    background-color: var(--global-color-primary-light-orange);
    border-radius: var(--br-p50);
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 54px;
    min-height: 54px;
}
.section-whyus .row-1 .col-a .button-area {
    margin-top: 30px;
}
.section-whyus .row-1 .col-b {
    max-width: 628px;
    margin: 0 auto;
}
.section-whyus .row-1 .col-b .right-content {
    position: relative;
}
.section-whyus .row-1 .col-b .image-container {
    max-height: 580px;
    overflow: hidden;
    border-radius: var(--br-20);
}
.section-whyus .row-1 .col-b .image-container img {
}
.section-whyus .row-1 .col-b .card-absolute {
    display: none;
}

.section-whyus.nocard-absolute .row-1 .col-b .card-absolute{
    display:none;
}
@media (min-width: 576px) {
    .section-whyus .row-1 .col-a .card {
        flex-direction: row;

    }
}
@media (min-width: 768px) {
    .section-whyus .row-1 .col-b .card-absolute {
        position: absolute;
        display: flex;
        flex-direction: column;
        gap: 15px;
        bottom: 0;
        right: 0;
        max-width: 280px;
        padding: 30px;
        outline: 10px solid var(--white);
        border-radius: var(--br-20);
        background: var(--background-linear-card-blue);
        z-index: 1;
    }
    .section-whyus .row-1 .col-b .card-absolute .card-img img {
        max-width: 110px;
    }
    .section-whyus .row-1 .col-b .card-absolute .card-body h3 {
        color: var(--white);
    }
    .section-whyus .row-1 .col-b .card-absolute .card-body p {
        margin-top: 15px;
        padding-top: 15px;
        color: var(--white);
        border-top: 1px solid var(--global-color-divider);
    }
}

@media (min-width: 1024px) {
    .section-whyus .row-1 .col-b {
        padding-top: 0;
    }
    .section-whyus .row-1 .col-b .card-absolute {
        bottom: 0px;
        right: 0px;
    }
}.section-contactbanner .banner-wrapper {
    background-color: var(--global-color-primary-lightest-gray);
    border-radius: var(--br-30);
    overflow: hidden;
}
.section-contactbanner .col-a {
    position: relative;
    order: 2;
}

.section-contactbanner .image-container {
    width: 100%;
}
.section-contactbanner .image-container picture,
.section-contactbanner .image-container img {
    height: 100%;
    max-height: 250px;
    object-fit: cover;
}
.section-contactbanner .icon-overlap {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.section-contactbanner .icon-circle {
    padding: 10px;
    background-color: var(--global-color-primary-light-orange);
    border-radius: var(--br-p50);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--white);
}
.section-contactbanner .icon-circle svg {
    width: 30px;
    height: 30px;
}
.section-contactbanner .col-b {
    padding: 30px;
    align-items: center;
}
.section-contactbanner .col-b .content-body .h2-default-heading {
    margin-bottom: 0;
    max-width: 100%;
}
@media (min-width: 768px) {

}
@media (min-width: 992px) {
    .section-contactbanner .col-b {
        order: 2;
    }
    .section-contactbanner .image-container {
        height: 100%;
    }
    .section-contactbanner .icon-overlap {
        bottom: auto;
        top: 50%;
        left: auto;
        right: -30px;
        transform: translateY(-50%);
    }
    .section-contactbanner .image-container picture, .section-contactbanner .image-container img{
        max-height: none;
    }
}
@media (min-width: 1024px) {
    .section-contactbanner .icon-circle {
        padding: 20px;
    }
    .section-contactbanner .icon-circle svg {
        width: 40px;
        height: 40px;
    }
    .section-contactbanner .icon-overlap {
        right: -50px;
    }
    .section-contactbanner .col-b {
        padding: 40px;
    }
}.section-projects .heading-area {
    margin-bottom: 40px;
}
.section-projects .h2-default-heading{
    margin-bottom: 0;
}
.section-projects .slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 0 70px;
    --gap: 25px;
}
.section-projects .projects-slider {
    display: flex;
    transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: var(--gap);
}
.section-projects .projects-slider .slide {
    flex-shrink: 0;
    transition: all 0.5s ease;
    transition: transform 1.5s ease, opacity 1.5s ease;
    opacity: 0.6;
    transform: scale(0.85);
    width: 100%;
}
.section-projects .projects-slider .slide.active {
    opacity: 1;
    transform: scale(1);
}
.section-projects .project-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--br-30);
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    aspect-ratio: 380 / 474;
}

.section-projects .project-card .image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 380 / 474;
    overflow: hidden;
}

.section-projects .project-card .image-wrapper picture,
.section-projects .project-card .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.section-projects .project-card:hover .image-wrapper img {

}
.section-projects .project-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: var(--background-linear-card-light);
    z-index: 2;
}
.section-projects .project-card .project-title {
    color: var(--white);
}
.section-projects .project-card .project-category,
.section-projects .project-card .project-city,
.section-projects .project-card .project-date {
    color: var(--white);
    font-size: var(--fs-12);
    line-height: var(--lh-md);
}
.section-projects .pagination-lines {
    display: none;
}
.section-projects .pagination-lines {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    line-height: 1;
}
.section-projects .pagination-lines .line {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: var(--br-p50);
    background: var(--white);
    border: 1px solid var(--global-color-primary-border);
    cursor: pointer;
    transition: all 0.3s ease;
}
.section-projects .pagination-lines .line.active {
    background: var(--global-color-primary-light-orange);
    border-color: var(--global-color-primary-light-orange);
    transform: scale(0.9);
}
.section-projects .row-3 .col-a {
    text-align: center;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .section-projects .pagination-lines {
        display: flex;
    }
}

@media (min-width: 992px) {
    .section-projects .heading-area {
        align-items: center;
    }
}
