/* General Styles */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
  background: linear-gradient(135deg, #2c3e50, #34495e);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Header */
header {
  background: rgba(44, 62, 80, 0.9);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
}

.company-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #e67e22;
}

/* Hamburger Menu */
#menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  width: 25px;
  height: 3px;
  background: #fff;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

/* Hero Section */
.hero {
  min-height: 100vh; /* Full viewport height */
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  text-align: center; /* Center text */
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 73, 94, 0.9));
  width: 100%; /* Full width */
}

.hero .container {
  width: 100%;
  max-width: 1200px; /* Limit container width */
  margin: 0 auto; /* Center the container */
  padding: 0 20px; /* Add padding to prevent content from touching edges */
  box-sizing: border-box; /* Include padding in the element's total width */
}

.hero-content {
  max-width: 800px; /* Limit content width for better readability */
  margin: 0 auto; /* Center the content */
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center; /* Center buttons */
}

.btn-primary, .btn-secondary {
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #e67e22;
  color: #fff;
}

.btn-primary:hover {
  background: #d35400;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #2c3e50;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.features p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  text-align: center;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 1rem;
  color: #ddd;
}

/* About Us Section */
/* About Us Section */
.about {
  padding: 80px 0;
  background: rgba(44, 62, 80, 0.9);
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.about p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  text-align: center;
}

.email-us {
  font-size: 1.2rem;
  margin-top: 20px;
  text-align: center;
}

.email-us a {
  color: #e67e22;
  text-decoration: none;
  font-weight: 700;
}

.email-us a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  padding: 40px 0;
  background: rgba(0, 0, 0, 0.2);
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


footer p {
  margin: 0; /* Remove default margin */
}

.social-media {
  display: flex;
  gap: 20px;
}

.social-media a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-media a:hover {
  color: #e67e22;
}

/* Scroll to Top Button */
#scroll-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #e67e22;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#scroll-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

#scroll-to-top-btn:hover {
  background: #d35400;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  #menu-toggle {
    display: block;
  }

  #nav-menu {
    display: none;
    flex-direction: column;
    background: rgba(44, 62, 80, 0.98);
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 20px;
    border-radius: 10px;
  }

  #nav-menu.active {
    display: flex;
  }

  /* Hero Section */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; /* Center content vertically and horizontally */
    padding: 100px 0 60px;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 73, 94, 0.9));
    text-align: center; /* Center text */
    width: 100%; /* Ensure the hero section takes full width */
  }

  .hero .container {
    width: 100%;
    max-width: 1200px; /* Limit container width */
    margin: 0 auto; /* Center the container */
    padding: 0 20px; /* Add padding to prevent content from touching edges */
    box-sizing: border-box; /* Include padding in the element's total width */
  }

  .hero-content {
    max-width: 800px; /* Limit content width for better readability */
    margin: 0 auto; /* Center the content */
  }

  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
  }

  .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center; /* Center buttons */
  }

  .btn-primary, .btn-secondary {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  .btn-primary {
    background: #e67e22;
    color: #fff;
  }

.btn-primary:hover {
  background: #d35400;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #2c3e50;
}
}

/* Scroll-triggered Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}


/* Contact Us Section */
.contact {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.contact p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  text-align: center;
}

.contact-content {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-form {
  flex: 1;
  max-width: 600px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  background: #e67e22;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #d35400;
}

.contact-info {
  flex: 1;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.contact-info a {
  color: #e67e22;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Mobile Responsiveness for Contact Section */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }

  .contact-form,
  .contact-info {
    max-width: 100%;
  }
}


/* Dropdown Styles */
select {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: #000; /* Ensure text is white */
  appearance: none; /* Remove default arrow */
  -webkit-appearance: none; /* Remove default arrow for Safari */
  -moz-appearance: none; /* Remove default arrow for Firefox */
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

select:focus {
  outline: none;
  border-color: #e67e22;
}

/* Placeholder text for dropdown */
select option[value=""][disabled] {
  color: #999; /* Light gray for placeholder text */
}

/* Ensure dropdown options are visible */
select option {
  color: #000; /* Black text for options */
  background: #fff; /* White background for options */
}