.contact-section {
    background-color: white;
    padding: 60px 20px;
    color: white;
  }
  
  .contact-title {
    text-align: center;
    font-size: 30px;
    color:darkcyan;
    margin-bottom: 50px;
    text-shadow: 0 0 6px rgba(106, 5, 195, 0.5);
  }
  
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: auto;
  }
  
  /* Contact Info Section */
  .contact-info {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  
  .info-block {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: darkcyan;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.1);
    transition: background 0.3s;
  }
  
  .info-block:hover {
    background-color:black;
  }
  
  .icon {
    font-size: 22px;
    color: #a855f7;
  }
  
  /* Contact Form */
  .contact-form {
    flex: 1 1 400px;
    background-color:darkcyan;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.1);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: white;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
  }
  
  .contact-form textarea {
    height: 120px;
    resize: none;
  }
  
  .contact-form button {
    background-color: white;
    color: black;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: black;
    color: white;
  }
  














      
   



#contactSection{
    margin-top: 150px;
} 

@media screen and ( max-width:500px)
{  .container{
    margin-top: 50px;
    grid-template-columns: repeat( auto-fit, minmax(100px,100%));

}
.box1 ,.box2{
    grid-area: auto/auto/auto/auto;
    
}
    
}
 @media (max-width:1000px) and (min-width:500px){
    .container{
        margin-top: 50px;
        grid-template-columns: repeat( auto-fit, minmax(100px,100%));
        word-wrap: break-word;
    }
    .box1 ,.box2{
        grid-area: auto/auto/auto/auto;
        
    }
     
    } 
