/* General Styles */
body {
  margin: 0;
  font-family: "Noto Sans", sans-serif;
}

/* Navigation Bar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #e1f6ff; /* White background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for elevation */
  padding: 10px 20px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.logo img {
  width: 220px;
  height: 80px;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nav-links li {
  display: inline;
}

.nav-links a {
  color: #333; /* Dark text color */
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 10px;
  transition: color 0.3s ease, padding 0.3s ease; /* Smooth transition */
}

.nav-links a:hover {
  color: #f39c12; /* Golden hover effect */
  padding-bottom: 15px; /* Adds a little bounce effect */
  border-bottom: 3px solid #f39c12; /* Adds a underline effect */
}

/* Call Now Button */
.call-now .btn {
  background: #f39c12;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.call-now .btn:hover {
  background: #e67e22;
  transform: scale(1.05); /* Slight scaling effect */
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle .bar {
  background: #333;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  transition: 0.3s;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background: white;
      position: absolute;
      top: 60px;
      left: 0;
      padding: 20px 0;
  }

  .nav-links li {
      text-align: center;
      padding: 15px 0;
      width: 100%;
      border-bottom: 1px solid #ddd;
  }

  .nav-links li:last-child {
      border-bottom: none;
  }

  .nav-links.active {
      display: flex;
  }

  .menu-toggle {
      display: flex;
  }
}

/* Sticky Effect */
.navbar {
  transition: top 0.3s;
}

.navbar:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Adds a more pronounced shadow when hovered */
}


/*  */

main {
  background-color: #f6fcff; 
  padding: 20px; 
}

h1 {
  color: #007bff;
}

ul, ol {
  text-align: left;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}

footer {
  background: #f8f9fa;
  color: #6c757d;
  text-align: center;
  padding: 10px;
  border-top: 1px solid #dee2e6;
}
