
    body {
      background-color: #ffffff;
      font-family: 'Poppins', sans-serif;
    }

    .navbar-brand {
      color: #004080 !important;
      font-weight: 700;
    }

    .nav-link {
      color: #007BFF !important;
    }

    .glow-button {
      background: linear-gradient(135deg, #007BFF, #00C4CC);
      color: white;
      padding: 12px 30px;
      border: none;
      border-radius: 50px;
      font-weight: 600;
      box-shadow: 0 0 12px rgba(0, 191, 255, 0.5);
      transition: all 0.3s ease;
    }

    .glow-button:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(0, 191, 255, 0.8);
    }

    .card-title {
      color: #007BFF;
      font-weight: 600;
    }
  .hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
}


  #counter-section h1 {
    font-size: 2.5rem;
  }

  @media (max-width: 768px) {
    #counter-section h1 {
      font-size: 2rem;
    }
    #counter-section p {
      font-size: 1rem;
    }
  }


  .custom-width {
  max-width: 1200px;
  margin: 0 auto;
}

.gx-floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  z-index: 9999;
}

.gx-btn {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #007bff, #00c6ff); /* Blue gradient */
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-size: 22px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.gx-btn:hover {
  transform: scale(1.1);
}

.gx-tooltip-wrapper {
  position: relative;
}

.gx-tooltip-bubble {
  background-color: #ff0040;
  color: #fff;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  animation: fadeInRight 0.8s ease-out forwards;
  z-index: 1;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateY(-50%) translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.popup-content {
  background: #fff;
  color: #222;
  padding: 25px;
  border-radius: 12px;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 0 20px rgba(255, 0, 80, 0.3);
  text-align: center;
  position: relative;
  font-family: 'Segoe UI', sans-serif;
}

.popup-content h2 {
  color: #e60023;
  font-size: 22px;
  margin-bottom: 10px;
}

.popup-content ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
  margin: 15px 0;
}

.popup-content ul li {
  margin-bottom: 8px;
  font-size: 15.5px;
}

.popup-content a {
  color: #007bff;
  text-decoration: none;
}

.popup-content .close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}

@media (max-width: 500px) {
  .popup-content {
    max-width: 100%;
    padding: 18px;
  }

  .popup-content h2 {
    font-size: 18px;
  }
}
.earning-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #fff;
  color: #111;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  font-size: 15px;
  font-weight: 500;
  z-index: 9999;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  pointer-events: none;
}

.earning-popup.show {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .earning-popup {
    font-size: 14px;
    bottom: 15px;
    left: 15px;
    padding: 10px 14px;
  }
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  justify-content: center; 
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease;
}


.tag:hover {
  opacity: 0.9;
}


@media (max-width: 600px) {
  .tag {
    font-size: 13px;
    padding: 5px 10px;
  }
}

/* Color themes */
.blue     { background-color: #4285f4; }
.red      { background-color: #ea4335; }
.pink     { background-color: #d63384; }
.teal     { background-color: #26a69a; }
.orange   { background-color: #f9a825; }
.purple   { background-color: #8e24aa; }
.navy     { background-color: #3f51b5; }
