.contact {
    padding: 6rem 2rem 4rem;
    background-color: var(--white);
  }
  
  .contact .section-title {
    font-size: 3rem;
    text-align: center;
    width: 100%;
    margin-bottom: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-top: 100px;
    z-index: 2;
  }
  
  .contact-container {
    display: flex;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .contact-form {
    flex: 2;
  }
  
  .contact-info {
    flex: 1;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: left;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: "Montserrat", sans-serif;
  }
  
  .form-group textarea {
    height: 150px;
    resize: vertical;
  }
  
  button[type="submit"] {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  
  button[type="submit"]:hover {
    opacity: 0.9;
  }
  
  .contact-info h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .contact {
    position: relative;
    padding: 80px 20px;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--background-color);
    overflow: hidden;
    z-index: 2;
  }
  
  .diamond1 {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 4rem;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
  }
  
  .diamond2 {
    position: absolute;
    top: 30%;
    right: 5%;
    width: 3rem;
    opacity: 0.6;
    animation: float-reverse 8s ease-in-out infinite;
    z-index: 1;
  }
  
  .diamond3 {
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 4rem;
    opacity: 0.5;
    animation: float-reverse 7s ease-in-out infinite;
    z-index: 1;
  }
  
  .diamond4 {
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 4rem;
    opacity: 0.6;
    animation: float 9s ease-in-out infinite;
    z-index: 1;
  }
  
  .divider {
    border-left: 1px solid black;
    height: 500px;
    left: 50%;
    margin-left: -3px;
    top: 0;
  }
  
  @media (max-width: 480px) {
    .divider {
      border-top: 1px solid black;
    }
    
    .contact .section-title {
      font-size: 2rem;
      padding-top: 60px;
    }
  
    .contact-container {
      flex-direction: column;
      gap: 2rem;
    }
  
    .form-group input,
    .form-group textarea {
      padding: 1rem;
    }
  
    button[type="submit"] {
      padding: 1rem 2rem;
      font-size: 1.2rem;
    }
  
    .contact-info h2 {
      font-size: 1.2rem;
    }
  }
  
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }

    .divider{
        border-left: none; 
        border-top: 1px solid black; 
        width: 100%; 
        height: 1px; 
        margin: 2rem 0; 
    
    }
  
    .contact .section-title {
      font-size: 2.5rem;
      padding-top: 80px;
    }
  
    .form-group input,
    .form-group textarea {
      padding: 1rem;
    }
  
    button[type="submit"] {
      padding: 1rem 2rem;
      font-size: 1.1rem;
    }
  }
  
  @keyframes float {
    0% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-20px) rotate(5deg);
    }
    100% {
      transform: translateY(0px) rotate(0deg);
    }
  }
  
  @keyframes float-reverse {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(20px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  
