@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Fira Sans', sans-serif;
}
.hero-img{
    position: relative;
    width: 100%;
    height: auto;
    text-align: center;
    background: url(images/Israeli\ App\ That\ Diagnoses\ Car\ Problems\ and\ Finds\ Cheap\ Mechanics\ Expands\ to\ US\,\ UK\ _\ United\ with\ Israel.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.hero-img::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}
.hero-content{
    position: relative;
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0 auto;
    animation: fadeInUp 2s ease;
}
.hero-content-inner h1{
    font-size: 70px;
    color: #fff;
    margin-bottom: 10px;
}
.hero-content-inner p{
    width: 70%;
    margin: 0 auto;
    font-size: 30px;
    font-weight: normal;
    color: #fff;
    line-height: 37px;
}
.hero-content-inner button{
    width: 232px;
    height: 69px;
    margin: 40px;
    border-radius: 50px;
    outline: none;
    font-size: 24px;
    text-transform: capitalize;
    background-color: #fc5f00;
    color: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, .3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all ease .2s;
}
.hero-content-inner button:hover{
    border-color: #fff;
    color: #fff;
    background-color: transparent;
}
/* navbar styling */
.navbar{
    display: flex;
    align-items: center ;
    justify-content: space-between;
    padding: 1rem 2rem;
    background-color: transparent ;
    backdrop-filter: blur(10px);
    color: #fff;
    position: relative;
    z-index: 1000;
}
/* logo styling */
.logo img{
    width: 60px;
    border-radius: 8px;
}
/* nav links styling */
.navbar .nav-links {
    display: flex;
    gap: 1.5rem;
}
.navbar .nav-links a{
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}
.navbar .nav-links a:hover{
    color: #333;
}
/* hamburger menu styling */
.navbar .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.navbar .hamburger span{
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
}
/* dropdowm menu for mobile */
.navbar .nav-links-mobile{
    display: none;
    flex-direction: column;
    background-color: #ff6600;
    position: absolute;
    top: 100%;
    right: 2rem;
    width: 200px;
    border-radius: 8px;
    z-index: 1100;
    overflow: hidden;
}
.navbar .nav-links-mobile a{
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #ffa366;
    color: #fff;
    text-decoration: none;
}
.navbar .nav-links-mobile a:hover{
    background-color: #cc5200;
}


@media(max-width:768px){
    .hero-content{
        width: 100%;
    }
    .hero-content-inner h1{
        font-size: 39px;
    }
    .hero-content-inner p{
        width: 100%;
        font-size: 13px;
    }
    .hero-content-inner button{
        width: 150px;
    height: 45px;
    margin: 40px;
    border-radius: 50px;
    outline: none;
    font-size: 15px;
    text-transform: capitalize;
    background-color: #fc5f00;
    color: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, .3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all ease .2s;
    }
    .navbar .nav-links {
        display: none;
    }
    .navbar .hamburger{
        display: flex;
    }
    .navbar .nav-links-mobile.active{
        display: flex;
    }
}
@keyframes fadeInUp{
    0%{
        opacity: 0;
        transform: translateY(50px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

#preloader{
    background: #000 url(images/tenor.gif) no-repeat center center;
    background-size: 610px;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100;
}