/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: white;
  color: #333;
 /* background-image: url('../img/Visual identity  Dealify-01_page-0004.jpg');*/
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow-x: hidden;
  height: 100%;
}



*:not(.navbar):not(.navbar *):not(.offer-bar):not(.offer-bar *) {
    box-sizing: border-box;
}
  
  /* Contact Section */
  .contact-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px;
  }
  
  .contact-left {
    flex: 1;
    padding-right: 30px;
  }
  
  .contact-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00cfff;
  }
  
  .contact-description {
    font-size: 1rem;
    color: #00cfff;
    margin-top: 20px;
    line-height: 1.6;
  }
  
  .contact-right {
    flex: 1.2;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  label {
    display: block;
    font-size: 1rem;
    color: #00cfff;
    margin-bottom: 8px;
  }
  
  .name-fields {
    display: flex;
    gap: 15px;
  }
  
  input[type="text"],
  input[type="email"],
  textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #00cfff;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  textarea {
    resize: none;
    height: 100px;
  }
  
  .file-upload {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    border: 2px dashed #00cfff;
    border-radius: 5px;
    color: #00cfff;
    cursor: pointer;
    position: relative;
  }
  
  .file-upload input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
  }
  
  .file-upload span {
    pointer-events: none;
  }
  
.submit-btn {
  background-color: #fa5391; /* main pink */
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
  background-color: #e74e85; /* darker pink for hover */
  transform: translateY(-2px);
}

  
  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .contact-section {
      flex-direction: column;
      align-items: center;
      padding: 30px;
    }
  
    .contact-left,
    .contact-right {
      flex: none;
      width: 100%;
      padding: 0;
    }
  
    .name-fields {
      flex-direction: column;
    }
  }
#languageLabel #languageText {
  color: white !important;
  margin-left: 10px !important;
  display: inline-block !important;
}
.language-switcher-container {
  color: white !important;
  padding-left: 30px !important; /* or margin-left */
  cursor: pointer; /* move cursor pointer here if you want */
  display: inline-block; /* if needed */
  margin-top: 10px;
}
  