  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

   body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f9f9f9;
  padding-top: 120px;         /* Adjust this based on your navbar height */
}

  /* Navbar Styling */
.navbar {
  position: fixed;            /* Fix the navbar to the top */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;              /* Make sure it stays above everything */
  background-color: #ffffff;
  padding: 0.8rem 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo img {
  height: 100px;
}

/* Navigation Links */
.nav-links a {
  margin: 0 1rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #007bff;
}

/* Home Icon */
.home-icon {
  font-size: 20px;
  color: #333;
}

/* Social Links */
.social-links a {
  margin-left: 1rem;
  color: #333;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #007bff;
}

/* Dropdown Menu Styling */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 999;
  min-width: 200px;
  top: 100%;
}

.dropdown-content a {
  color: #333;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  font-weight: 500;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #333;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    padding: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background: #fff;
  }

  /* Dropdown Arrow Styling */
.dropdown-arrow {
  margin-left: 4px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Rotate arrow on hover */
.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Sticky Effect + Scroll Hide/Show Animation */
.navbar {
  transition: top 0.3s ease-in-out;
}

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown.open .dropdown-content {
    display: block;
  }

  .menu-toggle {
    display: block;
  }
}

    .quote-map-section {
  margin-top: 20px; /* Adjust as needed */
}

.quote-form-section {
  padding-bottom: 5rem; /* Creates gap from footer */
}

    form {
      display: flex;
      flex-direction: column;
      max-width: 600px;
      margin: 60px auto 0 auto;
    }

    form label {
      margin-top: 1rem;
      font-weight: bold;
    }

    form input, form select, form textarea, form button {
      padding: 10px;
      margin-top: 5px;
      font-size: 1rem;
    }

    #india-fields,
#intl-fields {
  margin-bottom: 1rem;
}

.location-fields {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.field-group {
  flex: 1;
  min-width: 200px;
}

.field-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

    .submit-quote-btn {
  background-color: #007bff;  /* Blue color */
  color: #fff;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
}

.submit-quote-btn:hover {
  background-color: #0056b3;  /* Darker blue on hover */
}

  /* Footer Section */
.site-footer {
  background-color: #002244;
  color: white;
  font-family: Arial, sans-serif;
  padding: 40px 60px 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-branding h3 {
  font-size: 1.4rem;
  color: #0056b3;
  margin-bottom: 5px;
}

.footer-branding .bold-blue {
  font-weight: bold;
  color: #0056b3;
}

.footer-branding .quote-text {
  font-size: 1rem;
  color: #ffffff;
}

.footer-logo img {
  width: 120px;
  height: auto;
}

.footer-line {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #ccc;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #bbbbbb;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-column ul li a:hover {
  text-decoration: underline;
  color: #ffffff;
}

/* Footer Office Column Styling */
.footer-column.office-india {
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  margin-left: 20px;
  margin-right: 20px;
}

.footer-column.office-india h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: whitesmoke;
}

.footer-column.office-india p {
  margin: 4px 0;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #bbbbbb;
  text-decoration: none;
  font-size: 1.3rem;
}

.social-icons a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #444;
  text-align: center;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #aaa;
}

.footer-bottom a {
  color: #aaa;
  text-decoration: none;
  margin: 0 10px;
}

.footer .credits {
  font-size: 0.85em;
  color: #aaa;
  margin-top: 5px;
  text-align: center;
}

.footer .credits strong:hover {
  color: #00aaff;
  cursor: pointer;
}

.footer-bottom a:hover {
  color: white;
}

html, body {
  scroll-behavior: auto; /* Let Lenis handle it */
  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
}