/* ===== Header Main ===== */

body {
  margin: 0;
  padding: 0;
  position: relative;
   /* font-family: "Poppins", sans-serif; */
  font-family: "Lato", sans-serif !important;
}


.header {
  padding: 0 0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 75px;
  background: #fff;
  z-index: 999;
  border-bottom: 1px solid #ecedf0;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-text .brand-title {
  font-size: 26px;
  font-weight: 900;
  color: #0b0b0b;
  margin: 0;
}

.brand-title-span {
  color: #e76727;
}

.nav-section {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-link {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #414141;
  transition: 0.3s;
  text-transform: uppercase;
}


.nav-link:hover {
  color: #e76727;
}



.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 75px;
  background: #fff;
  z-index: 999;
  border-bottom: 1px solid #ecedf0;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.brand-title {
  font-size: 26px;
  font-weight: 900;
  color: #0b0b0b;
  margin: 0;
}

.brand-title-span {
  color: #e76727;
}


.nav-section {
  display: flex;
  align-items: center;
  gap: 25px;
}


.nav-link:hover {
  color: #e76727;
}

/* ===== Profile Circle ===== */
.profile-circle {
  width: 38px;
  height: 38px;
  background-color: #e76727;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
}


.profile-circle:hover {
  background-color: #d4571d;
}


.hamburger {
  display: none;
  font-size: 22px;
  cursor: pointer;
  padding-right: 20px;
}


/* Profile Wrapper */
.profile-dropdown {
  position: relative;
}

/* Profile Circle */
.profile-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}

.profile-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.dropdown-menu-custom {
  position: absolute;
  right: 0;
  top: 60px;
  width: 360px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  padding: 5px;
  display: none;
  animation: fadeIn 0.2s ease-in-out;
  z-index: 999;
  border: 1px solid #E5E7EB;
}


.dropdown-menu-custom.active {
  display: block;
}



.dropdown-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.dropdown-user-info h6 {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  color: #1F2937;
}

.dropdown-user-info p {
  margin: 2px 0;
  font-size: 14px;
  color: #737373;
}

.dropdown-user-info span {
  font-size: 14px;
  color: #737373;
}


.edit-btn {
  margin-left: auto;
  border: 1px solid #E5E7EB;
  background: white;
  color: #4B5563;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
}

.edit-btn:hover {
  background: #f1f1f1;
}



.dropdown-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 15px;
}

.dropdown-divider {
  height: 1px;
  background: #eee;
  margin: 18px 0;
}


.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  text-decoration: none;
  color: #414141;
  font-size: 16px;
  transition: 0.2s;
  font-weight: 400;
}

.dropdown-item:hover {
  background: #f1f1f1;
}

.dropdown-item .arrow {
  margin-left: auto;
  font-size: 12px;
  color: #999;
}


.dropdown-item.logout {
  color: #E76727;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 576px) {
  .dropdown-menu-custom {
    width: 100%;
    right: -10px;
  }
}