/* styles.css */

body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.landing-page {
  width: 90%;
  max-width: 800px;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
}

/* Logo Section */
.logo-container {
  text-align: center;
  margin-bottom: 20px;
}

.logo-container img {
  width: 150px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  animation: bounce 2s infinite;
}

/* Header Styling */
header h1 {
  font-size: 2.5rem;
  color: #6a11cb;
  margin: 0;
}

header p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

/* Coming Soon Section */
.coming-soon h2 {
  font-size: 1.8rem;
  color: #2575fc;
}

.coming-soon p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

/* Enquiry Form */
.enquiry h2 {
  font-size: 1.6rem;
  color: #6a11cb;
  margin-bottom: 10px;
}

.enquiry p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.enquiry-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.enquiry-form input, 
.enquiry-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.enquiry-form button {
  display: block;
  width: 100%;
  padding: 10px 15px;
  font-size: 1rem;
  color: #fff;
  background-color: #2575fc;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s;
}

.enquiry-form button:hover {
  background-color: #6a11cb;
  transform: scale(1.05);
}

/* Footer */
footer {
  margin-top: 20px;
}

footer p {
  font-size: 0.9rem;
  color: #555;
  margin: 5px 0;
}

footer a {
  color: #2575fc;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.left-align-label {
  text-align: left;
  display: block;
  margin-bottom: 5px;
}

/* update csss new */
body {
  background: #ffffff; /* White background */
  color: #333; /* Text color remains */
}
header h1, .coming-soon h2, .enquiry h2 {
  color: #FF6F00; /* Orange color for primary headings */
}

.enquiry-form button {
  background-color: #FF6F00; /* Orange button */
}

.enquiry-form button:hover {
  background-color: #FF8C33; /* Slightly lighter orange on hover */
}

footer a {
  color: #FF6F00; /* Orange links */
}
header h1, .coming-soon h2, .enquiry h2 {
  color: #FF6F00; /* Orange color for primary headings */
}

.enquiry-form button {
  background-color: #FF6F00; /* Orange button */
}

.enquiry-form button:hover {
  background-color: #FF8C33; /* Slightly lighter orange on hover */
}

footer a {
  color: #FF6F00; /* Orange links */
}
.enquiry-form input:focus, 
.enquiry-form textarea:focus {
  border: 1px solid #FF6F00; /* Orange border on focus */
  box-shadow: 0 0 5px rgba(255, 111, 0, 0.5); /* Glow effect */
}
.logo-container img {
  border-radius: 10px; /* Subtle round corners */
  background-color: #ffffff; /* White background */
}
.enquiry-form button:active {
  transform: scale(0.95);
}
@media (max-width: 600px) {
  .landing-page {
    padding: 20px 10px;
  }

  header h1 {
    font-size: 2rem;
  }

  .enquiry-form input, 
  .enquiry-form textarea {
    font-size: 0.9rem;
  }
}
footer p, footer a {
  text-align: center;
  display: block;
}
.enquiry-form {
  width: 100%; /* Take the full width of the parent container */
  max-width: 500px; /* Restrict the maximum width of the form */
  margin: 0 auto; /* Center the form */
  padding: 10px; /* Add inner spacing */
  box-sizing: border-box; /* Include padding in width calculation */
}

.enquiry-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  text-align: left; /* Align labels to the left */
}

.enquiry-form input, 
.enquiry-form textarea {
  width: 100%; /* Ensure inputs take the full width of the form */
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
  box-sizing: border-box; /* Include padding in width calculation */
}

.enquiry-form textarea {
  resize: none; /* Disable resizing for better UI consistency */
}

.enquiry-form button {
  width: 100%; /* Ensure the button matches the width of the inputs */
  padding: 10px 15px;
  font-size: 1rem;
  color: #fff;
  background-color: #FF6F00; /* Orange theme */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s;
}

.enquiry-form button:hover {
  background-color: #FF8C33; /* Slightly lighter orange on hover */
}
.enquiry {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
@media (max-width: 600px) {
  .enquiry-form {
    padding: 5px;
  }

  .enquiry-form input, 
  .enquiry-form textarea {
    font-size: 0.9rem;
  }
}
