body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}
.navbar {
  background: #222;
  color: #fff;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
}

.navbar .nav-links li {
  margin: 0 1rem;
}

.navbar .nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.navbar .nav-links a:hover {
  color: #007BFF;
}

.navbar .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.navbar .hamburger .bar {
  width: 25px;
  height: 3px;
  background: #555252;
  margin: 3px 0;
  transition: background 0.3s;
}

@media (max-width: 768px) {
  .navbar .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background: #464444;
      position: absolute;
      top: 60px;
      left: 0;
      color: #000000;
      border: 2px solid red;
  }

  .navbar .nav-links.active {
      display: flex;
  }

  .navbar .hamburger {
      display: flex;
  }

  .navbar .hamburger.active .bar {
      background: #014691;
  }
}


.main-heading{
  color: #ffffff;
  font-size: 1.5rem;
}
.hero {
  background: url('img/new-hero-bg.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}
.hero .hero-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.hero .info-point {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  flex: 1;
  max-width: 220px;
  text-align: center;
}
.hero .info-point h2 {
  font-size: 1.1rem;
  margin: 0;
  color: #333;
}
.hero-details {
  background-color: #f9f9f9;
  padding: 60px 20px;
}
.hero-details form {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.7);
}
.hero-details form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.hero-details form input,
.hero-details form select,
.hero-details form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
}
.hero-details form button {
  background-color: #f39c12;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}
.hero-details form button:hover {
  background-color: #e67e22;
}
.about-us {
  padding: 60px 20px;
}
.about-us .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}
.about-us .about-text,
.about-us .about-image {
  flex: 1;
}
.about-us .about-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.footer {
  background-color: #222;
  color: white;
  padding: 40px 20px;
  text-align: center;
}
.footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.footer .footer-logo a {
  color: white;
  text-decoration: none;
  font-size: 2rem;
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
}
.footer .footer-links li {
  margin-bottom: 10px;
}
.footer .footer-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.footer .footer-links a:hover {
  color: #f39c12;
}
.footer .footer-contact p,
.footer .footer-social p {
  margin: 5px 0;
}
.footer .social-icons a {
  color: white;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}
.footer .social-icons a:hover {
  color: #f39c12;
}
/* @media (max-width: 768px) {
  .navbar .nav-links {
      display: none;
      flex-direction: column;
  }
  .navbar .hamburger {
      display: block;
  }
} */


@media (max-width: 480px) {
  .hero-content h1 {
      font-size: 24px;
  }

  .hero-content p {
      font-size: 14px;
  }

  .footer-logo, .footer-links, .footer-contact, .footer-social {
      text-align: center;
  }

  .footer-social .social-icons {
      justify-content: center;
  }
}