 /* Navbar Styles */
 /* Navbar Styles */
.navbar {
  background-color: #004d26;
  position: fixed;
  padding: 12px 0; /* 🔧 Reduced padding to make it less tall */
  width: 100%;
  z-index: 999;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.navbar .logo img {
  width: 80px; /* 🔧 Slightly reduced logo size for better fit */
}

/* Navigation Menu */
.nav-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin-left: 10px;
}

.nav-menu li a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  padding: 8px 16px; /* 🔧 Reduced padding */
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: #e6b912;
}

/* Call to Action Button */
.nav-menu .cta {
  background-color: #e6b912;
  padding: 8px 16px;
  border-radius: 4px;
  color: #004d26;
  transition: background-color 0.3s;
}

.nav-menu .cta:hover {
  background-color: #fff;
  color: #004d26;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #fff;
  transition: all 0.3s;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 60px; /* 🔧 Adjusted to match new navbar height */
    right: 0;
    height: 100vh;
    width: 100%;
    background-color: #004d26;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none;
  }

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

  .nav-menu li {
    margin: 15px 0;
  }

  .menu-toggle {
    display: block;
  }
}

/* Menu Toggle Animation */
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

  /* Fixed Contact Icons Styling */
  .fixed-contact-icons {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
  }

  .contact-icon img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }

  .contact-icon img:hover {
    transform: scale(1.1);
  }

  /* Responsive adjustments for smaller screens */
  @media (max-width: 768px) {
    .fixed-contact-icons {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      transform: none;
      flex-direction: row;
      justify-content: space-around;

      padding: 10px 0;
      box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* Small shadow to give a raised effect */
    }

    .contact-icon img {
      width: 40px;
      height: 40px;
    }
  }

  @media (max-width: 576px) {
    .fixed-contact-icons {
      padding: 8px 0;
    }

    .contact-icon img {
      width: 35px;
      height: 35px;
    }
  }
