/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: url('background-image.jpg') no-repeat center center fixed; /* Add your background image */
    background-size: cover;
    margin: 0;
    padding: 0;
    position: relative;
  }
  
  body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(110, 110, 110, 0.4); /* Grey transparent overlay */
    z-index: -1;
  }
  
  /* Logo Styling */
.nav-logo {
  max-width: 150px; /* Restrict logo size */
  height: auto; /* Maintain aspect ratio */
  padding: 10px;
  display: block;
}

/* Navigation Bar Styling */
nav {
  display: flex;
  justify-content: space-between; /* Space out logo and menu items */
  align-items: center; /* Center vertically */
  padding: 10px 20px;
  background-color: #333; /* Background color for the navbar */
  color: white; /* Text color */
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px; /* Space between menu items */
}

nav ul li {
  display: inline-block;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 16px;
}

nav ul li a:hover {
  background-color: #555; /* Hover effect */
  border-radius: 5px;
}
 
/* General Styles for Desktop (Large Screens) */
@media (min-width: 769px) {
  .menu-toggle {
    display: none; /* Hide toggle on larger screens */
  }

  nav ul {
    display: flex; /* Display the navigation menu items as flex */
    gap: 20px; /* Spacing between items */
  }

  nav ul li {
    display: inline-block;
  }

  nav ul li a {
    color: white;
    font-size: 16px;
    padding: 8px 16px;
    text-decoration: none;
  }

  nav ul li a:hover {
    background-color: #555; /* Hover effect */
    border-radius: 5px;
  }
}

/* For Mobile Devices */
@media (max-width: 768px) {
  .nav-logo {
    max-width: 120px; /* Reduce logo size for smaller screens */
  }

  nav ul {
    display: none; /* Hide menu items on small screens */
  }

  .menu-toggle {
    display: block;
    background-color: #333;
    padding: 10px;
    cursor: pointer;
    color: white;
    font-size: 24px;
  }

  .menu-toggle.active + ul {
    display: block; /* Show the menu when toggled */
    position: absolute;
    top: 60px; /* Positioning the dropdown */
    left: 0;
    width: 100%;
    background-color: #333;
  }

  nav ul li {
    display: block;
    text-align: center;
    padding: 10px 0;
  }
}
  /* Main Container */
  .main-container {
    text-align: center;
    padding: 20px;
    color: #fff;
  }
  
  h1 {
    color: #ff891c;
    font-size: 40px;
  }
  
  p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
  }
  
  /* Form Styling */
form {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  
}

/* Form width for larger screens */
@media (min-width: 1024px) {
  form {
    max-width: 600px; /* Increase the width for larger screens */
  }
}

label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ddd;

}
form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
  color: #333;
  background-color:  rgba(255, 255, 255, 0.9);
}

form textarea::placeholder {
  color: grey; /* Placeholder text color */
  font-style: italic; /* Optional: make placeholder text italic */
}

form input, form select, form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

button {
  background-color: #ff7300;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
}

button:hover {
  background-color: #e06600;
}
  
/* WhatsApp Popup */
.whatsapp-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366; /* WhatsApp Green */
  padding: 10px 20px;
  border-radius: 25px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  display: flex; /* Flexbox for alignment */
  align-items: center; /* Vertical alignment */
  justify-content: center; /* Horizontal alignment */
}

.whatsapp-popup img {
  filter: brightness(0) invert(1);
  width: 20px; /* Adjust icon size */
  height: 20px;
  margin-right: 10px; /* Space between icon and text */
}

.whatsapp-popup a {
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
}
  
  /* Footer */
  footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
  }
  
  .footer-container a {
    color: white;
    text-decoration: none;
  }
  
  .footer-container a:hover {
    text-decoration: underline;
  }
  
  /* Social Media Icons */
  .social-icons img {
    filter: brightness(0) invert(1);
    width: 30px;
    height: 30px;
    margin: 0 10px;
  }
  
  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .menu-toggle {
      display: flex;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 70px;
      left: 0;
      background-color: rgba(0, 0, 0, 0.9);
    }
  
    .nav-links li {
      text-align: center;
      margin: 20px 0;
    }
  
    .navbar.active .nav-links {
      display: flex;
    }
  }
  