/* Reduced height profile header */
.profile-header {
  background: linear-gradient(180deg, #1b3c79, #4b67a3);
  border-radius: 0 0 18px 18px;
  padding: 8px 10px 10px;
  text-align: center;
  color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.profile-header img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.profile-header h6 {
  margin-top: 5px;
  margin-bottom: 2px;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
}

.badge {
  font-size: 10px;
  border-radius: 10px;
  padding: 2px 6px;
  background: #1b3c79;
  color: #fff;
}

/* Further reduced wallet box */
.wallet-box {
  background: #fff;
  border-radius: 10px;
  padding: 4px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  min-height: 70px;
}

.wallet-box h6 {
  font-size: 11px;
  color: #555;
  margin-bottom: 2px;
}

.wallet-box h5 {
  font-size: 13px;
  font-weight: 600;
  color: #1b3c79;
  margin-bottom: 3px;
}

.wallet-box .btn {
  border-radius: 12px;
  background-color: #1b3c79;
  color: white;
  font-size: 10px;
  padding: 1px 8px;
  border: none;
  margin-top: 3px;
  transition: all 0.2s ease-in-out;
}

.wallet-box .btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* Income section */
.income-box {
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.income-box small {
  display: block;
  color: #555;
  font-size: 11px;
}

.income-box strong {
  color: #1b3c79;
  font-size: 12px;
}

/* Menu Icons */
.menu-icon {
  text-align: center;
  background: #fff;
  padding: 8px 4px;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  color: #1b3c79;
  font-size: 11px;
  transition: all 0.2s ease-in-out;
}

.menu-icon i {
  font-size: 20px;
  display: block;
  margin-bottom: 3px;
  color: #1b3c79;
}

.menu-icon:hover {
  transform: scale(1.05);
  background: #f3f6fb;
}

/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 5px 0;
  z-index: 10;
}

.bottom-nav i {
  display: block;
  font-size: 18px;
  color: #aaa;
  transition: color 0.2s ease, transform 0.2s ease;
}

.bottom-nav .active i {
  color: #1b3c79;
  transform: scale(1.1);
}

.bottom-nav span {
  font-size: 10px;
  color: #666;
}




.group-link {
  transition: all 0.3s ease;
  padding: 6px 8px !important;
  font-size: 11px !important;
  min-height: 85px;
}

/* Default Hover (Theme Color) */
.group-link:hover {
  transform: translateY(-2px);
  color: #1b3c79 !important;
  box-shadow: 0 2px 6px rgba(27, 60, 121, 0.1);
}

/* WhatsApp Hover */
.hover-whatsapp:hover {
  background-color: #25D366;
  color: #fff !important;
}

/* Telegram Hover */
.hover-telegram:hover {
  background-color: #0088cc;
  color: #fff !important;
}

/* Icons smaller & aligned */
.group-link i {
  font-size: 22px !important;
  margin-bottom: 4px !important;
  transition: all 0.2s ease;
}

.group-link:hover i {
  color: #1b3c79 !important;
}

/* Labels */
.group-link .fw-bold {
  font-size: 11px !important;
  line-height: 1.2;
  color: #1b3c79;
}

/* Descriptions */
.group-link small {
  font-size: 10px !important;
  color: #666 !important;
}

/* On WhatsApp/Telegram hover, make icon white */
.hover-whatsapp:hover i,
.hover-telegram:hover i {
  color: #fff !important;
}


.chat-button {
    position: fixed;
    bottom: 15%;
    right: 15px;
    transform: translateY(-50%);
    /*background-color: #d81b60;*/
    color: #fff;
    width: 70px; /* increased from 50px */
    height: 70px; /* increased from 50px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem; /* bigger icon/text size */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    z-index: 999999 !important;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    pointer-events: auto;
}

/* Hover animation */
.chat-button:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Mobile responsive version */
@media (max-width: 768px) {
    .chat-button {
        bottom: 80px;
        right: 15px;
        width: 60px; /* slightly smaller for mobile */
        height: 60px;
        font-size: 1.8rem;
    }
}


.text-logo {
    font-size: 1.6rem;             /* Larger and logo-like */
    letter-spacing: 1px;           /* Slight spacing for elegance */
    text-transform: uppercase;     /* Consistent branding look */
    font-weight: 800;              /* Extra bold for visibility */
    color: #07204a !important;     /* Deep navy for contrast */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15); /* Soft depth */
}