*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: sans-serif;
    scroll-behavior: smooth;
}
body{
    overflow-x: hidden;
}


header{
    background-image: url(bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    width: 100%;
    height: 100vh;

}

nav{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12%;
}

.logo{
    width: 130px;
    height: 120px;
    margin-left: 30px;
    cursor: pointer;
}

.menu{
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu li a{
    font-size: 22px;
    font-weight: 500;
    color: black;
}

.menu li a:hover{
    color: rgba(223,56,33,255);
}

.bins_content{
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    padding: 8% 17% 0% 44%;
}

.bins_content h2{
    color: black;
    font-size: 36px;
    font-weight: bold;
}

.bins_content h1{
    font-size: 48px;
    line-height: 50px;
    font-weight: bolder;
    color: black;
}

.bins_content p{
    font-size: 20px;
    font-weight: 400;
    color: black;
}


button{
    width: 150px;
    height: 50px;
    border-radius: 10px;
    border: none;
    background-color: rgba(223,56,33,255);
    color: wheat;
    font-size: 1.3rem;
    transition: rgba(223,56,33,255);
}

button:hover{
    box-shadow: 0 0 20px rgb(42, 42, 42, 0.439);
    cursor: pointer;
}

.bins_content button{
    margin: 20px 0;
}






/* About Section */
.about {
    padding: 5rem 5%;
    background-color: whitesmoke;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: black;
}

.section-title span {
    color: black;
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: rgba(223,56,33,255);
}

.about-text p {
    margin-bottom: 20px;
    line-height: 24px;
    color: black;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.skill {
    background-color: rgba(223,56,33,255);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 16px;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
