* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* Header */
.punya_saarthi_header {
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* Container */
.punya_saarthi_container {
  max-width: 1320px;
  margin: auto;
  padding: 4px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.punya_saarthi_logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #ff7a00;
}

.punya_saarthi_logo img {
  height: 76px;
}

/* Navigation */
.punya_saarthi_nav {
  display: flex;
  gap: 100px;
}

.punya_saarthi_nav a {
  text-decoration: none;
  color: #02104D;
  font-size: 15px;
  font-weight: 500;
 
}

.punya_saarthi_nav a:hover {
  color: #ff7a00;
}

/* Actions */
.punya_saarthi_actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.punya_saarthi_lang {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* Profile Icon */
.punya_saarthi_icon_btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: #ff7a00;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.punya_saarthi_icon_btn i {
  font-size: 16px;
  color: #ffffff;
}

/* Profile Dropdown */
.punya_saarthi_profile_wrapper {
  position: relative;
}

.punya_saarthi_profile_dropdown {
  position: absolute;
  right: 0;
  top: 52px;
  width: 300px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  display: none;
  z-index: 2000;
}

.punya_saarthi_profile_dropdown.active {
  display: block;
}

/* Dropdown Top */
.punya_saarthi_profile_top {
  padding: 16px;
  border-bottom: 1px solid #eee;
}

.punya_saarthi_profile_top p {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
}

.punya_saarthi_login_btn {
  display: block;
  text-align: center;
  padding: 10px;
  background: #0a58ff;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
}

/* Dropdown Sections */
.punya_saarthi_profile_section {
  padding: 10px 0;
}

.punya_saarthi_profile_section span {
  display: block;
  padding: 0 16px 6px;
  font-size: 12px;
  color: #888;
}

.punya_saarthi_profile_section a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  text-decoration: none;
  color: #111;
  font-size: 14px;
}

.punya_saarthi_profile_section a:hover {
  background: #f7f7f7;
}

.punya_saarthi_profile_section i {
  color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
  .punya_saarthi_nav {
    gap: 70px;
  }
}

@media (max-width: 768px) {
  .punya_saarthi_nav {
    display: none;
  }

  .punya_saarthi_profile_dropdown {
    right: -10px;
    width: 280px;
  }
}

@media (max-width: 480px) {
  .punya_saarthi_logo span {
    display: none;
  }

  .punya_saarthi_logo img {
    height: 51px;
  }

  .punya_saarthi_container {
    padding: 4px 14px;
  }
}
/* ===============================
   AVATAR (FIXED)
================================ */
.punya_avatar{
  width:38px;
  height:38px;
  min-width:38px;
  border-radius:50%;
  background:linear-gradient(135deg,#ff671f,#ff914d);
  color:#fff;
  font-weight:700;
  font-size:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 12px rgba(255,103,31,.35);
  text-transform:uppercase;
}

/* User icon inside avatar */
.punya_avatar i{
  font-size:16px;
}

/* Profile button */
.punya_saarthi_icon_btn{
  border:none;
  background:transparent;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:8px;
  margin: 0 25px 0 0 ;
}

/* Username (desktop only) */
.punya_user_name{
  font-weight:600;
  color:#333;
  font-size:14px;
}

@media(max-width:768px){
  .punya_user_name{display:none;}
}