@import url('https://fonts.googleapis.com/css2?family=Poppins: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: 0px;
    margin: 0px;
}
html{
    scroll-behavior: smooth;
}
body{
     font-family: "Poppins", sans-serif;
     font-weight: 100;
     font-style: normal;
}
.body h1 {
    color: darkorange;
    font-size: 40px; /* Or whatever size you prefer */
    text-align: center;
}
a{
    text-decoration: none;
    color: black;
    transition: all 0.3s ease;
}
a:hover{
    color: darkorange;
    text-decoration: underline;
    text-underline-offset: 10px;
    text-decoration-color: darkorange;
}

.navbar {
    display: flex;
    align-items: center;
    height: 70px;
    padding: 0px 100px;
}
.logo{
    width: 40%;
    font-size: 30px;
    font-weight: 600;
    color: darkorange;
}
.menu-bar {
    list-style: none;
    display: flex;
    width: 60%;
    justify-content:space-around;
}
.menu-bar li{
    font-size: 20px;
    font-weight: 400;
}
.navbar-menu{
    display: none;
}
.sec2,
.sec3,
.sec4,
.sec5 {
    position: relative;
}
.arrow{
position: absolute;
right: 30px;
bottom: 0px;
}
.arrow2{
    transform: rotate(180deg);
    bottom: 50px;
}
.arrow img {
    width: 40px;
}

 @keyframes appear {
    from{
        opacity: 0;
        transform: translate(-200px);
    }
    to{
        opacity: 1;
        transform: translate(0px);
    }
    
}
.sec1,
.sec2,
.sec3,
.sec4,
.sec5{
    animation:appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

@media(max-width:1024px){
    .navbar{
        display: none;
    }
    .navbar-menu{
    display: flex;
}
.arrow{
    display: none;
}
}
.hamburger{
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    position: fixed;
    right: 5px;
    top: 20px;
    z-index: 100;
}
.hamburger i{
    font-size: 35px;
    padding: 5px;
}
.navbar-menu .logo{
    margin-top: 20px;
    padding-left: 30px;
    width: 400px;
}
.navbar-menu .menu-bar{
    display: flex;
    flex-direction: column;
    width: 200px;
    background-color: darkorange;
    position: fixed;
    right: 0;
    top:60px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    gap: 10px;
    margin-right: -500px;
    border-radius: 5px;
    transition: all 0.3s ease;
    z-index: 100;
}
.navbar-menu .menu-bar.show{
    margin-right: 0px;
}
.navbar-menu .menu-bar li a{
    display: block;
    background-color: white;
    border-radius: 5px;
    padding: 5px;
    font-weight: 600;
}

@media(max-width:767px){
    .logo{
        text-wrap: nowrap;
        font-size: 20px;
    }
    .navbar-menu .logo{
        margin-top: 15px;
        padding-left: 10px;
}
.navbar-menu .menu-bar{
    width: 120px;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 4px;
    position: fixed;
    right: 0;
    top:60px;
    gap: 4px;
    
}
.hamburger{
    position: fixed;
    right: 0px;
    top: 10px;
}
}

