/*===footerWrap start===*/
.footerWrap {
    background-color: #0d1240;
}

/*===footerConnect start===*/


.footerConnect {
    padding: 70px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;

    .container-mid {
        text-align: center;
    }

    .footerConnectInner {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        text-align: center;
        display: inline-flex;
        padding-right: 70px;
    }

    .footerConnectHeading {
        font-size: 80px;
        font-weight: 700;
        color: #fff;
        line-height: 1.05;
        font-family: "Nata Sans", sans-serif;
        text-transform: uppercase;
        position: relative;
        z-index: 1;

        span {
            padding-right: 30px;
            position: relative;
            display: inline-block;

            &::after {
                content: "";
                position: absolute;
                top: 0;
                right: 0;
                height: 100%;
                width: 85%;
                z-index: -1;
                background-image: linear-gradient(to right, #e6f5ff00, #048FEA);
            }
        }
    }

    .footerConnectBtn {
        width: 70px;
        height: 70px;
        min-width: 70px;
        border-radius: 50%;
        background-color: var(--green);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        color: #fff;
        transition: background 0.3s ease, transform 0.3s ease;

        &:hover {
            background-color: var(--blue);
            transform: scale(1.08);
        }
    }


}

.footerConnectRow {
    justify-content: center;
    align-items: center;

    .footerConnectRgt {
        justify-content: center;
        display: flex;
    }

    .footerConnectInner {
        padding-right: 0;
    }
}

/* magnetic arrow button */
.footerConnect {
    cursor: pointer;
}

.ctaArrowBtn {
    position: fixed;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /* background-color: var(--gold); */
    background-color: var(--green);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    /* border: 1px solid #fff; */
    transform: translate(-50%, -50%) scale(0.6);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 9999;
    color: #000;
    pointer-events: all;
    cursor: none;
    font-size: 30px;


    svg {
        font-size: 30px;
        color: #fff;
        transform: rotate(-40deg);
    }

    &.visible {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/*===footerMain start===*/
.footerLogo {
    display: block;
    max-width: 370px;

    img {
        width: 100%;
    }
}

.footerMain {
    /* padding: 60px 0 0; */

    .footerMainRow {
        display: flex;
        align-items: flex-start;
        gap: 60px;
        margin-bottom: 40px;
    }

    .footerBrand {
        display: flex;
        flex-direction: column;
        gap: 28px;
        min-width: 380px;
    }



    .footerSocial {
        display: flex;
        gap: 12px;

        .sm_3 {
            display: flex;
            align-items: center;
        }

        li {

            a,
            &.sm_icon {
                width: 38px;
                height: 38px;
                border-radius: 50%;
                background-color: var(--blue);
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                font-size: 14px;
                transition: background 0.3s ease;
                padding: 9px;

                &:hover {
                    background-color: var(--green);
                }

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7496%) hue-rotate(141deg) brightness(102%) contrast(101%);
                }
            }

            .socTxt {
                width: auto !important;
                height: auto !important;
                /* width: calc(100% - 38px); */
                background-color: transparent !important;
                padding-left: 10px;
                color: #fff;
                font-size: 16px;
            }
        }
    }

    .footerAbout {
        flex: 1;

        p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }
    }

    .footerDivider {
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.12);
        margin: 0;
    }
}

/*===footerNav start===*/
.footerNav {
    padding: 28px 0;

    ul {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 30px;

        li {
            a {
                color: rgba(255, 255, 255, 0.75);
                transition: color 0.3s ease;
                display: flex;
                align-items: center;
                gap: 5px;

                i {
                    font-size: 11px;
                }

                &:hover {
                    color: var(--blue);
                }
            }
        }
    }
}

/*===footerContactBar start===*/


.footerContactBar {
    display: flex;
    /* align-items: center; */
    padding: 30px 0 50px;
    gap: 0;

    .echFooterCont {
        position: relative;

        .footerContInn {
            height: 100%;
        }

        &:not(:last-child) {
            &::after {
                content: "";
                position: absolute;
                top: 0;
                right: 0;
                width: 1px;
                height: 50px;
                background: rgba(255, 255, 255, 0.15);

            }
        }

        &:nth-child(2){
            .footerContactItem{
                &:first-child{
                    .footerContactText{
                        a{
                            pointer-events: none;
                        }
                    }
                }
            }
        }
    }

    .footerContactItem {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1;

        &:not(:last-child) {
            margin-bottom: 14px;
        }
    }

    .footerContactIcon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border-radius: 50%;
        background-color: var(--blue);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 16px;
        padding: 9px;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7496%) hue-rotate(141deg) brightness(102%) contrast(101%);
        }
    }

    .footerContactText {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.55;

        a {
            color: #fff;
        }
    }

    .footerContactDivider {
        width: 1px;
        height: 60px;
        background: rgba(255, 255, 255, 0.15);
        margin: 0 40px;
        flex-shrink: 0;
    }
}

.cinTextWrap {
    .cinText {
        font-weight: 700;
        color: #fff;
        padding-left: 20px;
    }
}

/*===footerCopyright start===*/
.footerCopyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 0;

    .footerCopyrightInner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
    }

    .footerCopyText {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
        margin: 0;

        a {
            color: rgba(255, 255, 255, 0.5);
            font-size: 13px;
        }
    }

    .footerCopyRight {
        display: flex;
        align-items: center;
        gap: 10px;

        a {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            transition: color 0.3s ease;

            &:hover {
                color: var(--blue);
            }
        }

        .footerCopySep {
            color: rgba(255, 255, 255, 0.3);
            font-size: 13px;
        }
    }

    .footerCredit {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
        margin: 0;

        strong {
            color: rgba(255, 255, 255, 0.8);
            font-weight: 700;
        }
    }
}

.whatsappBtnDiv {
    position: fixed;
    top: calc(50% + 120px);
    /* bottom: 6%; */
    right: 15px;
    z-index: 20;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* border: 1px solid #fff; */
    overflow: hidden;
    animation: pulse 2s infinite;
    box-shadow: 0px 0px 1px 1px #1e53a767;

    .whatsappBtn {
        display: block;
        width: 100%;
        height: 100%;
        padding: 8px;
        background-color: #1E53A7;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0px #1e53a73b;
    }

    100% {
        box-shadow: 0 0 0 20px #1e53a700;
    }
}

/*===Responsive===*/

@media(max-width: 1580px) {
    .ctaArrowBtn {
        width: 70px;
        height: 70px;

        svg {
            font-size: 24px;
        }
    }
}

@media (max-width: 1440px) {
    .footerMain {
        .footerSocial {
            li {
                .socTxt {
                    font-size: 14px;
                }
            }
        }
    }
}

@media(max-width: 1290px) {
    .footerConnect {
        .footerConnectHeading {
            font-size: 66px;
        }
    }
}

@media (max-width: 1199px) {
    .footerConnect {
        .footerConnectHeading {
            font-size: 64px;
        }
    }

    .footerLogo {
        max-width: 250px;
    }

    .footerContactBar {
        .footerContactItem {
            /* flex-direction: column; */
            /* justify-content: center; */

        }

        .echFooterCont {

            &:first-child {
                width: 30%;
            }

            &:nth-child(2) {
                width: 25%;
            }

            &:nth-child(3) {
                width: 30%;
            }

            &:nth-child(4) {
                width: 15%;
            }
        }

        .footerContactText {
            /* text-align: center; */
        }


    }



    .footerMain {
        .footerSocial {
            .sm_4 {
                /* flex-direction: column; */

                .socTxt {
                    /* width: 100%; */
                    /* padding-top: 14px; */
                    /* padding-left: 0; */
                }
            }
        }
    }
}

@media(max-width: 1100px) {
    .footerContactBar {
        .footerContactIcon {
            width: 32px;
            height: 32px;
            min-width: 32px;
            font-size: 12px;
        }
    }

    .footerMain {
        .footerSocial {
            li {
                a {
                    width: 32px;
                    height: 32px;
                    font-size: 12px;
                }
            }

            .sm_4 {
                .socTxt {
                    width: calc(100% - 32px);
                }
            }
        }
    }
}

@media(max-width: 1024px) {
    .ctaArrowBtn {
        width: 52px;
        height: 52px;
        position: absolute !important;
        opacity: 1 !important;
        transform: scale(1) translateY(-50%) !important;
        pointer-events: auto !important;
        right: 0 !important;
        left: auto !important;
        top: auto !important;
        bottom: -18px;
    }

    .footerConnect {
        padding: 70px 0 44px;
    }

    .footerLogo {
        max-width: 270px;
    }

    .footerConnectRow {
        flex-direction: column;
        gap: 14px;
        text-align: center;

        .footerConnectInner {
            padding-right: 70px;
        }
    }

    .footerConnect {
        .footerConnectHeading {
            font-size: 56px;
            line-height: normal;
        }
    }

    .footerContactBar {
        padding: 20px 0 10px;

        .echFooterCont {
            &:not(:last-child) {
                margin-bottom: 20px;

                &::after {
                    display: none;
                }

                .footerContInn {
                    .footerContactItem {
                        position: relative;
                        padding-bottom: 20px;

                        &::after {
                            content: "";
                            position: absolute;
                            top: auto;
                            bottom: 0;
                            right: auto;
                            left: 0;
                            width: 100%;
                            height: 1px;
                            background: rgba(255, 255, 255, 0.15);
                        }
                    }
                }
            }


            &:first-child,
            &:nth-child(2),
            &:nth-child(3),
            &:nth-child(4) {
                width: 100%;
            }
        }

        .footerContactItem {
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;

            .footerContactIcon {
                margin: 0px auto;
            }

            .footerContactText {
                width: 100%;
                text-align: center;
            }
        }
    }

    .footerMain {
        .footerSocial {
            .sm_3 {
                flex-direction: column;

                .socTxt {
                    width: 100%;
                    padding-top: 14px;
                    padding-left: 0;
                }
            }
        }
    }

    .cinTextWrap {
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        /* margin-bottom: 20px; */
        padding-bottom: 20px;
        padding-top: 10px;

        .cinText {
            padding-left: 0;
        }
    }
}

@media (max-width: 991px) {
    .footerLogo {
        margin: 0 auto 0;
    }

    .echFooterCont {
        &::after {
            height: 100%;
        }

        /* &::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: rgba(255, 255, 255, 0.15);
        } */
    }

    .footerConnect {
        .footerConnectHeading {
            font-size: 50px;
        }

        .footerConnectBtn {
            width: 58px;
            height: 58px;
            min-width: 58px;
            font-size: 22px;
        }

        .footerConnectInner {
            padding-right: 60px;
        }
    }

    .footerMain {
        .footerMainRow {
            flex-direction: column;
            gap: 30px;
            text-align: center;
        }

        .footerBrand {
            flex-direction: row;
            align-items: center;
            justify-content: center;
            min-width: unset;
            width: 100%;
        }

        .footerSocial {
            justify-content: center;
        }
    }

    .footerContactBar {
        /* flex-direction: row; */
        /* align-items: flex-start; */
        /* gap: 15px; */
        /* padding-bottom: 40px; */

        .footerContactDivider {
            height: 120px;
        }

        .footerContactItem {
            /* flex: unset; */
            /* width: 100%; */
            flex-direction: column;
            text-align: center;
        }
    }

    .ctaArrowBtn {
        width: 46px;
        height: 46px;
        bottom: -22px;

        svg {
            font-size: 20px;
        }
    }

    .footerCopyright {
        .footerCopyrightInner {
            gap: 9px;
            flex-direction: column;
        }
    }
}

@media(max-width: 840px) {
    .footerContactBar {
        /* flex-direction: column; */

        .footerContactItem {
            flex: unset;
            width: 100%;
        }

        .footerContactDivider {
            width: 100%;
            height: 1px;
        }
    }
}


@media (max-width: 767px) {
    .footerConnect {
        padding: 50px 0;

        .footerConnectHeading {
            font-size: 40px;
        }

        .footerConnectBtn {
            width: 50px;
            height: 50px;
            min-width: 50px;
            font-size: 18px;
        }

        .footerConnectInner {
            padding-right: 50px;
        }
    }

    .footerCopyright {
        .footerCopyrightInner {
            flex-direction: column;
            align-items: center;
            gap: 8px;
            text-align: center;
        }

        .footerCopyText {
            text-align: center;
        }
    }

    .ctaArrowBtn {
        width: 38px;
        height: 38px;
        bottom: -20px;
    }

    .echFooterCont {
        &:not(:last-child) {
            &::after {
                top: auto;
                bottom: 0;
                width: 100%;
                height: 1px;
            }
        }
    }

    /* .footerContactBar {
        .footerContactItem {
            padding: 0 0 20px;
        }
    } */
}

@media (max-width: 575px) {
    .footerConnect {
        .footerConnectHeading {
            font-size: 36px;
        }

        .footerConnectInner {
            padding-right: 40px;
        }
    }

    .footerMain {
        /* padding: 50px 0 0; */

        .footerBrand {
            flex-direction: column;
            align-items: flex-start;

            .footerLogo {
                margin: 0 auto;
                max-width: 260px;
            }
        }
    }

    .footerContactBar {
        .footerContactIcon {
            width: 40px;
            height: 40px;
            min-width: 40px;
        }
    }

    .ctaArrowBtn {
        width: 32px;
        height: 32px;
        bottom: -16px;

        svg {
            font-size: 15px;
        }
    }

    .footerWrap {
        padding-bottom: 60px;
    }
}

@media (max-width: 360px) {
    .footerConnect {
        .footerConnectHeading {
            font-size: 35px;
        }

        .footerConnectInner {
            padding-right: 50px;
        }
    }
}