@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-font: 'Geist', sans-serif;
    --secondary-font: 'Instrument Sans', sans-serif;
    --primary: #eda823;
}

.center-container {
    overflow: hidden;
}

.section-container {
    padding: 5% 0px;
}

.gray-container {
    background-color: #f7f7f7;
}


/*************************************************** SLICK *************************************************/
.slider {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 95vh !important;
    border-radius: 50px;
}

.slider img {
    width: 100%;
    height: 100vh;
    object-position: center;
    object-fit: cover;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    color: transparent;
    background: transparent;
    border: none;
}

.clientlogo {
    width: 9vw;
}

.slick-track {
    display: flex !important;
    align-items: center !important;
}


.sliderimg img:hover {
    filter: grayscale(0%);
}

/*************************************************** NAVBAR *************************************************/

.logo_img {
    width: 4vw;
}

.nav-logo {
    width: 4vw;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.13);
    padding: 20px;
}

.links {
    display: flex;
    margin: 0;
    padding: 0;
}

.navLink {
    font-size: 1vw;
    list-style: none;
    font-family: var(--lato);
}

.navLink a {
    padding: 5px 20px;
    text-decoration: none;
    color: black;
    margin: 0 5px;
    position: relative;
    font-family: var(--primary-font);
    text-transform: capitalize;
}

.active a {
    color: #eba825 !important;

    &:hover {
        color: white !important;
    }
}

.navLink :hover {
    transition: 0.1s ease-in-out;
    background: var(--primary);
    border-radius: 5px;
    color: white;
    cursor: pointer;
}

.callBtn button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 10px;
    font-family: var(--lato);
    /* font-size: 1.2vw; */
    cursor: pointer;
}

.callIcon {
    margin-right: 5px;
    width: 1.5vw;
}

.active a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    width: 80%;
    border-radius: 5px;
    color: white !important;
    border-bottom: var(--primary) 2px solid;
    cursor: pointer;
}

/* *******************************************************MOBILE NAVBAR************************************************* */
.mobile_container {
    display: none;

}

.mobile_container .header_mobile {
    position: fixed !important;
    display: block;
    backdrop-filter: blur(10px);
    top: 0;
    right: 0;
    backdrop-filter: blur(10px);
    overflow-x: hidden !important;
    z-index: 999;
}

.content {
    padding: 40px 5% 20px;
    text-align: justify;
    max-height: 100%;
    color: #333;
    overflow-y: scroll;
}

.content img {
    width: 100%;
    position: relative;
    display: block;
    margin: 40px auto 30px;
}

/* End container/placeholder */

/* Menu header_mobile */
.header_mobile {
    background: #ffffff;
    overflow: hidden !important;
    height: 15vh;
    width: 100%;
    z-index: 1;
    position: fixed !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease-out, background 1s ease-out;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.13);
}

.header_mobile.menu-open {
    height: 100%;
    background: var(--primary);
    transition: all 0.45s ease-out, background 0.8s ease-out;
}

.mobile-menu {
    clear: both;
    display: flex;
    justify-content: end;
    align-items: center;
    height: 100vh;

}

.header_mobile ul.menu {
    position: relative;
    margin-bottom: 40vw;
    padding: 0px 40px 0;
    list-style: none;
}

.header_mobile ul.menu li.menu-item a {
    display: block;
    position: relative;
    color: #fff;
    text-align: right;
    text-decoration: none;
    font-size: 4vw;
    line-height: 2.8;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
}

.header_mobile ul.menu li.menu-item {
    margin-top: 5px;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99),
        -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99),
        opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99),
        opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99),
        -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

.header_mobile ul.menu li.menu-item:nth-child(1) {
    transition-delay: 0.35s;
}

.header_mobile ul.menu li.menu-item:nth-child(2) {
    transition-delay: 0.3s;
}

.header_mobile ul.menu li.menu-item:nth-child(3) {
    transition-delay: 0.25s;
}

.header_mobile ul.menu li.menu-item:nth-child(4) {
    transition-delay: 0.2s;
}

.header_mobile ul.menu li.menu-item:nth-child(5) {
    transition-delay: 0.15s;
}

.header_mobile ul.menu li.menu-item:nth-child(6) {
    transition-delay: 0.1s;
}

.header_mobile ul.menu li.menu-item:nth-child(7) {
    transition-delay: 0.05s;
}

.header_mobile.menu-open ul.menu li.menu-item {
    opacity: 1;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(1) {
    transition-delay: 0.05s;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(2) {
    transition-delay: 0.1s;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(3) {
    transition-delay: 0.15s;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(4) {
    transition-delay: 0.2s;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(5) {
    transition-delay: 0.25s;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(6) {
    transition-delay: 0.3s;
}

.header_mobile.menu-open ul.menu li.menu-item:nth-child(7) {
    transition-delay: 0.35s;
}

.hamburger {
    font-size: 7vw;
    color: #000000;
}

/* Menu Icon */
.icon-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

.icon-container #menuicon {
    width: 20px;
    height: 10px;
    position: relative;
    display: block;
    margin: -4px auto 0;
    top: 50%;
}

.closed {
    display: none;
}

#menuicon .bar {
    width: 100%;
    height: 1px;
    display: block;
    position: relative;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

#menuicon .bar.bar1 {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
}

#menuicon .bar.bar2 {
    -webkit-transform: translateY(6px) rotate(0deg);
    transform: translateY(6px) rotate(0deg);
}

#menuicon .bar.bar3 {
    -webkit-transform: translateY(12px) rotate(0deg);
    transform: translateY(12px) rotate(0deg);
}

.menu-open .closed {
    display: block;
    font-size: 8vw;
    float: right;
    color: #fff;
}

.menu-open .icon-container .hamburger {
    display: none;
}

.menu-open .logo {
    display: none !important;
    transition: all 0.5s ease;
}

.menu-open .icon-container #menuicon .bar {
    transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition-delay: 0.1s;
}

.menu-open .icon-container #menuicon .bar.bar1 {
    -webkit-transform: translateY(4px) rotate(45deg);
    transform: translateY(4px) rotate(45deg);
}

.menu-open .icon-container #menuicon .bar.bar2 {
    -webkit-transform: translateY(3px) rotate(-45deg);
    transform: translateY(3px) rotate(-45deg);
}

.mobile_pallete {
    height: 15vh;
}

.logo {
    width: 13vw;
    transition: all 0.5s ease;
}


@media screen and (max-width: 990px) {
    .nav {
        display: none;
    }

    .clientlogo {
        width: 19vw;
    }

    .mobile_container {
        display: block;
    }

    .logo {
        width: 10vw;
    }

    .menu-open .closed {
        font-size: 6vw;
    }

    .hamburger {
        font-size: 5vw;
    }

    .mobile_logo {
        width: 10vw;
    }
}

@media screen and (max-width: 600px) {
    .logo {
        width: 15vw;
    }

    .clientlogo {
        width: 25vw;
    }

    .hamburger {
        font-size: 9vw;
    }

    .whatsappLogo {
        width: 10vw !important;
    }

}

/*************************************************** HOME *************************************************/
.heroBanner {
    background-image: var(--heroBanner);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
}

.networkingImg {
    width: 10vw;
}

.Darkoverlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

.Darkoverlay:has(p) {
    color: white;
    text-align: center;
}

.AboutheroBanner {
    background-image: url("../images/about/aboutImgBanner.webp");
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 70vh;
}

.customePara {
    margin-bottom: 0;
    font-size: 1vw;
    font-family: var(--primary-font);
}

.numberHeader {
    font-size: 4vw !important;
    font-family: var(--primary-font);
    font-weight: 600;
}

.serviceCardPara {
    font-size: small;
    text-align: start;
}

.customeHeading {
    margin-bottom: 0;
    color: #000;
    font-family: var(--primary-font);
}

.line {
    height: 1.5px;
    width: 100px;
    background-color: #000000;
}

.caps {
    font-size: 3vw !important;
    text-transform: uppercase;
    font-weight: 100;
    letter-spacing: 0.1em;
}

.custormWidth {
    width: 10vw !important;
}

.underline {
    border-bottom: 2px solid #bcbec0;
    padding: 5px 0px;
}

.comment-container {
    border-radius: 15px;
    box-shadow: 0px 1px 10px 1px #69696969;
    padding: 20px;
    display: flex;
    justify-content: center;
    background-color: white;
    flex-direction: column;
    transition: all 0.2s ease;
    &:hover {
        background-color: #eda823;
        color: white;
    }
}

.comment-container>p {
    height: fit-content;
    font-family: var(--primary-font);
    color: inherit;
    font-weight: 100;
}

.client-container {
    border-radius: 15px;
    box-shadow: 0px 1px 10px 1px #69696969;
    padding: 20px;
    display: flex;
    justify-content: center;
    background-color: white;
    flex-direction: column;
}

.client-container>p {
    height: fit-content;
    font-family: var(--primary-font);
    color: #000000;
    font-weight: 100;
}

.CategoryCard {
    background-color: white;
    box-shadow: 0px 1px 10px 1px #69696969;
    display: flex;
    justify-content: center;
    flex-direction: column;
}


.CategoryCardpara {
    font-size: larger;
    font-weight: 300;
    width: 80%;
    color: #000000c7;
    font-family: var(--primary-font);
}

.footer{
    background-color: #f7f7f7;
    padding-top: 4% !important;
    padding-bottom: 1% !important;
}

.footer-ul {
    list-style: none;
    padding-left: 0 !important;
}

.footer-ul>li>a {
    text-decoration: none;
    font-weight: 400;
    font-size: medium;
    color: #000000;
}

.footer-ul>li>a:hover {
    color: #eda823 !important;
}
.termslink{
    text-decoration: none;
    font-weight: 400;
    font-size: medium;
    color: #000000;
    cursor: pointer;
}
.termslink:hover {
    color: #eda823 !important;
}

.footer-ul>li {
    font-family: var(--primary-font);
    font-weight: 200 ! important;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.footerBigHeader {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2%;
    background: linear-gradient(to right, #eba825, #40c0de);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footerBigHeader>h1 {
    font-size: 7vw !important;
    text-transform: uppercase;
    font-weight: 100 ! important;
    font-family: "Habibi Regular";
    letter-spacing: 1em;
}

.whatsappLogo {
    width: 3vw;
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.banner {
    background-image: url('../images/bannerImg.webp');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 40vh;
    display: flex;
    align-items: end;
}

.serviceCard {
    border-radius: 10px;
    box-shadow: 0px 1px 10px 1px #69696969;
    padding: 15px;
}

.serviceCardImg {
    width: 100%;
    object-fit: cover;
}

.contactBanner {
    background-image: url('../images/contact/contactBanner.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whychooseBtn{
    background-color: var(--primary) !important;
    color: white !important;
    border-radius: 5px !important;
    padding: 5px 20px !important;
    font-weight: 600;
}
.contact-container {
    background-color: #fff;
    box-shadow: 0px 1px 10px 1px #69696969;
    border-radius: 5px;
    overflow: hidden;
    max-height: 85vh;
}

.contactBannerText {
    padding: 5%;
}

.contactBannerHeading {
    font-size: 5vw !important;
    font-family: var(--primary-font);
    font-weight: 600;
}

.contactHeading {
    font-size: 2vw !important;
    font-family: var(--primary-font);
    font-weight: 600;
}

.contactBannerPara {
    font-size: 1vw !important;
    font-family: var(--primary-font);
    font-weight: 100;
}

.contact-form label {
    color: black;
    visibility: hidden;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    border-radius: 0px;
    outline: none;
    border: none;
    border-bottom: 1px solid #00000041;
    background-color: transparent;

    &:focus {
        box-shadow: none;
    }

    &::placeholder {
        font-family: var(--secondary-font);
        font-weight: 100;
        font-size: 1rem;
    }
}

.formBtn {
    border: 1px solid #000000;
    border-radius: 50px;
    padding: 5px 10px;
    background-color: transparent;
    color: rgb(0, 0, 0);
    border: 1px solid rgb(0, 0, 0);
    font-family: var(--primary-font);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.yellow-circle {
    padding: 10px;
    border-radius: 50%;
    background-color: #eda823;
}

.activeServiceCard {
    display: block;
    box-shadow: 1px 1px 20px 5px #00000069 !important;
    border-radius: 10px;
    overflow: hidden;
}

.show-service-card {
    display: block ! important;
}

.hide-service-card {
    display: none;
}

.feature-list li {
    margin-top: 2vw;
    font-size: 1vw;
    font-family: var(--primary-font);
}

.feature-list {
    font-family: var(--primary-font);
}

.serviceapplication-bg {
    background-image: var(--applicationBanner);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    background-color: rgba(255, 255, 255, 0.801);
    padding: 2% 0px;
}

.whychooseHeader {
    font-size: 3vw;
    font-family: var(--primary-font);
    font-weight: 600;
    margin-bottom: 20px;

}

.whychoosePara {
    font-size: 1.2vw;
    font-family: var(--primary-font);
    color: #565656;
}

.serviceCategoryImg {
    height: 55vh;
}

@media screen and (max-width: 960px) {
    .customeMargin {
        margin-top: 15vh;
    }

    .networkingImg {
        display: none;
    }

    .serviceCardImg {
        width: 30vw;
    }

    .customePara {
        font-size: 2vw;
    }

    .serviceCategoryImg {
        height: 100%;
    }

    .CategoryCardpara {
        font-size: medium;
        font-weight: 300;
        width: 100%;
        color: #000000c7;
        font-family: var(--primary-font);
    }

    .banner {
        height: 20vh;
        background-size: cover;
        width: 100% !important;
    }

    .contactBannerPara {
        font-size: 2vw !important;
        font-family: var(--primary-font);
        font-weight: 100;
    }

    .custormWidth {
        width: 60% !important;
        text-align: center;
    }

    .footer-ul>li {
        font-size: 1.5vw;
    }

    .AboutheroBanner {
        background-image: url(../images/about/aboutImgBanner.webp);
        background-position: center;
        background-size: contain;
        width: 100%;
        background-repeat: no-repeat;
        height: 40vh;
    }

    .feature-list li {
        margin-top: 1vw;
        font-size: 2vw !important;
        font-family: var(--primary-font);
    }

    .whychoosePara {
        font-size: 2vw !important;
    }

    .footer-ul>li>a {
        font-size: 1.7vw;
    }
    .whatsappLogo {
    width: 6vw;
    }
}

@media screen and (max-width: 660px) {
    .caps {
        font-size: 6vw !important;
    }

    .footer-ul>li>a {
        font-size: medium;
    }

    .footer-ul>li {
        font-size: 4vw;
    }

    .line {
        width: 0;
    }

    .customePara {
        font-size: 4vw;
    }

    .custormWidth {
        width: 100% !important;
    }

    .customeMargin {
        margin-top: 15vh;
    }

    .networkingImg {
        display: none;
    }

    .AboutheroBanner {
        height: 20vh;
    }

    .banner {
        background-image: url(../images/bannerImg.webp);
        background-position: center;
        background-size: cover;
        height: 15vh;
        margin-top: 16vh;
        border-radius: 21px;
    }

    .overlay {
        background-color: rgba(255, 255, 255, 0.801);
        padding: 5% 0px;
    }

    .serviceCardImg {
        width: 100%;
    }

    .contact-container>.col-lg-6:not(.contactBannerText) {
        display: none;
    }

    .contactBannerPara {
        font-size: 4vw !important;
    }

    .contactHeading {
        font-size: 5vw !important;
    }

    .header_mobile ul.menu li.menu-item a {
        font-size: 5vw !important;
    }

    .whychoosePara {
        font-size: 3vw !important;
    }

    .whychooseHeader {
        font-size: 6vw;
    }

    .feature-list li {
        margin-top: 1vw;
        font-size: 3vw !important;
        font-family: var(--primary-font);
    }

}