/* Header Css  */
.site-header {
    position: relative;
    width: 100%;
    z-index: 99;
    /* background: var(--body-color); */
}

.site-header::before {
    content: "";
    position: absolute;
    background-image: url(../img/header-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 70%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
}

.site-header::after {
    content: "";
    position: absolute;
    border-bottom: 3px solid var(--secondary-color);
    background-size: cover;
    width: 48%;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.site-header .mobile-header {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    right: 0;
    padding: 100px 40px 20px;
    background-color: var(--extra-color-10);
    min-height: 100%;
    transform: translateX(100%);
    transition: 0.2s;
    z-index: 9999;
}

.header-logo .logo-here {
    object-fit: cover;
    width: 100%;
}

.head-link {
    border-top: 3px solid #bbbcbc;
    list-style: none;
    font-size: 10px;
    gap: 60px;
}

.head-link li {
    padding-left: 30px;
}

.head-link li:first-child {
    list-style: none;
    padding-left: 0px;
}

@media (min-width: 1700px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1530px;
    }
}

/* Laptop Responsive  */
@media(max-width:1200px) {
    .head-link {
        gap: 40px;
    }

    .header-logo .logo-here {
        max-width: 220px;
    }
}

@media (max-width: 992px) {
    .site-header .mobile-header.active {
        transform: translateX(0);
    }

    .banner .banner-inner-content {
        padding-left: 0px;
    }
}

/* Mobile Responsive  */

@media(max-width:576px) {
    .header-logo .logo-here {
        max-width: 160px;
    }
}

/* Mobile Responsive  */

/* Header Css  */

/* banner Css  */
.banner-inner-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.heading-bg {
    font-family: var(--secondary-regular-font);
}

.banner::after {
    content: "";
    position: absolute;
    background-image: url(../img/banner-bottom.png);
    background-repeat: no-repeat;
    width: 100%;
    height: 190px;
    bottom: -16px;
    background-size: cover;
    z-index: 9;
}

.banner-wrapper {
    display: flex;
    justify-content: center;
    align-items: start;
}


.banner .swiper-banner {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.banner .swiper-pagination {
    position: absolute;
    /* top: 0; */
    bottom: 180px;
    right: 30px;
    width: 130px;
    left: unset;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    margin: auto;
    transform: rotate(48deg);
    height: 150px;
}

.swiper-line {
    position: relative;
}

.swiper-line::after {
    content: '';
    background-color: #fff;
    width: 70px;
    height: 2px;
    position: absolute;
    left: 35px;
    bottom: 3rem;
    transform: rotate(90deg);
    z-index: 99;
}

.banner .swiper-banner .swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 12px;
    color: var(--body-color);
}

.banner .swiper-pagination-bullet {
    padding: 0px 5px;
    border-radius: 0;
    width: auto;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 19px;
    font-family: var(--primary-bold-font);
    color: var(--body-color);
    opacity: 1;
    background: transparent;
    position: relative;
    transition: 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px !important;
}

.banner .swiper-pagination-bullet-active span.bullet-number {
    display: block;
    font-size: 34px;
    color: var(--extra-color-1);
    transform: rotate(311deg);
}

.banner .swiper-pagination-bullet-active:before {
    content: "";
    position: absolute;
    transform: rotate(-45deg);
    border-radius: 0;
}

.banner .swiper-pagination-bullet-active {
    color: var(--body-color);
    background: transparent;
    font-size: 32px;
    font-family: var(--primary-bold-font);
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px !important;
}

span.bullet-number {
    font-size: 12px;
    color: #fff;
    position: absolute;
    top: unset;
    /* display: none; */
    /* bottom: -20px; */
    transform: rotate(310deg);
    /* left: -10px; */
}

.banner-social-links {
    z-index: 9;
    height: fit-content;
    margin: auto;
    padding-bottom: 20px;
}

.active-slide-number {
    display: inline-block;
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: bold;
}

.banner-icon {
    background: transparent;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    position: relative;
}

.banner-icon::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0px;
    left: 0px;
    border: 1px solid var(--extra-color-1);
    border-radius: 50%;
    width: 100%;
    z-index: 1;
    height: 100%;
    transform: rotate(311deg);
    clip-path: inset(0 50% 0 0);
    display: none;
}

.banner-icon:hover {
    background: #ebf4fe1c;
    color: var(--primary-color);
}

.banner-icon:hover::after {
    display: block;
}

.heading-bg:before {
    content: "";
    position: absolute;
    background: linear-gradient(45deg, #b22234, transparent);
    width: 60%;
    height: 85px;
    z-index: -1;
    left: -10px;
    bottom: 0;
    top: 0;
    margin: auto;
}

.about-heading::after {
    content: "";
    position: absolute;
    background: var(--primary-color);
    width: 70px;
    height: 4px;
    display: block;
    bottom: 0px;
    left: -10px;
    border-radius: 2px;
}

.experience-sign-img {
    top: 0;
    z-index: 99;
    width: fit-content;
}

/* Banner Section End Here */

/* expert-section Css  */

.expert-section {
    padding: 90px 0 68px;
}

.expert-wrapper::before {
    content: "";
    position: absolute;
    background-color: var(--extra-color-7);
    width: 60px;
    height: 60px;
    top: -30px;
    left: 60px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.expert-wrap::after {
    content: "";
    position: absolute;
    background-color: #e8eaed;
    width: 100%;
    height: 150px;
    top: 0px;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: -1;
    border-radius: 20px;
}

/* about-section Css  */

.about-section {
    background-image: url(../img/about-bg.png);
}

.about-section::before {
    content: "";
    position: absolute;
    background-image: url(../img/about-left-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 290px;
    height: 330px;
    bottom: 50px;
    left: 10rem;
    z-index: 99;
    animation-name: float_up_down;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.about-section::after {
    content: "";
    position: absolute;
    background-image: url(../img/about-right-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 90px;
    height: 210px;
    bottom: 180px;
    right: 0;
    z-index: -1;
}

.call_img {
    animation-name: float_up_down;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.cell-no:hover {
    color: var(--secondary-color);
}

.about_fig::before {
    content: "";
    position: absolute;
    background-image: url(../img/about-dashed-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 290px;
    height: 180px;
    bottom: 0;
    margin: auto;
    right: 0;
    z-index: 99;
}

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

    50% {
        transform: translateY(-10px);
        /* Adjust the value for the float effect */
    }

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

/* about-section Css  */

/* service-section Css  */
.service-section {
    padding: 100px 0px 68px;
    /* background-color: var(--extra-color-3); */
    z-index: 1;
}

.service-slider .service-slide {
    margin: 20px 20px 0px;
    border-radius: 20px;
}

.service-slider.slider-sec .slick-prev {
    left: unset;
    right: 8rem;
    top: -40px;
    bottom: unset;
    background-color: #eceef0;
}

.service-slider.slider-sec .slick-prev:before {
    color: var(--secondary-color);
}

.service-slider.slider-sec .slick-next {
    top: -40px;
    bottom: unset;
    right: 4.5rem;
    background: var(--extra-color-1);
}

.service-slider.slider-sec .slick-next:hover::before {
    color: var(--body-color);
}

.service-slide:hover {
    background: var(--extra-color-1);
}

.service-slide:hover .service_hover {
    color: var(--body-color);
}

.service-slide:hover .service-btn-wrap figure img.img-fluid {
    filter: invert(1);
}

.service-slide:hover .btn {
    background: var(--body-color);
    color: var(--primary-color);
    -webkit-text-fill-color: unset;
}


/* Laptop Resposnive  */
@media(max-width:1200px) {
    .service-section {
        padding: 100px 0px 90px;
        margin-top: -220px;
    }

    .service-section::after {
        height: 1320px;
    }
}

/* Tablet Responsvie  */
@media(max-width:991px) {
    .service-section::after {
        height: 1120px;
    }
}

/* Tablet Responsvie  */

/* Mobile Responsive  */
@media(max-width:575px) {
    .service-section::after {
        height: 660px;
    }

    .service-slider .service-slide:nth-child(even) {
        transform: translateY(0px);
    }

    .service-section {
        padding: 100px 0px 40px;
        margin-top: -80px;
    }

    .service-slider .slick-list.draggable {
        padding-bottom: 0;
    }

}

.ml1 .letter {
    display: inline;
    /* line-height: 1em; */
}

.ml1 .text-wrapper {
    position: relative;
    display: inline-block;
    padding-top: 0.1em;
    padding-right: 0.05em;
    padding-bottom: 0.15em;
}

.ml14 .letters,
.ml14 .line,
.ml14 .letter {
    opacity: 1;
}

/* service-section Css  */

/* testimonilas-section Css  */
.testimonials-section {
    padding: 0px 0px 80px;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    background-image: url(../img/client-bg-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 990px;
    top: -24rem;
    z-index: -1;
}

.testi-slider .slick-track {
    padding-top: 120px;
}

.testi-slider .testi-slide {
    background-image: url(../img/review-bg.png);
    border-radius: 24px;
    margin: 0px 100px;
    padding: 70px 190px;
    border: 2px solid var(--body-color);
    opacity: 0.05;
}

.testi-img {
    margin-top: -170px;
}

.testimonials-section .testi-slider .testi-slide.slick-current.slick-active.slick-center {
    opacity: 1;
}

/* testimonilas-section Css  */

/* covered-section Css  */

.covered-section::before {
    content: "";
    position: absolute;
    background-image: url(../img/covered-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 1170px;
    height: 580px;
    top: 160px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-position: center;
    z-index: -1;
}

.covered-img figure {
    background: #f7f8fc;
    background-size: cover;
    width: 210px;
    height: 210px;
    border-radius: 50%;
}

.covered-img figure::before {
    content: "";
    position: absolute;
    background-color: var(--extra-color-2);
    background-size: cover;
    width: 230px;
    height: 230px;
    top: -10px;
    left: -10px;
    z-index: -1;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.covered-top {
    margin-top: 70px;
}

/* covered-section Css  */

/* commercial-section Css  */

.commercial-section::before {
    content: "";
    position: absolute;
    background-image: url(../img/commercial-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 1000px;
    top: -50px;
    z-index: -1;
}

@keyframes background-animate {
    0% {
        background-color: var(--secondary-color);
    }

    33% {
        background-color: var(--extra-color-4);
    }

    66% {
        background-color: var(--primary-color);
    }

    100% {
        background-color: var(--secondary-color);
    }
}

.commercial_fig::before {
    content: "";
    position: absolute;
    background: var(--secondary-color);
    background-size: cover;
    width: 370px;
    height: 660px;
    left: -20px;
    top: -20px;
    border-radius: 50px;
    z-index: -1;
    animation: background-animate 3s ease-in-out infinite;
}

.commercial_fig::after {
    content: "";
    position: absolute;
    border: 4px solid var(--extra-color-6);
    background-size: cover;
    width: 600px;
    height: 560px;
    left: 30px;
    top: 30px;
    border-radius: 50px;
    z-index: 1;
    animation: animate-border1 3s ease-in-out infinite, pulse-border1 2s ease-in-out infinite;
}

@keyframes animate-border1 {
    0% {
        border-width: 3px;
        border-color: var(--extra-color-6);
    }

    50% {
        border-width: 4px;
        border-color: var(--extra-color-2);
    }

    100% {
        border-width: 3px;
        border-color: var(--extra-color-6);
    }
}

@keyframes pulse-border1 {
    0% {
        border-width: 3px;
        border-color: var(--extra-color-6);
    }

    50% {
        border-width: 4px;
        border-color: var(--secondary-color);
    }

    100% {
        border-width: 3px;
        border-color: var(--extra-color-6);
    }
}

/* commercial-section Css  */

/* contact-section Css  */

.contact-section {
    padding: 100px 0px 68px;
    margin: 10rem 0 20px;
}

.contact-section::before {
    content: "";
    position: absolute;
    background-image: url(../img/contact-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 1160px;
    top: -80px;
    right: 0;
    left: 0;
    margin: auto;
    z-index: -1;
}

.contact-section::after {
    content: "";
    position: absolute;
    background-image: url(../img/contact-top-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 390px;
    height: 230px;
    left: 0;
    top: -70px;
    z-index: -1;
}

/* contact-section Css  */

/* footer Css  */

.site-footer {
    padding: 170px 0px 10px;
    background-position: top;
    background-image: url(../img/footer-bg.png);
    margin-top: 65px;
}

.single-item {
    position: relative;
}

.footer-link  .single-item::after {
    content: "";
    position: absolute;
    background: var(--body-color);
    width: 10px;
    height: 2px;
    right: 170px;
    top: 15px;
    bottom: 0;
    margin: auto;
}

.footer-link  .single-item:first-child:after{
    content: unset;
}

/* footer Css  */