*{
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}

body{
    background: #000;
    transition: .5s;
}

.container{
   background:#000 ; 
   min-height: 100vh;
   width: 100%;
   overflow: hidden;
   position: relative;
}

header{
    display:flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin:auto;
    padding:20px 0;
}

.logo{
    width: 40px;
}

ul li {
   display : inline-block ;
}

ul li a {
    color:#fff;
    text-decoration: none;
    margin : 0 10px;
}
.content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: auto;
}

.content .text{
    width: 40%;
    color:#fff;
}

.content .text h2{
    font-size: 40px;
    text-transform: uppercase;
}

.content .text p{
    font-size: 18px;
    margin: 20px 0;
}

.content .text a{
    text-decoration: none;
    background: #fff;
    color:#000;
    padding: 8px 15px;
    border-radius: 20px;
}

.content .image{
    width: 30%;
}

.content .image img{
   width: 180px; 
} 

.icons{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.icons img{
    width: 40px;
    transition: 0.5s;
    cursor: pointer;  
}
.icons img:hover{
    transform: scale(1.2);
}

/* Products */

#products,
#news,
#about,
#contact{
    width: 80%;
    margin: 80px auto;
    color: white;
}

#products h2,
#news h2,
#about h2,
#contact h2{
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.products-container{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card{
    width: 250px;
    background: rgba(255,255,255,.08);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    transition: .4s;
}

.card:hover{
    transform: translateY(-10px);
    background: rgba(255,255,255,.15);
}

.card h3{
    color: white;
    font-size: 28px;
    margin-bottom: 15px;
}

.card p{
    color: #ddd;
    line-height: 1.7;
}

#news p,
#about p{
    color: #ddd;
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

form{
    width: 500px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

form input,
form textarea{
    padding: 15px;
    border: none;
    border-radius: 10px;
    outline: none;
    font-size: 16px;
}

form button{
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: white;
    color: black;
    cursor: pointer;
    font-size: 18px;
    transition: .3s;
}

form button:hover{
    background: #ddd;
}

.news-card{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.about-card{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.news-card p,
.about-card p{
    width: 700px;
    background: rgba(255,255,255,.08);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    font-size: 22px;
    line-height: 1.8;
}

.contact-desc {
    text-align: center;
    color: #ffffff; 
    margin-bottom: 20px; 
}