:root {
  /* New Color Scheme */
  --primary: #2c5530;
  --secondary: #4f772d;
  --accent: #90a955;
  --gradient-start: #31572c;
  --gradient-end: #4f772d;
  --dark: #132a13;
  --light: #ecf39e;
  --success: #38b000;

  /* Neumorphism Variables */
  --neu-bg: #e8f5e8;
  --neu-light: #ffffff;
  --neu-dark: #c8d6c8;
  --neu-shadow-light: rgba(255, 255, 255, 0.7);
  --neu-shadow-dark: rgba(184, 204, 184, 0.6);
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--neu-bg);
  color: #333;
  overflow-x: hidden;
}

/* Premium Navbar - Neumorphism */
.navbar {
  background: var(--neu-bg);
  box-shadow: 9px 9px 16px var(--neu-shadow-dark),
    -9px -9px 16px var(--neu-shadow-light);
  padding: 15px 0px;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 800;
  color: var(--primary) !important;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
}

.sign-in-btn {
  background: var(--neu-bg);
  border: none;
  border-radius: 15px;
  padding: 10px 25px;
  color: var(--primary);
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 5px 5px 10px var(--neu-shadow-dark),
    -5px -5px 10px var(--neu-shadow-light);
}

.sign-in-btn:hover {
  box-shadow: inset 2px 2px 5px var(--neu-shadow-dark),
    inset -2px -2px 5px var(--neu-shadow-light);
  transform: translateY(2px);
}

/* Hero Section - Neumorphism */
.hero {
  background: var(--neu-bg);
  color: var(--primary);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-left {
  flex: 1;
  min-width: 298px;
  max-width: 500px;
}

.hero-left h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--primary);
  line-height: 1.2;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  max-width: 100%;
  width: 500px;
  height: auto;
}

/* Recharge Box - Neumorphism */
.recharge-box {
  background: var(--neu-bg);
  border-radius: 25px;
  padding: 40px;
  margin-top: 20px;
  box-shadow: 10px 10px 20px var(--neu-shadow-dark),
    -10px -10px 20px var(--neu-shadow-light);
}

.recharge-box input {
  border-radius: 15px;
  padding: 15px 20px;
  border: none;
  background: var(--neu-bg);
  transition: all 0.3s ease;
  font-weight: 500;
  box-shadow: inset 5px 5px 10px var(--neu-shadow-dark),
    inset -5px -5px 10px var(--neu-shadow-light);
}

.recharge-box input:focus {
  box-shadow: inset 2px 2px 5px var(--neu-shadow-dark),
    inset -2px -2px 5px var(--neu-shadow-light);
  outline: none;
}

.btn-premium {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 15px;
  padding: 15px 20px;
  transition: all 0.3s ease;
  box-shadow: 5px 5px 10px var(--neu-shadow-dark),
    -5px -5px 10px var(--neu-shadow-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-premium:hover {
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2),
    inset -2px -2px 5px rgba(255, 255, 255, 0.2);
  transform: translateY(2px);
}

.all-text {
  color: #2c5530 !important;
}

/* About Section - Neumorphism */
.about {
  padding: 30px 0;
  background: var(--neu-bg);
  position: relative;
  overflow: hidden;
}

/* .about-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
} */

.about-title span {
  color: var(--gradient-end);
}

.about-text {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-img {
  width: 100%;
}

/* Features Section - Neumorphism */
.features {
  padding: 30px 0;
  background: var(--neu-bg);
}

.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;
  font-size: 2.5rem;
}

.section-title p {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.feature-card {
  background: var(--neu-bg);
  border-radius: 25px;
  padding: 40px 30px;
  box-shadow: 8px 8px 16px var(--neu-shadow-dark),
    -8px -8px 16px var(--neu-shadow-light);
  transition: all 0.4s ease;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  box-shadow: inset 5px 5px 10px var(--neu-shadow-dark),
    inset -5px -5px 10px var(--neu-shadow-light);
  transform: translateY(5px);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
  display: inline-block;
  transition: all 0.3s ease;
}

.feature-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
}

.feature-card p {
  color: #666;
  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(--gradient-end);
  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: 55px;
  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 .plus-icon::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 .plus-icon {
  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 {
  flex-grow: 1;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  overflow-y: auto;
  background: #901E3E;
}

.offcanvas-body a {
  font-weight: 500;
  color: #2c5530;
  /* color: #fff!important; */
  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;
}




/* Modal Styles - Neumorphism */
.glass-effect {
  background: var(--neu-bg);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  box-shadow: 10px 10px 20px var(--neu-shadow-dark),
    -10px -10px 20px var(--neu-shadow-light);
  border: none;
}

.modal-header {
  border-bottom: 1px solid rgba(163, 177, 198, 0.3);
}

.modal-title {
  color: var(--primary);
  font-weight: 600;
}

.btns-close {
  filter: brightness(0) invert(0);
  box-shadow: 3px 3px 6px var(--neu-shadow-dark),
    -3px -3px 6px var(--neu-shadow-light);
  border-radius: 50%;
  padding: 0.5rem;
}

/* OTP Inputs - Neumorphism */
.otp-inputs .otp-input {
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 15px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  background: var(--neu-bg);
  box-shadow: inset 5px 5px 10px var(--neu-shadow-dark),
    inset -5px -5px 10px var(--neu-shadow-light);
}

.otp-inputs .otp-input:focus {
  box-shadow: inset 2px 2px 5px var(--neu-shadow-dark),
    inset -2px -2px 5px var(--neu-shadow-light);
  outline: none;
}

.custom-popup-btn {
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px;
  border: none;
  border-radius: 15px;
  box-shadow: 5px 5px 10px var(--neu-shadow-dark),
    -5px -5px 10px var(--neu-shadow-light);
  transition: all 0.3s ease;
}

.custom-popup-btn:hover {
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2),
    inset -2px -2px 5px rgba(255, 255, 255, 0.2);
  transform: translateY(2px);
}

#resendOtp {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

#resendOtp:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Full page overlay */
#pageLoader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

.loader-content {
  text-align: center;
}

/* Mobile Sidebar - Neumorphism */
.custom-offcanvas-header {
  background-color: var(--neu-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.offcanvas-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.custom-offcanvas-header .btn-close {
  filter: brightness(0) invert(0);
  box-shadow: 3px 3px 6px var(--neu-shadow-dark),
    -3px -3px 6px var(--neu-shadow-light);
  border-radius: 50%;
  padding: 0.5rem;
}

.offcanvas-body {
  background: var(--neu-bg);
}

.offcanvas-body a {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #333;
  border-radius: 15px;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 3px 3px 6px var(--neu-shadow-dark),
    -3px -3px 6px var(--neu-shadow-light);
}

.offcanvas-body a:hover {
  box-shadow: inset 2px 2px 5px var(--neu-shadow-dark),
    inset -2px -2px 5px var(--neu-shadow-light);
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1200px;
  }
}

.offcanvas-menu .has-submenu>a {
  cursor: pointer;
}

/* start closed: height 0, invisible */
.offcanvas-menu .submenu {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 350ms ease, opacity 300ms ease;
  will-change: height, opacity;
}

/* open state (class toggled by JS) */
.offcanvas-menu .has-submenu.open .submenu {
  opacity: 1;
}

/* chevron rotate */
.offcanvas-menu .has-submenu>a i.bi-chevron-down {
  transition: transform 300ms ease;
}

.offcanvas-menu .has-submenu.open>a i.bi-chevron-down {
  transform: rotate(180deg);
}

/* submenu item look */
.offcanvas-menu .submenu a {
  padding: .4rem .5rem;
  display: block;
  color: var(--bs-dark, #000);
  text-decoration: none;
}

.offcanvas-menu .submenu a:hover {
  color: var(--primary);
  background: rgba(0, 0, 0, 0.03);
}

/* About Section - Neumorphism */
.about {
  padding: 30px 0;
  background: var(--neu-bg);
  position: relative;
  overflow: hidden;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}

@media(max-width:767px) {
  .about-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
  }
}

.about-title span {
  color: var(--gradient-end);
}

.about-text {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-img {
  width: 100%;
}

/* Features Section - Neumorphism */
.features {
  padding: 30px 0;
  background: var(--neu-bg);
}

.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;
  font-size: 2.5rem;
}

.section-title p {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.feature-card {
  background: var(--neu-bg);
  border-radius: 25px;
  padding: 40px 30px;
  box-shadow: 8px 8px 16px var(--neu-shadow-dark),
    -8px -8px 16px var(--neu-shadow-light);
  transition: all 0.4s ease;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  box-shadow: inset 5px 5px 10px var(--neu-shadow-dark),
    inset -5px -5px 10px var(--neu-shadow-light);
  transform: translateY(5px);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
  display: inline-block;
  transition: all 0.3s ease;
}

.feature-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
  padding: 30px 0;
  background: var(--neu-bg);
}

.step-card {
  background: var(--neu-bg);
  border-radius: 25px;
  padding: 40px 30px;
  box-shadow: 8px 8px 16px var(--neu-shadow-dark),
    -8px -8px 16px var(--neu-shadow-light);
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 5px 5px 10px var(--neu-shadow-dark);
}

.step-card:hover {
  transform: translateY(-10px);
}

.step-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

/* Benefits Section */
.benefits {
  padding: 30px 0;
  background: var(--neu-bg);
}

.benefit-card {
  background: var(--neu-bg);
  border-radius: 25px;
  padding: 30px;
  box-shadow: 8px 8px 16px var(--neu-shadow-dark),
    -8px -8px 16px var(--neu-shadow-light);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 12px 12px 20px var(--neu-shadow-dark),
    -12px -12px 20px var(--neu-shadow-light);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-content h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 600;
}

.benefit-content p {
  color: #666;
  margin: 0;
}

/* Testimonials Section */
.testimonials {
  padding: 30px 0;
  background: var(--neu-bg);
}

.testimonial-card {
  background: var(--neu-bg);
  border-radius: 25px;
  padding: 30px;
  box-shadow: 8px 8px 16px var(--neu-shadow-dark),
    -8px -8px 16px var(--neu-shadow-light);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-text::before {
  content: "";
  font-size: 4rem;
  color: var(--accent);
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.author-info h5 {
  margin: 0;
  color: var(--primary);
  font-weight: 600;
}

.author-info p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

/* FAQ Section - Neumorphism */
.faq {
  padding: 30px 0;
  background: var(--neu-bg);
}

.faq-container {
  width: 100%;
}

.faq-card {
  background: var(--neu-bg);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 5px 5px 10px var(--neu-shadow-dark),
    -5px -5px 10px var(--neu-shadow-light);
  transition: all 0.3s ease;
}

.faq-card:hover {
  box-shadow: 8px 8px 16px var(--neu-shadow-dark),
    -8px -8px 16px var(--neu-shadow-light);
}

.faq-card.active {
  box-shadow: inset 3px 3px 6px var(--neu-shadow-dark),
    inset -3px -3px 6px var(--neu-shadow-light);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 15px 0;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0;
  color: #666;
}

.faq-card.active .faq-answer {
  max-height: 500px;
  padding: 10px 0;
}

.faq-card.active .plus-icon {
  transform: rotate(45deg);
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-btn {
  background: white;
  color: var(--primary);
  border: none;
  border-radius: 15px;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.3);
}

/* Footer - Neumorphism */
footer {
  background: var(--neu-bg);
  color: var(--primary);
  padding: 60px 0 20px;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.05);
}

.footer-links h5 {
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.copyright {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
  color: #666;
}

/* Default size for desktop */
.logo-img {
  height: 50px;
  width: 170px;
}

/* Animations */
.animate-up {
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s ease;
}

.animate-up.animated {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-left,
  .hero-right {
    max-width: 100%;
  }

  .hero-img {
    width: 100%;
    margin-top: 0px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .section-title h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 576px) {
  .recharge-box {
    padding: 25px 20px;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }

  .logo-img {
    height: 35px;
    width: 100px;
  }
}

.instant-fastag {
  font-size: 2.4rem !important;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 6px;
}

/* Scrollbar track (background area) */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Scrollbar thumb (the moving handle) */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
  min-height: 60px;
}

/* Scrollbar thumb hover effect */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

.form-control {
  padding: 13px 20px;
  border-radius: 15px;
}