*{
    padding: 0;
    margin: 0;
}

@font-face {
    font-family: roboto;
    src: url(fonts/RobotoCondensed-Regular.ttf);
}

body{
    font-family: cambria;
}

@font-face {
    font-family: cambria;
    src: url(fonts/Cambria-Font-For-Windows.ttf);
}

header{
    height: 131px;
    width: 100%;
}

header .nav1{
    height: 41px;
    width: 100%;
    display: flex;
    background: #FF8A00;
}

.nav1 h1{
    color: white;
    display: none;
}

.nav1 img{
    width: 3%;
    display: none;
}

header .nav2{
    height: 90px;
    width: 90%;
    margin: 0PX AUTO;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav2 .logo{
    display: flex;
    align-items: center;
    width: 40%;
    gap: 5px;
}

.nav2 img{
    width: 18%;
}

.nav2 h1{
    color: #FF8A00;
    font-weight: 400;
    font-family: roboto;
}

.nav2 .navbar{
    /* background: #121526; */
    width: 70%;
}

.nav2 ul{
    display: flex;
    list-style-type: none;
    gap: 25px;
    font-size: 16px;
}

.nav2 ul li a{
    text-decoration: none;
    color: black;
    font-family: roboto;
}

.nav2 ul li a:hover{
    color: #FF8A00;
    transition: 0.5s;
}

/* Hamburger menu styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
}

/* responsiveness  */

@media (max-width: 768px){

    header .nav1{
        height: 41px;
        width: 100%;
        display: flex;
        background: #FF8A00;
        align-items: center;
    }
    
    .nav1 h1{
        color: white;
        display: flex;
        font-size: 20px;
        display: none;
    }
    
    .nav1 img{
        width: 10%;
        display: flex;
        display: none;
    }
    
    header .nav2{
        height: 90px;
        width: 90%;
        margin: 0PX AUTO;
        background: white;
        display: flex;
        justify-content: space-between;
        /* gap: 100px; */
        align-items: center;
        position: relative;
    }
    
    .nav2 .logo{
        display: flex;
        align-items: center;
        width: 70%;
        gap: 5px;
        /* background: red; */
        /* display: none; */
    }
    
    .nav2 img{
        width: 30%;
    }
    
    .nav2 h1{
        color: #FF8A00;
        font-weight: 400;
        font-size: 150%;
        /* display: none; */
    }
    
    .nav2 .navbar{
        /* background: #121526; */
        width: 30%;
    }
    
    .nav2 ul{
        display: none;
        list-style-type: none;
        /* gap: 25px; */
        /* font-size: 16px; */
    }
    
    .nav-links{
        display: none;
    }
    
    .nav2 ul li a{
        text-decoration: none;
        color: black;
    }
    
    .nav2 ul li a:hover{
        color: #FF8A00;
        transition: 0.5s;
    }
    
    .nav2 .navbar .hamburger-menu{
        display: flex;
        position: absolute;
        right: 10px;
        top: 32px;
    }
    
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        width: 40%;
        background: white;
        z-index: 999;
        padding: 20px;
        transition: transform 0.5s ease-in-out;
        transform: translateX(0);
    }
    
    .nav-links.active a {
        text-align: center;
        padding: 10px 0;
        font-size: 18px;
        color: black;
        text-decoration: none;
        transition: color 0.3s ease-in-out;
    }
    
    .nav-links.active a:hover {
        color: #FF8A00;
    }
    
    .nav-links.active .close-icon {
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        color: #333;
    }
    
    .nav-links.active .close-icon img {
        width: 20px;
        height: 20px;
    }
    
}


/* responsiveness  */


.hero{
    width: 100%;
    height: 490px;
    background: url(images/bg1.png);
    /* position: absolute; */
}

/* her0 */

.hero{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

.content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.hero .content h1{
    font-family: cambria;
    font-size: 80px;
    font-weight: 700;
    color: #FF8A00;
}

.hero .content h2{
    font-family: cambria;
    font-size: 60px;
    font-weight: 700;
    color: white;
}


.about{
    width: 55%;
    line-height: 30px;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about .p1{
    /* background: red; */
    width: 200px;
    display: flex;
    gap: 10px;
}

.p1 .icon a{
    color: black;
}

.p1 .name a{
    text-decoration: none;
    color: #333;
}

.p1 .name a:hover{
    color: #FF8A00;
    transition: .5s ease-in-out;
}

/* hero  */

@media (max-width: 400px){
    .hero{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: #ffffff;
    }
    
    .content{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }
    
    .hero .content h1{
        font-family: cambria;
        font-size: 50px;
        font-weight: 700;
        color: #FF8A00;
    }
    
    .hero .content h2{
        font-family: cambria;
        font-size: 50px;
        font-weight: 700;
        color: white;
    }
    
    
    .about{
        width: 90% !important;
        line-height: 20px;
        margin: 0px auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding-bottom: 10px;
    }

    

}

@media (max-width: 248px){
    .hero{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: #ffffff;
    }
    
    .content{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }
    
    .hero .content h1{
        font-family: cambria;
        font-size: 40px;
        font-weight: 700;
        color: #FF8A00;
    }
    
    .hero .content h2{
        font-family: cambria;
        font-size: 50px;
        font-weight: 700;
        color: white;
    }
    
    
    .about{
        width: 45%;
        line-height: 45px;
        margin: 0px auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

}

footer{
    width: 100%;
    height: 110px;
    background: #121526;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}