*{
    margin: 0;
    padding: 0;
    font-family: "poppins";
}
body{
    justify-content: center;
    align-items: center; 
    min-height: 100vh;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 90%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 400px;
    z-index: 100;
}

.navbar a{
    font-size: 18px;
    color: #ededed;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
transition: .3s;
}

.navbar a:hover {
    color: #00abf0;
    
}

.logo {
    font-size: 25px;
    color: #ededed;
    text-decoration: none;
    font-weight: 600;
}


.container{
    position: relative;
    width: 100%;
    height: 100vh;
    background: #081b29;
    display: flex;
    justify-content: center;
    align-items: center;
}
.item{
    width: 100%;
    height: 550px;
    max-width: 820px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, .4);
    overflow: hidden;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    z-index: 1000;
}

.contact{
    background: #fff;
}
.submit-form{
    background: #8f50ec;
}
.first-text{
    color: #8f50ec;
    padding-left: 20px;
    padding-top: 20px;
    font-size: 35px;
    font-weight: 600px;
}
.image{
    height: 320px;
    width: 320px;
}

.social-media{
    display: flex;
    list-style: none;
}
ul li{
    padding-left: 15px;
    font-size: 24px;
    margin-top: 10px;
}
.social-media i{
    background: #8f50ec;
    padding: 5px;
    border-radius: 5px;
    transition: .3s;
    color: #fff;
}

.social-media i:hover{
    background: #fff;
    color: #8f50ec;
}

.second-text{
    font-weight: 500px;
    color: #8f50ec;
    padding-left: 20px;
}

.third-text{
    font-size: 25px;
    position: relative;
    top: 20px;
    left: 20px;
    padding-top: 10px;
    color: #fff;
}

form{
    padding: 0 50px;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.input-box{
    height: 40px;
    width: 70%;
    margin: 30px 0;
    position: relative;
}

.input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 20px;
    outline: none;
    padding-left: 10px;
    color: #fff;
    font-size: 16px;

}

.input-box label{
    position: absolute;
    top: 50%;
    left: 10px;
    padding-left: 10px;
    transform: translateY(-50%);
    font-size: 15px;
    font-weight: 500px;
    color: #fff;
    transition: .3s;
}

.input-box .input:focus ~ label,
.input-box .input:valid ~ label{
   top: -1px;
   left: 10px;
   background: #8f50ec;
   font-weight: 500px;
   font-size: 12px;
   padding: 5px;
}
textarea.input{
    resize: none;
    min-height: 150px;
    overflow: auto;
}

.btn{
    position: relative;
    top: 100px;
    background: #fff;
    outline: none;
    border: none;
    border-radius: 4px;
    height: 45px;
    width: 30%;
    font-size: 16px;
    color: #8f50ec;
    cursor: pointer;
    font-weight: 500px;
}


footer {
    background-color: #2c3e50; 
    color: #ecf0f1; 
    padding: 40px 0;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-container {

    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 500px;
    padding: 0 20px;
  }
  
  .footer-section {
  
    min-width: 250px;
    padding: 10px;
    text-align: center;
  }
  
  .footer-section p {
    margin: 10px 0;
  }
  
  .footer-section strong {
    font-size: 1.2em;
  }
  
  .footer-section a {
    color: #ecf0f1;
    text-decoration: none;
  }
  
  .footer-section a:hover {
    color: #3498db; 
  }
  

  .social-media a {
    margin: 0 10px;
    font-size: 24px;
    display: inline-block;
  }
  
  .social-media a i {
    transition: color 0.3s ease;
  }
  
  .social-media a i:hover {
    color: #3498db;
  }
  
