.navbar{
  background-color: #ee7e33;
}
.navbar-nav .nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #222; /* Dark text on hover */
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}
.dropdown-menu .dropdown-item:hover {
  background-color: #f8f9fa;
  color: #333;
  border-radius: 8px;
}
/* Dropdown styling */
.dropdown-menu {
  background-color: #fff3e0;
  border-radius: 12px;
  min-width: 220px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  color: #5c3d00;
}

li{
  list-style: none;
}

/* Hover effect */
.dropdown-menu .dropdown-item:hover {
  background-color: #f9a76c; /* gentle warm highlight */
  color: #fff;
  border-radius: 8px;
}

/* Profile header */
.dropdown-menu li.text-center {
  /* background-color: #f9a76c; */
  color: #fff;
}
.nametxt{
  color: #222 !important;
}


/* Mobile Navbar Hover */
.offcanvas-body .nav-link {
  position: relative;
  transition: color 0.3s ease, background 0.3s ease;
  border-radius: 5px;
  padding: 8px 12px;
}

.offcanvas-body .nav-link:hover {
  background: rgba(255, 255, 255, 0.2); /* subtle highlight */
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .show>.nav-link{
  font-weight: 600;
}
body {
      font-family: 'Poppins', sans-serif;
    }
      .offcanvas.custom-size {
      width: 220px;
      height: 60vh;
      top: 0;
      border-radius: 0 1rem 1rem 0;
    }
    .menu-logo {
      width: 40px;  /* adjust logo size */
      margin-bottom: 1rem;
      margin-top: 1rem;
    }
    
    html{
      scroll-behavior: smooth;
    }
    
    .btn {
     background: #ff9800 !important; /* Orange theme */
  color: white !important;
  border: none;
  padding: 10px 20px !important;
  border-radius: 30px !important;
  font-weight: 500;
  transition: all 0.3s ease !important;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}
.btn:hover{
 transform: scale(1.08); /* Zoom slightly */
  background: #e68900;   /* Darker orange */
  box-shadow: 0 6px 12px rgba(0,0,0,0.25); /* Bigger shadow */
  color: #fff;
}
    