* {
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
    overflow-x: hidden;
    width: 100vw;
    background-color: #EDECEA;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: none;
}

::-webkit-scrollbar-thumb {
    background-color: #697077;
}


/* **************************************************************************************************** */
.navbar {
    background-color: #F0F0F0;
    /* color: white; */
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* height: 100px; */
    padding: 0%;
}

.navbar-logo {
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
    /* border-radius: 0px 149px 0px 0px;
    background: #D9D9D9; */

}

.navbar-logo a {
    text-decoration: none;
    color: white;
}

.navbar-logo img {
    margin: 10px 0;
    height: 70px;
}

/* Navbar toggle styles */
.navbar-toggle {
    display: none;
    /* Hide by default */
    cursor: pointer;
}

.navbar-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: black;
    margin: 6px auto;
}

/* Navbar list styles */
.navbar-list {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 5%;
    margin: auto 0;
}

.navbar-list li {
    margin: 0 10px;
}

a[href^="#"] {
    transition: all 0.3s ease-in-out;
}

.navbar-list a {
    text-decoration: none;
    color: var(--cool-gray-90, #21272A);

    /* Other/Menu M */
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 16px */
}

/* Media query for mobile responsiveness */
@media screen and (max-width: 1000px) {
    .navbar-list {
        display: none;
        /* Hide the list items */
        flex-direction: column;
        align-items: start;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: #FFF;
        z-index: 1;
        padding-bottom: 10px;
        /* Adjust the z-index to place it above other elements */
    }

    .navbar-list li {
        margin: 6px 1px;
    }

    .navbar-list.active {
        display: flex;
        /* Show the list items when active */
    }

    .navbar-toggle {
        display: block;
        /* Show the toggle icon */
        z-index: 2;
        margin-right: 5%;
        /* Place the toggle icon above the list */
    }

    .navbar-logo {
        height: 100%;
        display: flex;
        align-items: center;
        padding-left: 5%;
        padding-right: 15%;
        /* border-radius: 0px 149px 0px 0px;
        background: #D9D9D9; */

    }
}

/* ******************************************************************************************************* */
.section1 {
    height: 100vh;
    background-image: url(../images/landing/sec1-bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    padding: 5% 0;
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;

}



.sec1-content {
    width: 90%;
    max-width: 1300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section1 img {
    height: 550px;
    width: 480px
}

.sec1-button button {
    border-radius: 3px;
    background: #A8A29C;
    border: 2px solid #A8A29C;
    padding: 10px 16px;
    color: var(--default-white, #FFF);
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    width: 150px;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-right: 10px;
}

.heading {
    text-align: center;
    font-family: DM Serif Display Regular;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 5px;
    line-height: 68px;
    /* 113.333% */
    margin-bottom: 4%;
}

@media screen and (max-width: 892px) {
    .heading {
        text-align: center;
        font-family: DM Serif Display Regular;
        font-size: 40px;
        font-style: normal;
        font-weight: 700;
        letter-spacing: 5px;
        line-height: 68px;
        /* 113.333% */
        margin-bottom: 4%;
    }
}


@media screen and (max-width: 1182px) {
    .section1 {
        height: auto;
        background-image: url(../images/landing/sec1-bg.png);
        background-size: auto;
        background-repeat: no-repeat;
        width: 100%;
        padding: 5% 0;
        position: relative;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;

    }


    .sec1-content {
        width: 90%;
        max-width: 1300px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}

@media screen and (max-width: 610px) {
    .section1 img {
        height: 340px;
        width: 340px
    }
}

/* **************************************************************************************************** */

.section3 {
    height: auto;
    padding-top: 9%;
    padding-bottom: 2%;
    width: 100%;
    background-image: url(../images/landing/core-bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}



.sec3-row {
    width: 90%;
    max-width: 90%;
    position: relative;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
}

.image {
    height: 110px;
    width: 120px;
    margin-bottom: 20px;
    /* filter: invert(30%) sepia(8%) saturate(227%) hue-rotate(353deg) brightness(93%) contrast(86%); */
}

@media screen and (min-width: 1400px) {
    .image {
        height: 200px;
        width: 220px;
        margin-bottom: 30px;
        /* filter: invert(30%) sepia(8%) saturate(227%) hue-rotate(353deg) brightness(93%) contrast(86%); */
    }
}

@media screen and (max-width: 820px) {
    .section3 {
        height: auto;
        padding-top: 10%;
        padding-bottom: 10%;
        width: 100%;
        background-image: url(../images/landing/core-bg.png);
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .sec3-row {
        width: 100%;
        position: relative;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .image {
        height: 110px;
        width: 120px;
        margin-bottom: 20px;
        margin-top: 40px;
        /* filter: invert(30%) sepia(8%) saturate(227%) hue-rotate(353deg) brightness(93%) contrast(86%); */
    }
}



/* **************************************************************************************************** */
.section7 {
    /* height: 100%; */
    background-image: url(../images/landing/journey-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 8%;
    background-position: bottom right;
    width: 100%;
    /* max-width: 1300px; */
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section-key-management {
    /* padding-bottom: 5%; */
    height: 90%;
    background-image: url(../images/landing/sec7-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sec7-img {
    width: 100%;
}

.sec7-content {
    padding-top: 0%;
    /* height: 100%; */
    width: 90%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.section7-grid {
    width: 90%;
    position: relative;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: baseline;
}

.section7-grid-box {
    margin-right: 40px;
    width: 164px;
    height: auto;
    padding: 2% 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section7-grid-box img {
    height: 161px;
}

.section7-grid-box div {
    width: 184px;
    color: var(--cool-gray-60, #697077);
    text-align: center;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    line-height: 140%;
    /* 25.2px */
}

@media screen and (min-width: 1400px) {
    .sec7-img {
        position: relative;
    }

    .section7-grid-box img {
        height: 221px;
    }

    .section7-grid-box div {
        width: 224px;
        color: var(--cool-gray-60, #697077);
        text-align: center;
        font-family: Roboto;
        font-size: 18px;
        font-style: normal;
        line-height: 140%;
        /* 25.2px */
    }


}



@media screen and (max-width: 1270px) {
    .section-key-management {
        /* padding-bottom: 5%; */
        height: auto;
        background-image: url(../images/landing/sec7-bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        position: relative;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .sec7-content {
        padding-top: 10%;
        padding-bottom: 5%;
        /* height: 100%; */
        width: 90%;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }

    .section7-grid {
        position: relative;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .section7-grid-box {
        margin-right: 20px;
        width: 180px;
        height: auto;
        padding: 1% 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .section7-grid-box img {
        height: 150px;
    }

    .section7-grid-box div {
        color: var(--cool-gray-60, #697077);
        text-align: center;
        font-family: Roboto;
        font-size: 14px;
        font-style: normal;
        line-height: 140%;
        /* 25.2px */
    }
}


/* **************************************************************************************************** */
footer {
    width: 100%;
    padding: 5% 0 0 0;
    background-color: #fff;
    background-image: url(../images/landing/footer.png);
    background-size: cover;
    box-shadow: -5px -5px 10px #FFF;
    /* border-top-color: #000; */
}

.footer-content {
    width: 90%;
    max-width: 90%;
    position: relative;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding-bottom: 5%;
}

.footer-right {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}

.footer-map {
    width: 30%;
}

.sec-form {
    height: 450px;
    width: 30%;
    border-radius: 10px;
    background-color: #A7A29C;
    padding: 3%;
}

.elementor-widget-google_maps iframe {
    height: 450px;
    width: 100%;
}

@media screen and (min-width: 1400px) {

    .footer-map {
        width: 22%;

    }

    .elementor-widget-google_maps iframe {
        height: 500px;
        width: 100%;
    }

    .sec-form {
        height: 500px;
        width: 22%;
        border-radius: 10px;
        background-color: #A7A29C;
        padding: 3%;
    }
}

.sec-form textarea::placeholder {
    color: var(--cool-gray-60, #697077);

    /* Body/M */
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 22.4px */
}

.sec-form input::placeholder {
    color: var(--cool-gray-60, #697077);

    /* Body/M */
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 22.4px */
}

.footer-button {
    border-radius: 10px;
    background: #fff;
    border: 2px solid #fff;
    padding: 2px 22px;
    color: #A8A29C;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-block;
}

.footer-last {
    background: #A8A29C;
    padding: 20px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

@media screen and (max-width: 1270px) {
    .footer-last {
        background: #A8A29C;
        padding: 20px 0;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .footer-map {
        width: 90%;
    }

    .sec-form {
        height: 450px;
        width: 90%;
        border-radius: 10px;
        background-color: #A7A29C;
        padding: 3%;
        margin: 10% 0;
    }

    .footer-content {
        width: 90%;
        max-width: 1300px;
        position: relative;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 30px;
    }
}


/****************************************** owl-slider ******************************************************/
.wrapper {
    display: flex;
    padding: 5% 25px;
    align-items: center;
    justify-content: center;
    height: auto;
    max-width: 1300px;
    width: 100%;
    position: relative;
}

.wrapper i {
    top: 50%;
    height: 50px;
    width: 50px;
    cursor: pointer;
    font-size: 1.25rem;
    position: absolute;
    text-align: center;
    line-height: 50px;
    background: transparent;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: transform 0.1s linear;
}

.wrapper i:active {
    transform: translateY(-50%) scale(0.85);
}

.wrapper i:first-child {
    left: -12px;
}

.wrapper i:last-child {
    right: -12px;
}

.wrapper .carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 2) + 6px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    border-radius: 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel.no-transition {
    scroll-behavior: auto;
}

.carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.carousel.dragging .card {
    cursor: grab;
    user-select: none;
}

.carousel :where(.card) {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel .card {
    padding: 8% 7%;
    scroll-snap-align: start;
    height: auto;
    list-style: none;
    background: #fff;
    cursor: pointer;
    padding-bottom: 5%;
    flex-direction: column;
    border-radius: 8px;
}

.banner-button {
    border-radius: 20px;
    background: #A8A29C;
    border: 2px solid #A8A29C;
    padding: 5px 16px;
    color: var(--default-white, #FFF);
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-block;
}

@media screen and (max-width: 1000px) {
    .wrapper .carousel {
        grid-auto-columns: 110%;
    }

    .wrapper {
        display: flex;
        padding: 0 25px;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        max-width: 1300px;
        width: 115%;
        position: relative;
    }
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

/* Style for the modal content */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    height: auto;
    width: 50%;
    /* Adjust the width to 50% for half-screen */
    max-width: 600px;
    /* You can set a maximum width */
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Style for the close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

@media screen and (max-width: 900px) {
    .modal {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #fff;
        height: auto;
        width: 80%;
        /* Adjust the width to 50% for half-screen */
        max-width: 600px;
        /* You can set a maximum width */
        padding: 30px;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        z-index: 2;
    }
}

.section-banner {
    width: 100%;
    max-width: 1300px;
    padding-top: 10%;
    position: relative;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner {
    /* margin-bottom: 8%; */
    width: 95%;
    transform: skew(-8deg);
    position: relative;
    left: -5%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.box1 img {
    height: 450px;
}

.mobileBanner {
    display: none;
}

.banner .box1 {
    max-width: 1200px;
    width: 22.33%;
    height: 450px;
    border: 2px solid #fff;
    float: left;
    /* background: url(../images/New-Maruti-Ciaz.html) center top no-repeat; */
    background-size: cover;
    transition: 0.8s;
    position: relative;
}

@media screen and (min-width: 1400px) {
    .banner {
        width: 105%;
        transform: skew(-8deg);
        position: relative;
        left: -5%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
    }

    .box1 img {
        height: 584px;
    }

    .banner .box1 {
        width: 31.33%;
        height: 584px;
        border: 2px solid #fff;
        float: right;
        background-size: cover;
        transition: 0.8s;
        position: relative;
    }
}

.banner .box1 span {
    transform: skew(10deg);
    display: inline-block;
    position: absolute;
    z-index: 2;
    bottom: 50px;
    left: 0;
    right: 0;
    margin: auto;
}

.banner .box1 span a {
    width: 150px;
    padding: 12px 20px;
    color: #fff;
    font-size: 18px;
    border: 1px solid #fff;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    opacity: 0;
    display: none;
}

.banner .box1 span a:hover {
    color: #fff;
    background: #000;
    border: 1px solid #000
}

/*.banner .box1:nth-child(1) {
        background: url(../images/bannerImg1.png) left top no-repeat;
    }

    .banner .box1:nth-child(2) {
        background: url(../images/bannerImg2.png) center top no-repeat;
    }

    .banner .box1:nth-child(3) {
        background: url(../images/bannerImg3.png) right top no-repeat;
    }*/

.banner .box1:hover {
    width: 70%;
}

.banner .box1:hover span a {
    opacity: 1;
}

.banner .box1.smallWidth {
    width: 15%;
    transition: 0.8s;
}

@media screen and (max-width: 823px) {
    .popup {
        width: 100%;
    }

    .popup h1 {
        font-size: 18px;
    }

    .abt_team_section {
        padding-bottom: 0 !important;
    }

    .popup li a {
        padding: 7px;
        font-size: 12px;
    }

    /*.contactUsContainer {
            display: none;
        }*/

    .banner {
        display: block;
        width: 100%;
        transform: skew(0);
        left: 0;
    }

    .popup .closeIcon {
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
    }

    .banner .box1 .mobileimage {
        display: block;
        width: 100%;
    }

    .banner .box1 {
        width: 100%;
        height: auto;
    }

    .banner .box1:hover {
        width: 100%;
    }

    .banner .box1 span {
        bottom: 30px;
        transform: skew(0deg);
    }

    .banner .box1 span a {
        opacity: 1;
    }

    .mobileBanner {
        display: block;
        width: 100%;
        float: left;
        position: relative;
    }

    .mobileBanner img {
        width: 100%;
    }

    .mobileBanner span {
        width: 100%;
        float: left;
        position: relative;
    }

    .mobileBanner span a {
        padding: 7px 15px;
        color: #fff;
        font-size: 14px;
        border: 1px solid #fff;
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        text-transform: uppercase;
    }

    .mobileBanner span a:hover {
        color: #fff;
        background: #000;
        border: 1px solid #000
    }

    .banner .box1 span a {
        display: block;
        font-size: 14px;
        border: none;
        bottom: -23px;
        left: unset;
        right: -26px;
        transform: inherit;
    }
}