*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Nexa", sans-serif;
}

.hero{
    background: url(/assets/bg.jpg);
    overflow: hidden;
    padding-top: 110px;
}

.heading h1{
    color: orange;
    font-size: 45px;
    text-align: center;
    margin-top: 75px;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 65px auto;
}

.hero-content{
    flex: 1;
    width: 600px;
    margin: 0px 25px;
}

.hero-content h2{
    font-size: 25px;
    color: #333;
    margin-bottom: 20px;
    animation: fadeInUp 2s ease;
}

.hero-content h3{
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    animation: fadeInUp 2s ease;
}

.hero-content p{
    font-size: 18px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 40px;
    text-align: justify;
}

.hero-content button{
    display: inline-block;
    background-color: #ff4500;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.hero-content button:hover{
    background-color: #ff6347;
    transform: scale(1.1);
}

.hero-image{
    flex: 1;
    width: 600px;
    margin: auto;
    animation: fadeInRight 2s ease;
}

img{
    width: 80%;
    height: auto; 
    border-radius: 10px;
}

@media screen and (max-width: 768px){
    .heading h1{
        font-size: 30px;
        margin-top: 30px;
    }
    .hero{
        margin: 0px;
    }
    .cointainer{
        width: 90%;
        flex-direction: column;
        margin: 0px;
        padding: 0px 40px;
    }
    .hero-content{
        width: 100%;
        margin: 35px 0px;
    }
    .hero-content h2{
        font-size: 25px;
    }
    .hero-content p{
        font-size: 18px;
        margin-bottom: 20px;
    }
    .hero-content button{
        font-size: 16px;
        padding: 8px 16px;
    }
    .hero-image{
        width: 95%;
    }
}

@keyframes fadeInUp{
    0%{
        opacity: 0;
        transform: translateY(50px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes fadeInRight{
    0%{
        opacity: 0;
        transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        transform: translateX(0px);
    }
}








li{
    list-style: none;
}

a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
}

a:hover{
    color: orange;
}

header {
    position: relative;
    z-index: 9999;
}

.navbar {
    width: 100%;
    color: #fff;
    background: #000;
    /* gap: 2rem; */
    height: 95px;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
}

.navbar .text_logo img {
    width: 80px;
}

.navbar .text_logo a {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar .links {
    display: flex;
    gap: 2rem;
    cursor: pointer;
}

.navbar > .toggle_btn {
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    position: absolute;
    right: 1rem;
}

.dropdown_menu {
    display: none;
    position: absolute;
    right: 1rem;
    top: 1rem;
    height: 0;
    width: 300px;
    background: rgb(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.open {
    height: 115px;
}

.dropdown_menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
}

@media (max-width: 992px) {
    .navbar .links{
        display: none;
    }

    .navbar .toggle_btn {
        display: block;
    }

    .dropdown_menu {
        display: block;
    }
}

@media (max-width: 576px) {
    .dropdown_menu {
        left: 2rem;
        width: unset;
    }
}