/* Global Styles */
body {
  background-image: url('https://static.vecteezy.com/system/resources/previews/056/513/884/non_2x/an-evocative-interior-scene-featuring-a-textured-wall-painted-in-a-vibrant-gradient-bathed-in-a-blend-of-light-and-shadow-and-a-floor-with-a-cool-hue-free-photo.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin: 0;
  min-height: 100vh;
}


/* Main form container */
.form-wrapper {
  width: 92%;
  max-width: 700px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 255, 191, 0.2);
  animation: fadeIn 0.8s ease-in-out;
  border: 1px solid rgba(0, 255, 191, 0.1);
  margin: 50px auto;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Heading and Subtext */
h1 {
  text-align: center;
  font-size: 3rem;
  color: #00ffc3;
  margin-bottom: 10px;
}

.intro {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}

/* Input Group Styling */
.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #e2e2e2;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  background-color: #000000;
  color: #ffffff;
  border: 2px solid #00ffc3;
  border-radius: 12px;
  box-sizing: border-box;
  transition: border 0.3s, box-shadow 0.3s;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border: 2px solid #00ffc3;
  box-shadow: 0 0 8px rgba(0, 255, 195, 0.4);
  outline: none;
  background-color: #111;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: #bbbbbb;
}

/* Phone number layout */
.phone-number-wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.phone-number-wrapper select {
  flex: 1 1 30%;
}

.phone-number-wrapper input {
  flex: 1 1 65%;
}

/* Dropdown appearance */
.input-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.input-group select option[disabled] {
  color: #999;
}

/* Centered Button */
.center-button {
  text-align: center;
}

.submit-btn {
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: bold;
  color: #121212;
  background: #00ffc3;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 255, 195, 0.5);
}

/* Confirmation message */
.confirmation-message {
  text-align: center;
  margin-top: 25px;
  color: #00ffae;
  font-weight: bold;
  font-size: 1.1rem;
}
/* Footer Styling */
footer {
  background-color: #333;   /* Dark background for the footer */
  color: white;             /* White text color */
  padding: 20px 0;          /* Padding around the footer */
  text-align: center;       /* Center-align the content */
  font-size: 14px;          /* Font size for the footer text */
  position: relative;
  bottom: 0;
  width: 100%;
}

footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;  /* Center content */
  padding: 10px;
}

footer .social-links a {
  margin: 0 10px;
  color: white;
  font-size: 20px;
  text-decoration: none;
}

footer .social-links a:hover {
  color: #007bff;  /* Change color on hover */
}

/* Icons */
footer .social-links i {
  font-size: 20px;
}


header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
}

.logo img {
  max-height: 50px; /* Adjust the size of the logo */
  max-width: 150px; /* Adjust the width if needed */
}
