:root {
  --primary: #2a4b8d;
  --secondary: #4a7bde;
  --accent: #f70a77;
  --gradient-start: #2a4b8d;
  --gradient-end: #4a7bde;
  --dark: #0e1c68;
  --light: #f8f9fc;
  --success: #28a745;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f5 100%);
  color: #333;
  overflow-x: hidden;
}

/* Premium Navbar */
.navbar {
  background: #0e1c68;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 0px;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 800;
  color: var(--primary) !important;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
}

.navbar-brand i {
  margin-right: 8px;
  color: var(--accent);
}

.nav-link {
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  color: var(--dark) !important;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-btn {
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  border: none;
  border-radius: 30px;
  padding: 8px 20px;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(42, 75, 141, 0.3);
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 75, 141, 0.4);
}

/* Hero Section */
.hero {
  background: linear-gradient(#1a1a2e52, #1a1a2e52),
    url("../image/15360.jpg") no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234a7bde' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: var(--accent);
}

.hero p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 30px;
  font-weight: 300;
}

.recharge-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 50px;
  margin-top: 40px;
  max-width: 45%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.recharge-box input,
.recharge-box select {
  border-radius: 12px;
  padding: 15px 20px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  font-weight: 500;
}

.recharge-box input:focus,
.recharge-box select:focus {
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.btn-premium {
  background: linear-gradient(135deg, var(--accent), #f70a77);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  padding: 15px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
  color: #fff;
}

.fs-7 {
  font-size: 0.7rem !important;
}

/* Features */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-weight: 800;
  color: var(--primary);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--gradient-start),
    var(--gradient-end)
  );
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-title p {
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    to right,
    var(--gradient-start),
    var(--gradient-end)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card i {
  font-size: 3.5rem;
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
  display: inline-block;
  transition: all 0.3s ease;
}

.feature-card:hover i {
  transform: scale(1.1);
}

.feature-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
}

.feature-card p {
  color: #6c757d;
  line-height: 1.6;
}

.stats {
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item i {
  font-size: 2.5rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.stats .stat-box {
  text-align: center;
}
.stats h3 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
}

/* Footer */
footer {
  background: var(--dark);
  color: #fff;
  padding: 40px 0 20px;
}

.footer-links h5 {
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-links h5::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background: var(--accent);
  bottom: -10px;
  left: 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: white;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Animations */
.animate-up {
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s ease;
}

.animate-up.animated {
  transform: translateY(0);
  opacity: 1;
}
/* Default size for desktop */
.logo-img {
  height: 50px;
  width: 150px;
}
/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .recharge-box {
    max-width: 100%;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 30px 0;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .stat-item h3 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .recharge-box {
    padding: 25px 20px;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }
  .logo-img {
    height: 35px;
    width: 100px;
  }
}
/* Modal Background */
.wallet-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show modal */
.wallet-modal.show {
  display: block;
  opacity: 1;
}

/* Modal Content */
.wallet-content {
  background: linear-gradient(145deg, #ffffff, #f1f3f6);
  border-radius: 20px;
  max-width: 400px;
  width: 90%;
  margin: 10% auto;
  padding: 30px 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-50px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

/* Animate modal content when opening */
.wallet-modal.show .wallet-content {
  transform: translateY(0);
}

/* Close Button */
.wallet-close {
  float: right;
  font-size: 28px;
  font-weight: bold;
  color: #ff4d6d;
  cursor: pointer;
  transition: color 0.3s ease;
}

.wallet-close:hover {
  color: #ff1a3c;
}

/* Heading */
.wallet-content h3 {
  margin-bottom: 15px;
  font-weight: 700;
  color: #333;
  font-size: 1.6rem;
}

/* Paragraph */
.wallet-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #555;
}

/* Add Money Button */
.wallet-content .btn-primary {
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  border: none;
  padding: 10px 25px;
  font-size: 1rem;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(255, 106, 61, 0.3);
  transition: all 0.3s ease;
}

.wallet-content .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 106, 61, 0.4);
}
.faq-container {
  width: 100%;
}

.faq-card {
  background: #fff;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.faq-question.open i::before {
  content: "\f2ea";
  font-family: "bootstrap-icons";
  font-style: normal;
  font-weight: 700;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 15px 0;
  font-weight: 800;
  font-size: 1.05rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  font-weight: 700;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden; /* only answer scroll hidden */
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0;
}

.faq-answer.open {
  max-height: 500px; /* enough to show full content */
  padding: 10px 0;
}

.faq-question.open i {
  transform: rotate(180deg);
}
.offcanvas {
  background: #fff;
  /* border-radius: 0 10px 10px 0; */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.offcanvas-body a {
  font-weight: 500;
  color: #333;
  text-decoration: none;
}
.offcanvas-body a:hover {
  color: var(--bs-primary);
}
.gettheapp {
  padding: 0px;
  height: 100%;
  width: 100%;
  border-radius: 30px;
  border: none;
  color: #ff000099;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
  line-height: 40px;
}
.sign-in-btn {
  background: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  border: none;
  border-radius: 30px;
  padding: 8px 20px;
}

/* login model */
.glass-effect {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  padding: 1rem 1.5rem;
}

.glass-effect .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  border-radius: 10px;
  padding: 12px 16px;
}

.glass-effect .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.glass-effect .modal-title {
  font-weight: bold;
  color: #fff;
}

/* Gradient Big Button */
.gradient-btn {
  background: linear-gradient(135deg, var(--accent), #f70a77);
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gradient-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.modal-content {
  width: 97% !important;
}
.btns-close {
  filter: invert(1) brightness(200%) !important;
  opacity: 1; /* zyada visible */
}
