 #contact{
  
  padding-top: 70px;
 }
    .contact-container {
        display: flex;
        width: 65%;
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        overflow: hidden;
        animation: fadeIn 1s ease-in-out;
        font-family: 'Roboto', sans-serif;
               justify-content: center;
        align-items: center;
      }
      
      .left-section {
        flex: 1;
      }
      
      .left-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      
      .right-section {
        flex: 1;
        padding: 40px;
        background-color: #fff;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
      }
      
      .right-section h1 {
        color: #f97300; /* Orange color */
        margin-bottom: 20px;
      }
      
      .right-section form {
        display: flex;
        flex-direction: column;
      }
      
      .right-section label {
        margin-bottom: 5px;
        color: #002b5c; /* Midnight blue color */
      }
      
      .right-section input, .right-section textarea {
        margin-bottom: 20px;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
      }
      
      .right-section button {
        padding: 10px;
        background-color: #f97300; /* Orange color */
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
      }
      
      .right-section button:hover {
        background-color: #e55c00;
      }
      
      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }