@import url('/css/layout.css');
@import url('/css/normalize.css');
@import url('/css/animate.min.css');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700;800;900&display=swap');
/* @font-face {
    font-family: Clash Display;
    src: url('/font/ClashDisplay-Variable.ttf');
} */


* {
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #F15701;
    --text-color: #111111;
    --sub-text-color: #5E5E5E;
    --sub-text-fade:#9D9D9D;
    --bg-color: #FFFFFF;
    --sub-bg-color: #FCFCFC;
    --sub-bg-color-1:#FAFAFA;
    --card-box: #F7F7F7;
    --box-shadow: 0 2px 28px 0 rgb(0, 0, 0, 0.09);


}

.dark {
    --primary-dark: #ffffff;
    --bg-color: #000000;
    --sub-bg-color: #151819;
    --sub-bg-color-1:#151817;
    --text-color: #ffffff;
    --logo-color: #ffffff;
    --sub-text-color: #cfcfcf;
    --sub-text-fade:#9D9D9D;
    --card-box: #191919;
    --box-shadow: 0 2px 28px 0 rgb(255, 255, 255, 0.01);

}

html,
body {
    width: 100%;
    margin: auto;
    font-family: "Space Grotesk", "Space Grotesk Placeholder", sans-serif;
    font-style: normal;
    scroll-behavior: smooth;
    color: var(--text-color);
    background: var(--bg-color);
    font-size: 20px;
}

body {
    overflow-x: hidden;
    z-index: 2;

}

.bg-color {
    background-color: var(--bg-color);
}

section {
    width: 85%;
    margin: auto;
    max-width: 1200px;

}

@media screen and (max-width: 768px) {

    section,
    nav {
        width: 90%;
    }
}

ul,
li,
a {
    list-style: none;
    text-decoration: none;
    cursor: pointer;
}

p {
    color: var(--text-color);
    margin: 0;
}

h1{
    font-size: 48px;
    font-family: 700;
    margin: 0;
    line-height: 1.4em;
    letter-spacing: 1px;
    color: var(--text-color);
}
h2{
    font-size: 24px;
    letter-spacing: 0.8px;
    line-height: 1.5em;
    font-weight: 400;
    color: var(--sub-text-color);
}
p{
    font-size: 16px;

}



/* --------------navbar------------ */
.nav-container {
    position: fixed;
    width: 100%;
    z-index: 100;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 10px 0px;
    background-color: var(--bg-color);

}

.navbar {
    padding: 24px;
}
.navbar ul li{
    font-size: 14px;
    letter-spacing: 0.8px;
}
.navbar li {
    font-weight: 500;
    font-size: 16px;
}

.nav-container .menu {
    display: none;
}

.logo-nav {

    font-size: 33.02px;
    font-weight: 700;
    color: var(--logo-color);
}

#desktop-icons {
    display: none;
}

#desktop-icons svg,
#mobile-icons svg {
    color: var(--text-color);
}

#mobile-icons {
    display: flex;
}

.nav-container.scrolled {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: var(--bg-color);
}

@media screen and (max-width: 990px) {
    .nav-container .menu {
        display: flex;
    }

    .nav-container .nav-list,
    .nav-container .download-text {
        display: none;
    }

    #desktop-icons {
        display: flex;
    }

    #mobile-icons {
        display: none;
    }

    button {
        padding: 12px;
    }


}

@media screen and (max-width: 768px) {

    section {
        width: 90%;
    }
    .navbar{
        padding: 0.5em;
        width: calc(100% - 1em);
    }
}

.sidebar {
    max-height: 0;
    width: 100%;
    position: fixed;
    top: 58px;
    left: 0;
    background-color: var(--bg-color);
    overflow-y: hidden;
    transition: max-height 0.3s ease-out;
    z-index: 1000;
}

.sidebar ul {
    list-style-type: none;
    padding: 20px;
    margin: 0;
}

.sidebar ul li {
    padding: 10px 15px;
    text-align: left;
    font-size: 18px;
    color: var(--text-color);
  
}

.closebtn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 36px;
    color: white;
    cursor: pointer;
}

.overlay {
    height: calc(100% - 58px);
    /* Adjust overlay height to not cover the navigation bar */
    width: 100%;
    position: fixed;
    top: 58px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-out;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

#menu-icon {
    cursor: pointer;
}

#show-on-scroll {
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

@media screen and (max-width: 768px) {
    #show-on-scroll button {
        padding: 0.5em;
    }

    #show-on-scroll p {
        font-size: 14px;

    }
    #show-on-scroll img {
        display: none;
        height: 30px;
    }
}
a{
    color: var(--text-color);
}
a button{
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
   
    position: relative;
    padding: 13px 19px;
    text-decoration: none;
    width: min-content;
    border-radius: 3px;
    background-color:rgb(0, 0, 0) ;
    color: #ffffff;
    white-space: nowrap;
    border: none;
    font-size: 15px;

}

a button.hover-button{
    background-color: transparent;
    color: var(--text-color);
    border:2px solid rgba(179, 173, 173, 0.74);
    color: var(--text-color);
    transition: 0.2s ease-in-out;
}
a button.hover-button:hover{
    background-color:rgb(0, 0, 0) ;
    color: #ffffff;
    border-color: #000000;
}
/* ------------hero------------ */
.hero{
    padding-top: 220px;
}
.hero section{
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
}
.hero .hero-img{
    padding-top: 60px;
    max-width: 80%;
}

/* ----second section--- */
.section2,.section3{
    padding-top: 200px;
    padding-bottom: 60px;
    max-width: 1000px;
    gap: 39px;
    
}
.section3{
    padding-top: 100px;
}
.section2-left{
    flex: 2;
    gap: 28px;

}
.min-width{
    min-width: 300px
}
.section2-right{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section2-right video{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    margin: auto;
}


/* ---section3 ----- */
.section3 h2{
    max-width: 606px;
}

.section3_bottom{
    padding-top: 40px;
}

.card_features_container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card_feature{
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items:start;
    background-color: var(--card-box);
    color: var(--text-color);
    border-radius: 5px;
    cursor: pointer;
}

.section3_bottom .videos video{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    margin: auto;
}

.card_feature .card_feature_title{
    font-size: 18px;
    font-weight: 600;
}

.card_feature  .ans {
    font-size: 14px;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    position: relative;
    transition: 0.3s ease-in-out;
    line-height: 1.5em;
}

.card_feature.question-box.active .ans{
    padding-top: 10px;
}

.card_feature.question-box.active .ans,.card_feature.question-box.active  {
    max-height: 30em;
    background-color: var(--primary-color);
    color: #ffffff;
}
.section3_bottom .videos video{
    display: none;
    border-radius: 0.5em;
}
.section3_bottom .videos video.active_video{
    display: flex;

}
.section4{
    max-width: 1076px;
    padding-top: 60px;
    padding-bottom: 60px;
    
}
.section4 .section4_sub_title {
display: flex;
justify-content: start;
}
.section4 .section4_sub_title  p{
    font-size: 18px;
    font-weight: 500;
    max-width: 328px;
    line-height: 1.5em;
    color: #333333;
}
.why_card_container{
    padding-top: 60px;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;

}
.why_card{
    width:326px ;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.why_card .why_icon{
   width: 83px;
   height: 83px;
    border: 1px solid #c9c9c9;
    border-radius: 50%;
    padding: 0.2em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why_card .why_icon svg{
    width: 65px;
    height: 65px;
}
.why_card h3{
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4em;
    text-align: start;
    letter-spacing: 0.5px;

}
.why_card p{
    max-width: 229px;
    line-height: 1.4em;
    font-size: 16px;
    color:rgb(157, 157, 157) ;
}
/* --section5 --- */
.section5{
    max-width: 1000px;
    padding: 60px 0;
    position: relative;
}
.section5 h2{
    max-width: 364px;
    margin: 0;
    font-size: 14px;
}
.testimonial{
   
    background-color: var(--bg-color);
    padding:30px;
    display: flex;
    flex-direction: column;
    gap: 1em;
    border-radius: 0.5em;
    border: 1px solid #eeeeee;
    
}
.testimonial .testimonial_img img{
    
    width: 60px;
    height: auto;
    border-radius: 50%;
}
.testimonial h3{
    margin: 0;
    font-size: 22px;
    color: #333333;
}
.testimonial .hotel_name{
font-size: 12px;
margin-top: 0.5em;
}
.testimonial p{
    line-height: 1.4em;
    font-size: 14px;
}

.prev_slide{
    position: absolute;
    top: 58%;
    left: -5%;
    z-index: 10;
    cursor: pointer;
    padding: 0.5em;
    border-radius: 50%;
    background: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.next_slide{
    position: absolute;
    top: 58%;
    right:-5% ;
    z-index: 10;
    cursor: pointer;
    padding: 0.5em;
    border-radius: 50%;
    background: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;

}

/* ---section6-- */
.section6{
    max-width: 1050px;
    padding-top: 100px;
}
.contact_right{
display: flex;
flex-direction: column;
gap: 1em;
}
.contact_left .contact_img img{
    border-radius: 0.5em;
}
.section6 form{
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.section6 form input,textarea{
    background: rgba(0, 0, 0, 0.04);
    box-shadow:inset 0 0 0 1px transparent ;
    font-size: 15px;
    line-height: 1.4em;
    outline: none;
    border: none;
    border-radius: 9px;
    width: calc(100% - 2em);
}
.section6 .contact_right .social-links-company{
    padding-top: 10px;
}
.section6 .contact_right .social-links-company a{
width: 35px;
height: 35px;
    background: rgba(0, 0, 0, 0.04);
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
    
}
.section6 .contact_right .social-links-company a:hover{
    scale: 1.1;
        
    }
.section6 .contact_right .social-links-company a svg{
    width: 15px;
    height: 15px;
}
.footer_end{
    
    max-width: 1440px;
    padding-top: 100px;
    padding-bottom: 100px;
    justify-content: space-between;
}