/* Color Palette */
:root {
  --primary-dark: #1b3c53;
  --primary-blue: #456882;
  --accent-beige: #d2c1b6;
  --light-cream: #f9f3ef;
  --white: #ffffff;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
  --shadow: rgba(27, 60, 83, 0.1);
  --shadow-lg: rgba(27, 60, 83, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--light-cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Sidebar Styles */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 260px;
  background: linear-gradient(
    180deg,
    var(--primary-dark) 0%,
    var(--primary-blue) 100%
  );
  z-index: 1000;
  transition: transform 0.3s ease;
  box-shadow: 4px 0 15px var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.sidebar .logo {
  padding: 2rem 1.5rem 1rem 1.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.sidebar .logo .logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.sidebar .logo h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin: 0;
}

.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0.5rem 0;
}

.sidebar-nav::-webkit-scrollbar {
  width: 4px;
}

.sidebar-nav::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.sidebar-nav::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.sidebar-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-nav li {
  margin-bottom: 0.5rem;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.sidebar-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--accent-beige);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.sidebar-nav a:hover,
.sidebar-nav li.active a {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.sidebar-nav li.active a::before {
  transform: scaleY(1);
}

.sidebar-nav i {
  font-size: 1.2rem;
  width: 24px;
}

.sidebar-footer {
  flex-shrink: 0;
  width: 100%;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-footer a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(220, 53, 69, 0.8);
  margin: 0 1rem;
  border-radius: 8px;
}

.sidebar-footer a:hover {
  background: var(--danger);
  transform: translateX(3px);
}

.sidebar-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0.5rem 1.5rem;
  flex-shrink: 0;
}

.sidebar-qr-section {
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.qr-code-wrapper {
  position: relative;
  background: var(--white);
  padding: 0.6rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px var(--shadow);
  width: fit-content;
}

.qr-code-image {
  display: block;
  width: 150px;
  height: 150px;
}

.qr-logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
  height: 35px;
  background: white;
  padding: 4px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  object-fit: contain;
}

.upi-id {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  width: 100%;
  justify-content: center;
}

.upi-id i {
  color: var(--accent-beige);
  font-size: 1.1rem;
}

/* Main Content */
.main-content {
  margin-left: 260px;
  min-height: 100vh;
  transition: margin-left 0.3s ease;
}

/* Navigation Bar */
.navbar {
  background: var(--white);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-dark);
  cursor: pointer;
  display: none;
}

.mobile-logo {
  display: none;
}

.mobile-logo h2 {
  color: var(--primary-dark);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-logo i {
  color: var(--primary-blue);
}

.desktop-only {
  display: flex;
}

.navbar-left .user-profile img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--accent-beige);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.navbar-left .user-profile img:hover {
  transform: scale(1.1);
}

.navbar-left .welcome-message {
  text-align: left;
}

.navbar-left .welcome-message p {
  color: var(--text-dark);
  font-size: 0.95rem;
}

.navbar-left .welcome-message strong {
  color: var(--primary-dark);
}

/* Guest Navbar Styles */
.guest-nav-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.guest-tagline {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  color: var(--text-dark);
  animation: slideInLeft 0.6s ease;
}

.guest-tagline i {
  font-size: 1.3rem;
  color: var(--primary-blue);
  animation: rocketFloat 2s ease-in-out infinite;
}

.guest-tagline strong {
  color: var(--primary-dark);
  font-weight: 600;
}

.guest-nav-cta {
  display: flex;
  gap: 1rem;
  animation: slideInRight 0.6s ease;
}

.btn-nav-primary,
.btn-nav-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-nav-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(27, 60, 83, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-nav-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-nav-primary:hover::before {
  left: 100%;
}

.btn-nav-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 60, 83, 0.4);
}

.btn-nav-primary i {
  font-size: 1rem;
}

.btn-nav-secondary {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-blue);
}

.btn-nav-secondary:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(27, 60, 83, 0.2);
}

.btn-nav-secondary i {
  font-size: 1rem;
}

/* Guest Mobile CTA - Hidden on Desktop */
.guest-mobile-cta {
  display: none;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rocketFloat {
  0%, 100% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(-5px) rotate(-45deg);
  }
}

.navbar-left .current-time {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}

.notification-wrapper {
  position: relative;
  z-index: 10000;
}

.notification-btn {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--primary-dark);
  cursor: pointer;
  position: relative;
  padding: 0.5rem;
  transition: none;
  outline: none;
}

.notification-btn:hover {
  color: var(--primary-dark);
}

.notification-btn:focus {
  outline: none;
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #dc3545;
  color: white;
  font-size: 0.7rem;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  padding: 0 4px;
  border: 2px solid white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.notification-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 350px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 25px var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 9999;
}

.notification-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.notification-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--light-cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notification-header h3 {
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.mark-read {
  background: none;
  border: none;
  color: var(--primary-blue);
  font-size: 0.85rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mark-read:hover {
  color: var(--primary-dark);
}

.notification-list {
  max-height: 350px;
  overflow-y: auto;
}

.notification-list::-webkit-scrollbar {
  width: 6px;
}

.notification-list::-webkit-scrollbar-track {
  background: var(--light-cream);
}

.notification-list::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: 3px;
}

.notification-list::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

.notification-view-all {
  border-top: 1px solid #f0f0f0;
  background: #f9f9f9;
}

.notification-view-all a:hover {
  background: #f0f0f0;
}

.notification-item {
  padding: 1rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-bottom: 1px solid #f0f0f0;
  transition: none;
  cursor: default;
}

.notification-item.unread {
  background: rgba(69, 104, 130, 0.03);
  border-left: 3px solid var(--primary-blue);
}

.notification-item:last-child {
  border-bottom: none;
}

.notification-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notification-icon-circle i {
  font-size: 1rem;
}

.notification-icon-circle.credit,
.notification-icon-circle.success {
  background: rgba(40, 167, 69, 0.15);
}

.notification-icon-circle.credit i,
.notification-icon-circle.success i {
  color: var(--success);
}

.notification-icon-circle.debit,
.notification-icon-circle.danger {
  background: rgba(220, 53, 69, 0.15);
}

.notification-icon-circle.debit i,
.notification-icon-circle.danger i {
  color: var(--danger);
}

.notification-icon-circle.warning {
  background: rgba(255, 193, 7, 0.15);
}

.notification-icon-circle.warning i {
  color: var(--warning);
}

.notification-icon-circle.info {
  background: rgba(69, 104, 130, 0.15);
}

.notification-icon-circle.info i {
  color: var(--primary-blue);
}

.notification-icon-circle.reward {
  background: rgba(255, 193, 7, 0.15);
}

.notification-icon-circle.reward i {
  color: #ffa500;
}

.notification-content {
  flex: 1;
  min-width: 0;
}

.notification-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.notification-message {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.notification-time {
  font-size: 0.75rem;
  color: #999;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.notification-amount {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  align-self: center;
}

.notification-amount.credit {
  color: var(--success);
}

.notification-amount.debit {
  color: var(--danger);
}

.empty-notification,
.loading-notification,
.error-notification {
  text-align: center;
  padding: 3rem 2rem;
  color: #999;
}

.empty-notification i,
.loading-notification i,
.error-notification i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  opacity: 0.5;
}

.loading-notification i {
  animation: spin 1s linear infinite;
}

.error-notification {
  color: var(--danger);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.empty-notification p,
.loading-notification p,
.error-notification p {
  margin: 0;
  font-size: 0.9rem;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Mobile Footer Navigation */
.mobile-footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,1) 100%);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(1, 135, 144, 0.1);
}

.footer-nav {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0.8rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.footer-nav::-webkit-scrollbar {
  display: none;
}

.footer-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: #6b7280;
  padding: 0.6rem 1rem;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 70px;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.footer-nav-item .nav-icon {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f3f4f6;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.footer-nav-item i {
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-nav-item span:not(.badge) {
  font-size: 0.7rem;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.footer-nav-item .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0 4px;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
  animation: pulse 2s infinite;
}

.footer-nav-item.active {
  color: #018790;
}

.footer-nav-item.active .nav-icon {
  background: linear-gradient(135deg, #018790 0%, #01a0ab 100%);
  box-shadow: 0 4px 12px rgba(1, 135, 144, 0.3);
  transform: translateY(-2px);
}

.footer-nav-item.active i {
  color: white;
  transform: scale(1.1);
}

.footer-nav-item.active span:not(.badge) {
  color: #018790;
  font-weight: 700;
}

.footer-nav-item:active {
  transform: scale(0.95);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Scroll hint for mobile nav */
.mobile-footer::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.95), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-footer.has-scroll::after {
  opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.active {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
    padding-bottom: 80px;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-logo {
    display: flex;
  }

  .mobile-logo .logo-img-mobile {
    width: 32px;
    height: 32px;
  }

  .mobile-logo h2 {
    font-size: 1.2rem;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-footer {
    display: block;
  }

  .navbar {
    padding: 0.8rem 1rem;
  }

  .navbar-left {
    gap: 1rem;
  }

  /* Mobile Guest Navbar */
  .guest-nav-content {
    display: none;
  }

  /* Show simplified guest buttons on mobile */
  .navbar-right .guest-mobile-cta {
    display: flex;
    gap: 0.5rem;
  }

  .navbar-right .guest-mobile-cta .btn-nav-primary,
  .navbar-right .guest-mobile-cta .btn-nav-secondary {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .navbar-right .guest-mobile-cta .btn-nav-primary span,
  .navbar-right .guest-mobile-cta .btn-nav-secondary span {
    display: none;
  }

  .navbar-right .guest-mobile-cta .btn-nav-primary i,
  .navbar-right .guest-mobile-cta .btn-nav-secondary i {
    font-size: 1.1rem;
    margin: 0;
  }

  .hero-section {
    height: 200px;
    margin: 0.8rem;
    border-radius: 15px;
  }

  .hero-content {
    padding: 2rem 1.5rem;
  }

  .hero-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .hero-stats {
    display: none;
  }

  .dashboard-content {
    padding: 0.8rem;
  }

  .content-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .content-header h2 {
    font-size: 1.4rem;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .card {
    border-radius: 12px;
  }

  .card-header {
    padding: 1rem;
  }

  .card-header h3 {
    font-size: 1rem;
  }

  .card-body {
    padding: 1rem;
  }

  .section-title {
    margin: 2rem 0 1rem 0;
  }

  .section-title h2 {
    font-size: 1.3rem;
    padding-left: 0.8rem;
  }

  .notification-dropdown {
    right: 0;
    width: 300px;
    max-width: calc(100vw - 2rem);
  }

  .notification-btn {
    font-size: 1.2rem;
  }

  .service-grid,
  .insurance-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .service-item,
  .insurance-card {
    padding: 1rem 0.8rem;
  }

  .service-item i,
  .insurance-card i {
    font-size: 1.5rem;
  }

  .transaction-item {
    padding: 0.8rem;
  }

  .offer-item {
    padding: 0.8rem;
  }

  .investment-item,
  .loan-item,
  .transfer-item {
    padding: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    display: none;
  }

  .hero-section {
    height: 180px;
    margin: 0.5rem;
  }

  .hero-content {
    padding: 1.5rem 1rem;
  }

  .hero-title {
    font-size: 1.1rem;
  }

  .hero-subtitle {
    font-size: 0.75rem;
  }

  .quick-actions {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .action-btn {
    padding: 1.2rem 0.8rem;
  }

  .service-grid,
  .insurance-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .navbar {
    padding: 0.6rem 0.8rem;
  }

  .navbar-left {
    gap: 0.6rem;
  }

  .mobile-logo .logo-img-mobile {
    width: 28px;
    height: 28px;
  }

  .mobile-logo h2 {
    font-size: 1rem;
  }

  .notification-btn {
    font-size: 1.1rem;
    padding: 0.4rem;
  }

  .notification-badge {
    width: 16px;
    height: 16px;
    font-size: 0.65rem;
  }

  .footer-nav-item {
    padding: 0.3rem 0.3rem;
    max-width: 65px;
  }

  .footer-nav-item i {
    font-size: 1rem;
  }

  .footer-nav-item span {
    font-size: 0.6rem;
  }

  .content-header {
    gap: 0.8rem;
  }

  .content-header h2 {
    font-size: 1.2rem;
  }

  .btn-primary {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
  }

  .section-title h2 {
    font-size: 1.1rem;
  }

  .card-header h3 {
    font-size: 0.95rem;
  }

  .btn-link {
    font-size: 0.8rem;
  }

  .transaction-name,
  .offer-title {
    font-size: 0.9rem;
  }

  .transaction-id,
  .offer-desc {
    font-size: 0.7rem;
  }

  .transaction-date {
    font-size: 0.75rem;
  }

  .transaction-amount {
    font-size: 1rem;
  }

  .investment-info h4,
  .loan-details h4,
  .transfer-details h4 {
    font-size: 0.9rem;
  }

  .investment-info p,
  .loan-details p,
  .transfer-details p {
    font-size: 0.8rem;
  }

  .btn-small {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .dashboard-content {
    padding: 0.5rem;
  }

  .rewards-circle {
    padding: 0.5rem 0;
  }

  .points-display {
    width: 120px;
    height: 120px;
  }

  .points-display h3 {
    font-size: 1.6rem;
  }

  .notification-dropdown {
    width: 280px;
  }
}

@media (max-width: 360px) {
  .mobile-logo h2 {
    font-size: 0.9rem;
  }

  .mobile-logo .logo-img-mobile {
    width: 24px;
    height: 24px;
  }

  .hero-section {
    height: 150px;
  }

  .hero-title {
    font-size: 1rem;
  }

  .hero-subtitle {
    font-size: 0.7rem;
  }

  .footer-nav-item span {
    font-size: 0.55rem;
  }

  .footer-nav-item i {
    font-size: 0.95rem;
  }

  .content-header h2 {
    font-size: 1.1rem;
  }

  .section-title h2 {
    font-size: 1rem;
  }
}
