/* General Reset */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

/* Background Section */
.background {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #000;
}

/* Image Container for Relative Positioning */
.image-container {
  position: relative;
  max-width: 100%;
  width: auto;
}

.background-image {
  display: block;
  width: 100%;
  height: auto;
}

/* Contact Overlay */
.contact-overlay {
  position: absolute;
  bottom: 26%; /* Adjust this to vertically align the clickable area */
  left: 50%;    /* Horizontally center the clickable area */
  transform: translate(-50%, 50%); /* Fine-tune positioning (adjust translateY if needed) */
  width: 20%; /* Adjust width to match the "Contact Us" text */
  height: 8%; /* Adjust height to match the "Contact Us" text */
  cursor: pointer;
  background: rgba(255, 255, 255, 0); /* Transparent clickable area */
  /*border: 2px dashed rgba(255, 255, 255, 0.2); /* Optional for testing alignment; remove when done */
}

/* Popup Styling */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  position: relative;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

/* Form Styling */
form label {
  display: block;
  margin: 10px 0 5px;
  text-align: left;
}

form input, form textarea {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
}

form input:focus, form textarea:focus {
  border-color: #f7941d;
}

form button {
  padding: 10px 20px;
  background: linear-gradient(to right, #f7941d, #ff5722);
  border: none;
  color: white;
  font-size: 16px;
  cursor: 
