@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body{
    background: #000000;
    font-family: "Poppins", serif;
}
.item{
    margin-top: 40px;
    text-align: center;
   
  
}
form{
    animation: fadeIn 1s ease-in-out;
}

.item h1{
    color: white;
    font-weight: bolder;
  
}
.item h1 span:nth-child(2){
    color: aqua;
    border-bottom: 2px solid rgb(255, 0, 0);
    text-shadow: 0px 0px 25px aqua

}
.item h1 span:nth-child(1){
    border-bottom: 2px solid rgb(0, 8, 255);
    text-shadow: 0px 0px 25px aqua
}

.item2{
    margin-top: 90px;
    display: flex;
    justify-content: center;


   
}
#name ,#email,#number,#subject{
    outline:none;
    width: 350px;
color: white;

    padding: 15px 15px;
    border: none;
    border-radius: 12px;
    background: #000000;
    font-size: 18px;
    margin-top: 12px;
    border: 3px solid aqua;
}
.item3 textarea{
    outline:none;
    margin-top: 13px;
    padding-top: 8px;
    padding-left: 9px;
   width: 400px;
   height: 200px;
   border-radius: 8px;
   background: #000;
   font-size: 18px;
   border: 2px solid aqua;
   margin-left: 22px;
   color: white;


  
}

.item3{
    animation: fade 1s ease-in-out;
}


.item3 button:hover{
    transform: scale(1.2);
  border-radius: 22px;
  font-size: 20px;
   
}


.item3 button{
    outline:none;
 color: rgb(0, 0, 0);
    padding: 12px 20px;
    border: none;
    border-radius: 22px;
    background: aqua;
    box-shadow: 0px 0px 25px aqua;
    font-size: 18px;
    cursor: pointer;
    margin-top: 2px;
    align-self: center;

    transition: color 0.3s, transform 0.3s;
  
}
.item3{
  
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media only screen and ( max-width: 805px) {
  
     
    #name ,#email,#number,#subject{
        width: 320px;
    }
   .item3 textarea{
    width: 380px;
    height: 180px;
   }
}

@media only screen and ( max-width: 751px) {

    .item2{

         display: flex;
        flex-direction: column;
        

    }

    .item{
        margin-top: 10px;
        text-align: center;
        
      
    }

    .item h1{
        color: white;
        font-weight: bolder;
        font-size: 44px;
      
    }

 .item2{
    display: flex;
    justify-content: center;text-align: center;
 }
 .item3 textarea{
    margin-top: 30px;
    margin-right: 29px;
 }

 .item2{
    margin-top: 50px;
}
}

@media only screen and ( max-width: 407px) {
    .item3 textarea{
    width: 315px;
    height: 180px;
}
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translatex(-80px);
    }

    to {
        opacity: 1;
        transform: translatex(0);
    }
}
@keyframes fade {
    from {
        opacity: 0;
        transform: translatex(220px);
    }

    to {
        opacity: 1;
        transform: translatex(0);
    }
}

/* Footer Styles */
footer {
    margin-top: 85px;
    background: linear-gradient(to bottom, #1e1e2f, #111);
    color: #ccc;
    padding: 40px 20px;
    
  }
  
  .footer-container {
   
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-section {
    flex: 1;
    margin: 20px;
    min-width: 250px;
  }
  
  .footer-section h4 {
    color: aqua;
    font-size: 18px;
    margin-bottom: 10px;
    border-bottom: 2px solid rgb(255, 0, 0);
    display: inline-block;
    padding-bottom: 5px;
    text-shadow: 0px 0px 19px aqua;
  }
  
  .footer-section p,
  .footer-section ul {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-section ul li a:hover {
 text-shadow: 0px 0px 20px rgb(211, 31, 31);
   color:red;
   height: 30px ;width: 50px;
   
   transform: scale(6.9);


  }
  .footer-section ul li a{
    transition: color 0.3s, transform 0.3s;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    
  }
  
  .social-icons a {
    color: #ccc;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
  }
  
  .social-icons a:hover {
    box-shadow: 0px 0px 25px aqua;
    transform: scale(1.2);
    border-radius: 8px;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
  }
  
  .footer-bottom p {
    margin: 0;
    color: #777;
  }
  
  .footer-bottom p a {
    color: #f4a261;
    text-decoration: none;
  }
  
  .footer-bottom p a:hover {
    text-decoration: underline;
  }

  .footer-section p{
   width: 300px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: start;
      margin-left: 0px;
    }
  }
  
  .social-icons i{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  background-color: white;
  border: 2px solid white;
  border-radius: 8px;

  }

  #heart:hover{
font-size: 34px;
cursor: pointer;

transform: scale(1.2);
  }

  #heart{
    transition: color 0.3s, transform 0.3s;
  }

