/* ----------------- Contact Style ----------------- */

body{
    background-image: url('../img/background.jpg'); /* Replace with your image path */
    background-size: cover; /* Ensures the image covers the entire background */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-position: center center; /* Centers the image */
    background-attachment: fixed; /* Keeps the background fixed during scrolling */
}

/* ----------------- Contact Style ----------------- */

.support-header h1 {
  font-family: 'Lexend', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2.7rem;
  color: #000000; /* Deep blue for strong impact */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem; /* Space for the line */
  text-align: center;
  margin-top: 67px;
  position: relative;
}
.support-header h1::after {
  content: '';
  display: block;
  width: 200px;
  height: 6px;
  background: linear-gradient(90deg, #940bfc, #02fddc);
  margin: 0 auto;
  border-radius: 2px;
  margin-top: 0.5rem;
}

  
  /* Contact Section */
  .contact {
    position: relative;
    padding: 60px 0;
    background: #f2f2f2;
    background-image: url('../img/background.jpg'); /* Replace with your image path */
    background-size: cover; /* Ensures the image covers the entire background */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-position: center center; /* Centers the image */
    background-attachment: fixed; /* Keeps the background fixed during scrolling */
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  }
  
  .contact .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
  
  /* White Card */
  .white-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 0 auto;
  }
  
  /* Split Content: Get in Touch + Image */
  .split-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px; /* Space between content and image */
    margin-bottom: 30px;
  }
  
  .get-in-touch,
  .contact-image {
    flex: 1;
  }
  
  .get-in-touch {
    color: #333;
  }
  
  .get-in-touch h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #1b02a8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
    
  }
  
  .get-in-touch p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    color: #420142; /* Rich Purple */
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  /* Contact Details */
  .contact-details {
    list-style: none;
    padding: 0;
  }
  
  .contact-details li {
    display: flex; /* Use flexbox for alignment */
    align-items: flex-start; /* Align items at the top */
    margin-bottom: 1rem;
  }
  
  .contact-details li i {
    font-size: 24px;
    color: #0d05fb;
    margin-right: 1rem; /* Space between icon and text */
    flex-shrink: 0; /* Prevent the icon from shrinking */
    
  }
  
  .contact-details li span {
    font-size: 1.2rem;
    line-height: 1.4;
    flex-grow: 1; /* Allow text to take up remaining space */
  }
  
  .contact-details li strong {
    font-weight: bold;
    display: block; /* Ensure strong tag is on its own line */
    margin-bottom: 0.25rem; /* Space between label and details */
  }
  
  .contact-details li a {
    color: #1468f8;
    text-decoration: none;
  }
  
  .contact-details li a:hover {
    text-decoration: underline;
  }
  
  .contact-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  /* Full-Width Form */
  .send-message {
    margin-top: 20px;
  }
  
  .send-message h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #1b02a8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
    
  }
  
  .send-message form {
    margin-top: 1rem;
  }
  
  .send-message .form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
  }
  
  .send-message .form-group {
    flex: 1;
  }
  
  .send-message input,
  .send-message textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1.2rem;
	background: linear-gradient(135deg,#e9f3fa,#fff1f8);
  }
  
  .send-message button[type="submit"] {
    background: #1468f8;
    border: none;
    padding: 10px 20px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
    font-family: 'Quicksand', sans-serif;
  }
  
  .send-message button[type="submit"]:hover {
    background: #353535;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .split-content {
      flex-direction: column;
    }
  
    .get-in-touch,
    .contact-image {
      flex: none;
      width: 100%;
    }
  
    .contact-image img {
      height: auto;
    }
  }
  
  @media (max-width: 768px) {
    .contact-header h1 {
      font-size: 2rem;
      padding-top: 50px;
    }
  
    .get-in-touch h2 {
      font-size: 1.8rem;
    }
  
    .contact-details li i {
      font-size: 20px;
    }
  
    .contact-details li span {
      font-size: 1.2rem;
    }
  }
  
  @media (max-width: 480px) {
    .contact-header h1 {
      font-size: 1.8rem;
      padding-top: 40px;
    }
  
    .get-in-touch h2 {
      font-size: 1.6rem;
    }
  
    .contact-details li i {
      font-size: 18px;
    }
  
    .contact-details li span {
      font-size: 1rem;
    }
  
    .send-message h2 {
      font-size: 1.6rem;
    }

    .support-header h1 {
      font-size: 2rem;
      margin-top: 40px;
    }
    .support-header h1::after {
      width: 160px;
      height: 4px;
      margin-bottom: 10px;
     }

  }