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

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

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

.head-link {
    /* list-style: disc; */
    font-size: 10px;
    gap: 50px;
}

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

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

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

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

.btn-arrow {
    background: var(--body-color);
    color: var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo img.img-fluid {
    max-width: 280px;
    object-fit: cover;
    width: 100%;
}

@media (min-width: 1700px) {

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

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

/* Laptop Responsive  */

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

    .header-logo img.img-fluid {
        max-width: 180px;
    }
}

/* Mobile Responsive  */

@media(max-width:576px) {
    .header-logo img.img-fluid {
        max-width: 150px;
    }
}

/* 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%;
}

.banner-img-wrapper {
    position: relative;
    z-index: 1;
}

.banner-img-wrapper::after {
    content: "";
    position: absolute;
    background-image: url(../img/banner-dots.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 70px;
    height: 112px;
    top: 30px;
    right: 40px;
    z-index: -1;
}

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

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

.banner-social-links::before {
    content: "";
    position: absolute;
    background-image: url(../img/banner-icon-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 90px;
    height: 500px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}

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

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

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

/* Laptop Responsive  */

@media(max-width:1600px) {
    .banner_bg {
        height: 810px;
        object-fit: cover;
        object-position: center;
    }
}

@media(max-width:1400px) {
    .banner_fig::before {
        width: 460px;
        height: 460px;
    }
}

@media(max-width:1200px) {
    .banner_fig::before {
        width: 430px;
        height: 430px;
    }

    .banner_bg {
        height: 920px;
    }
}

/* Laptop Responsive  */

/* Tablet Responsive  */

@media(max-width:992px) {
    .banner_bg {
        height: 650px;
    }

    .banner-slider.slider-sec .slick-dots {
        bottom: 110px;
    }

    .site-header .icon-badge {
        background: var(--secondary-color);
    }
}

/* Mobile Responsive  */

@media(max-width:576px) {

    .banner-slider.slider-sec .slick-dots {
        bottom: 10px;
    }

    .banner-mid-wrap img.img-fluid {
        height: 150px;
        object-fit: cover;
        object-position: center;
    }

    .banner_bg {
        height: 510px;
    }
}

/* Mobile Responsive  */

/* Banner Section End Here */


/* about-section Css  */

.about-section {
    padding: 100px 0px;
}

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

.about-mark-wrapper figure img.img-fluid {
    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-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 800px;
    top: 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: linear-gradient(135deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 0%, rgba(98, 201, 129, 1) 0%, rgba(249, 186, 81, 1) 0%, rgba(192, 132, 53, 1) 100%);
    width: 720px;
    height: 720px;
    top: -25px;
    left: -25px;
    z-index: 9;
    border-radius: 50%;
    clip-path: inset(0 20% 0 0);
    transform: rotate(-40deg);
    animation: rotateAnimation 9s infinite linear;
}

.about_fig::after {
    content: "";
    position: absolute;
    width: 760px;
    height: 760px;
    top: -43px;
    left: -50px;
    border-radius: 50%;
    z-index: -1;
    transform: rotate(-60deg);
    clip-path: polygon(0% 0%, 80% 0%, 40% 100%, 0% 100%);
    background: var(--extra-color-4);
    animation: reverseRotateAnimation 9s infinite linear;
}

.about-mark-wrapper {
    height: fit-content;
    left: -100px;
    z-index: -1;
}

@keyframes rotateAnimation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes reverseRotateAnimation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
        /* Negative rotation for counterclockwise */
    }
}

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

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

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

.contact-icon {
    background: var(--primary-color);
    color: var(--body-color);
    border: 1px solid transparent;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: pulse-animation 2s infinite;
    text-decoration: none;
}

.contact-icon i {
    font-size: 20px;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgb(1, 83, 1, 0.2);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1);
    }
}

/* Laptop Responsive  */

@media(max-width:1700px) {
    .about_fig::before {
        width: 630px;
        height: 630px;
    }

    .about_fig::after {
        width: 670px;
        height: 670px;
    }
}

@media(max-width:1400px) {
    .about_fig::before {
        width: 530px;
        height: 530px;
        top: -17px;
        left: -16px;
    }

    .about_fig::after {
        width: 550px;
        height: 550px;
        top: -24px;
        left: -28px;
    }

    .about-section {
        padding: 70px 0px;
    }
}

@media(max-width:1200px) {
    .about_fig::before {
        width: 480px;
        height: 480px;
        top: -12px;
        left: -13px;
    }

    .about_fig::after {
        width: 500px;
        height: 500px;
        top: -23px;
        left: -21px;
    }

    .about-section {
        padding: 60px 0px;
    }
}

/* Laptop Responsive  */

/* Tablet Responsive  */

@media(max-width:992px) {
    .about_fig::before {
        content: unset;
    }

    .about_fig::after {
        content: unset;
    }

    .about-section {
        padding: 40px 0px;
    }
}

/* Mobile Responsive  */

@media(max-width:576px) {
    .about-img-wrapper {
        margin-bottom: 20px;
    }

    .about-mark-wrapper figure img.img-fluid {
        max-width: 100px;
    }

    .about-section {
        padding: 40px 0px;
    }
}

/* about-section Css  */

/* service-section Css */
.service-section {
    padding: 100px 0;
    background-image: url(../img/service-bg.png);
}

.service-wrapper {
    background: var(--extra-color-1);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 24px 30px 51px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.service-wrapper::before {
    content: "";
    position: absolute;
    background-image: url(../img/service-left.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 210px;
    height: 240px;
    left: 0;
    top: 0;
    z-index: -1;
    border-radius: 20px;
}

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

.service-img figure img.img-fluid {
    height: 150px;
    object-fit: cover;
}

.service-wrapper:hover {
    background: linear-gradient(140deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 0%, rgba(98, 201, 129, 1) 0%, rgba(201, 141, 58, 1) 0%, rgba(232, 170, 41, 1) 100%);
}


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

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

/* service-section Css */

/* plan-section Css  */
.plan-section {
    background: linear-gradient(90deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 0%, rgba(98, 201, 129, 1) 0%, rgba(232, 170, 41, 1) 0%, rgba(232, 170, 41, 1) 0%, rgba(201, 141, 58, 1) 100%);
}

.plan-content-wrapper {
    padding: 40px 140px 40px 20px;
}

.plan-img-wrapper figure img.img-fluid {
    filter: drop-shadow(24px 30px 51px rgba(0, 0, 0, 0.1));
}

/* plan-section Css  */

/* experiecne-section Css  */
.experience-section {
    margin-top: -150px;
}

.experience-wrapper {
    background-image: url(../img/experience-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 60px;
}

.experience-number {
    background: var(--extra-color-2);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 24px 30px 51px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.experience-number::before {
    content: "";
    position: absolute;
    background-color: var(--extra-color-2);
    background-size: cover;
    background-position: center;
    width: 130px;
    height: 130px;
    left: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 0px 80px 0 0;
    opacity: 0.05;
}

.experience-number::after {
    content: "";
    position: absolute;
    background-color: var(--extra-color-2);
    background-size: cover;
    background-position: center;
    width: 100px;
    height: 100px;
    right: 0;
    top: 0;
    z-index: -1;
    border-radius: 0px 0px 0px 20px;
    opacity: 0.05;
}

.experience-number:hover {
    background: linear-gradient(140deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 0%, rgba(98, 201, 129, 1) 0%, rgba(232, 170, 41, 1) 0%, rgba(249, 186, 81, 1) 0%, rgba(150, 92, 33, 1) 100%);
}

.experience-number:hover .experience_hover {
    color: var(--body-color);
}

/* experiecne-section Css  */

/* testi-section Css  */

.testi-slide {
    margin: 0px 20px;
    border-radius: 16px;
    border: 1px solid transparent;
}

.testi-slide:hover {
    border-color: #B46F0A;
    box-shadow: 24px 30px 51px 0 rgba(0, 0, 0, 0.1);
}

.test-commas {
    margin-top: -20px;
}

.testi-slider .slick-list.draggable {
    padding-top: 40px;
}

.testi-slider .slick-dots {
    bottom: -50px;
    left: 0;
    right: 0;
    align-items: center;
    flex-direction: row;
    justify-content: unset;
    top: unset;
    row-gap: 0;
    gap: 7px;
    justify-content: center;
    max-width: fit-content;
}

.testi-slider .slick-dots li {
    background: var(--primary-color);
    height: 5px;
    width: 40px;
    margin: 0 6px;
    transition: 0.4s ease;
    border-radius: 3px;
}

.testi-slider .slick-dots li.slick-active {
    background: linear-gradient(90deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 0%, rgba(98, 201, 129, 1) 0%, rgba(232, 170, 41, 1) 0%, rgba(150, 92, 33, 1) 0%, rgba(249, 186, 81, 1) 50%, rgba(180, 111, 10, 1) 100%) border-box;
}

/* testi-section Css  */

/* blog-section Css  */

.date-wrap {
    background: #f9ba51ad;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px;
    bottom: 30px;
}

.service-btn .service-span {
    background: #d9d9d93b;
    color: var(--secondary-color);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}

.service-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

/* blog-section Css  */

/* contact-section Css  */

.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: 1200px;
    top: -14rem;
    z-index: -1;
}

.contact-icon-wrap {
    max-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    /* margin: auto; */
    position: relative;
    flex: 0 0 20%;
}

.contact-form-wrapper {
    background: linear-gradient(140deg, rgba(42, 123, 155, 0.06) 0%, rgba(87, 199, 133, 0.06) 0%, rgba(98, 201, 129, 0.06) 0%, rgba(232, 170, 41, 0.06) 0%, rgba(150, 92, 33, 0.06) 0%, rgba(249, 186, 81, 0.06) 50%, rgba(180, 111, 10, 0.06) 100%);
}

/* contact-section Css  */

/* footer Css  */

.site-footer {
    padding: 110px 0px 0px;
    background-position: top;
}

.footer-email .btn {
    font-family: var(--primary-regular-font);
}

.footer-lists-heading::before {
    content: "";
    position: absolute;
    background-color: var(--body-color);
    width: 40px;
    height: 1px;
    bottom: -10px;
    left: 0;
    background-size: cover;
}

/* Tablet Responsive  */

@media(max-width:992px) {
    .site-footer {
        background-image: unset;
        padding: 80px 0px 0px;
        background-color: #21181d;
    }
}

/* footer Css  */