&{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing; border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    background: #000;
    color: #fff;
}
#header{
    width: 100%;
    height:20vh;
    background-color: #000;
    background-size: cover;
    background-position: top;
}
.container{
    padding:10px 10%;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo{
    width: 240px;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    position: relative;
}
.header-text{
    margin-top: 2%;
    font-size: 35px;
    font-style: bold;
    text-align: center;
}

.hero {
    width: 100%;
    min-height: 100vh;
    background: #000; /* Gradient background with purple, green, and blue */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
}

.hero h1 {
    font-size: 45px;
    font-weight: 500;
    margin-top: -50px;
    margin-bottom: 50px;
   
}
.hero h1 span {
    color: #ff2962da; /* White text color for the <span> element */
    font-weight: bold; /* Bolder font weight */
}

textarea {
    width: 600px;
    height: 250px;
    background: rgb(159, 85, 136); /* Slightly transparent white background for the textarea */
    color: #fff; /* Dark text color */
    font-size: 15px;
    border: 0; /* Light gray border */
    outline: 0;
    padding: 20px;
    border-radius: 10px;
    resize: none;
    margin-bottom: 30px;
}

textarea::placeholder {
    font-size: 16px;
    color: #ddd; /* Lighter text color for the placeholder */
}
.row{
    width:600px;
    display: flex;
    align-items: center;
    gap: 20px
}
button{
    background: #ff2962da;
    color: #fff;
    font-size: 16px;
    padding: 10px 30px;
    border-radius: 35px;
    border: 0;
    outline: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}
button img{
    width: 16px;
    margin-right: 10px;
}
select{
    flex: 1;
    color: #fff;
    background: rgb(159, 85, 136);
    height: 50px;
    padding: 0 20px;
    outline: 0;
    border: 0;
    border-radius: 35px;
    appearance: none;
    background-image: url(dropdown.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position-x: calc(100% - 20px);
    background-position-y: 20px;
}