#particles-js {
    background-image: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
        url(images/Background\ contact.webp);
    height: 200px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.websiter-contact {
  margin-top: -140px;
  margin-bottom: 90px;
    font-family: sans-serif;
    color: #ffffff;
    text-align: center; /* Ensure text inside is centered */
}

.websiter-contact h1 {
  z-index: 10;
  position: relative;
    font-size: 42px;
    margin: 0;
}

.breadcrumb {
  z-index: 10;
  position: relative;
    font-size: 16px;
    color: #dddddd;
    margin-top: 10px;
}

.contact-page .contact_content {
    display: none;
}


.contact-section {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 20px;
    background-color: #fff;
    border-bottom: 2px solid #3E5CFC;
    margin: 20px auto;
    max-width: 1200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .contact-column {
    text-align: center;
    max-width: 300px;
  }
  
  .contact-column img {
    width: 70px;
    height: auto;
    margin-bottom: 10px;
  }
  
  .contact-column h2 {
    font-size: 0.9em;
    color: #8a8a8a;
    margin-bottom: 8px;
  }
  
  .contact-column p {
    font-family:sans-serif;
    font-size: 1.2em;
    color: #333333;
    margin: 5px 0;
 
  }
  
  .contact-column a {
    text-decoration: none;
    color: inherit;
  }
  
  .contact-column a:hover {
    color: #007bff;
  }

  .heading-contact{
    margin-top: 40px;
    color:#3E5CFC ;
    text-align: center;
    font-size: 20px;
  }
  .subheading-contact{
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
  }



  



  
  .contact-form-contactpage {
    padding-bottom: 20px;
    background-color: #ffffff;
    position: relative;
    display: flex;
    justify-content: center; 
  }
  
  
  
  .contactform {
    padding: 1rem 0rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1000px; /* You can adjust this to your preferred form width */
    margin: 0 auto; /* Centers the form */
  
  }
  

  
  .input-container {
    position: relative;
    margin: 1rem 0;
 
  }
  
  .input {
    width: 100%;
    outline: none;
    border: 1px solid #5a5a5a;
    background: white;
    padding: 0.6rem 1.2rem;
    color: #000000;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: 0.3s;
  }
  
  textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 22px;
    resize: none;
    overflow-y: auto;
  }
  
  .input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #000000;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: 0.5s;
  }
  
  .input-container.textarea label {
    top: 1rem;
    transform: translateY(0);
  }
  

  .contact-btn {
    font-weight: 600;
    font-size: 14px;
 
    padding: 14px 52px;
    background: linear-gradient(to right, #8a2be2, #0F6AE1);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
    
  }
  .contact-btn {
    display: block;
    width: auto; /* Or set to 100% if you want it to span the entire form width */
    margin: 0px 0; /* Optional: Adds spacing above and below the button */
  }
  
  .contact-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.273);
    opacity: 0;
    animation: shineLeftRight 2s linear infinite alternate;
  }
  
  @keyframes shineLeftRight {
    0% {
      left: -100%;
      opacity: 0;
    }
    50% {
      left: 100%;
      opacity: 1;
    }
    100% {
      left: -100%;
      opacity: 0;
    }
  }
  
  .contact-btn:hover::before {
    animation: shineRightLeft 2s linear infinite alternate;
  }
  
  @keyframes shineRightLeft {
    0% {
      left: 100%;
      opacity: 0;
    }
    50% {
      left: -100%;
      opacity: 1;
    }
    100% {
      left: 100%;
      opacity: 0;
    }
  }
  
  
  .input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
  }
  
  .input-container span:before,
  .input-container span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: #ffffff;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .input-container span:before {
    left: 50%;
  }
  
  .input-container span:after {
    right: 50%;
  }
  
  .input-container.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
  }
  
  .input-container.focus span:before,
  .input-container.focus span:after {
    width: 50%;
    opacity: 1;
  }
  

  

/* Mobile responsiveness */
@media (max-width: 768px) {
    .contact-section {
        margin-top: -10px;
      flex-direction: column;
      align-items: center;
    }
    
    .contact-column {
      max-width: 100%;
      margin-bottom: 20px;
    }
    
    .contact-column img {
      width: 50px;
      height: auto;
    }
    
    .contact-column h2 {
      font-size: 1em;
    }
    
    .contact-column p {
      font-size: 1.2em;
    }
    .subheading-contact {
        font-size: 26px;
        margin-bottom: 0;
    }
    .contactform{
padding-left: 20px;
padding-right: 20px;
    }
  }