/* ===================================
   SOFT DATA HUB CSS
   PART 1
=================================== */

/* RESET */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f7fb;
  color: #222;
  overflow-x: hidden;
  line-height: 1.6;
}

/* HEADER */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

/* Left & Right Circle Buttons */

.menu-btn,
.notify-btn {
  width: 72px;
  height: 72px;
  border: none;
  border-radius: 50%;
  background: #eef2ff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.menu-btn i,
.notify-btn i {
  font-size: 34px;
  color: #0056d6;
}

/* Logo Area */

.logo-area {
  display: flex;
  align-items: center;
  flex: 1;
  margin: 0 20px;
}

.logo-area img {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 18px;
}

/* Text */

.logo-text h1 {
  margin: 0;
  color: #0056d6;
  font-size: 30px;
  font-weight: 700;
}

.logo-text p {
  margin-top: 6px;
  color: #666;
  font-size: 17px;
}
@media(max-width:768px) {
  
  .header {
    padding: 15px;
  }
  
  .menu-btn,
  .notify-btn {
    width: 60px;
    height: 60px;
  }
  
  .menu-btn i,
  .notify-btn i {
    font-size: 28px;
  }
  
  .logo-area img {
    width: 80px;
    height: 80px;
    margin-right: 12px;
  }
  
  .logo-text h1 {
    font-size: 24px;
  }
  
  .logo-text p {
    font-size: 14px;
  }
  
}

/* NAVIGATION */

nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  background: #0056c7;
  
  padding: 15px 8%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

.logo span {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

#theme-btn,
#menu-btn,
#close-btn {
  width: 45px;
  height: 45px;
  
  border: none;
  border-radius: 10px;
  
  cursor: pointer;
  
  font-size: 22px;
  
  background: #fff;
  color: #0056c7;
  
  transition: .3s;
}

#theme-btn:hover,
#menu-btn:hover,
#close-btn:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: .3s;
}

.nav-links a:hover {
  color: #ffd700;
}

.hero {
  background-image: url("./images/hero.jpeg") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  
  color: white;
  margin: 15px;
  padding: 30px 20px;
  border-radius: 22px;
  text-align: center;
  
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 43, 120, 0.65);
  z-index: 0;
}

.hero h1,
.hero p,
.hero .auth {
  position: relative;
  z-index: 1;
}


/* BUTTONS */

.btn {
  
  display: inline-block;
  
  text-decoration: none;
  
  padding: 17px 35px;
  
  border-radius: 50px;
  
  font-weight: bold;
  
  transition: .3s;
  
}

.btn-primary {
  
  background: white;
  
  color: #0056c7;
  
}

.btn-primary:hover {
  
  transform: translateY(-5px);
  
}

.btn-outline {
  
  border: 2px solid white;
  
  color: white;
  
}

.btn-outline:hover {
  
  background: white;
  
  color: #0056c7;
  
}

/* SECTION TITLE */

section h2 {
  
  font-size: 38px;
  
  color: #0056c7;
  
  text-align: center;
  
  margin-bottom: 45px;
  
}
/* ===================================
   PART 2
   SERVICES • STATS • FEATURES • PRICING
=================================== */

/* SERVICES */

.services {
  padding: 80px 8%;
  background: #ffffff;
}

.service-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
  transition: .3s;
  min-height: 220px;
}

.card:hover {
  transform: translateY(-8px);
}

.service-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 28px;
  color: #0056c7;
  margin-bottom: 12px;
}

.card p {
  font-size: 18px;
  color: #666;
  line-height: 1.5;
}

/* STATS */

.stats {
  background: #0056c7;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  padding: 45px 20px;
  text-align: center;
}

.stat h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.stat p {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* FEATURES */

.features {
  padding: 60px 20px;
  background: #f8f9fc;
  text-align: center;
}

.feature-box {
  display: grid;
  gap: 20px;
}

.feature {
  background: #fff;
  padding: 25px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.feature:hover {
  transform: translateY(-8px);
}

.feature h3 {
  font-size: 28px;
  color: #0056c7;
  margin-bottom: 12px;
}

.feature p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* PRICING */

.pricing {
  background: #ffffff;
  padding: 80px 8%;
}

.pricing-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.plan {
  background: #fff;
  border-radius: 20px;
  padding: 10px 25px 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
  transition: .3s;
}

.plan img {
  margin-top: 0;
}

.plan:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 87, 217, 0.2);
}

.network-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  
  background: #fff;
  padding: 10px;
  border-radius: 50%;
  
  box-shadow: 0 6px 15px rgba(0, 0, 0, .12);
  
  display: block;
  margin: 0 auto 18px;
}

.plan h3 {
  color: #0056c7;
  margin-bottom: 10px;
}

.price {
  font-size: 34px;
  font-weight: bold;
  color: #0077ff;
  margin: 20px 0;
}

.plan button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #0057d9, #007bff);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  transition: all .3s ease;
  box-shadow: 0 8px 18px rgba(0, 87, 217, .35);
}

.plan button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 87, 217, .45);
}


/* ===================================
   PART 3
   FAQ • TESTIMONIALS • CONTACT • FOOTER
=================================== */

/* TESTIMONIALS */

.testimonials {
  padding: 60px 20px;
  background: #f8f9fc;
  text-align: center;
}


.testimonial-box {
  display: grid;
  gap: 20px;
}

.testimonial {
  background: #fff;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.testimonial:hover {
  transform: translateY(-8px);
}

.testimonial p {
  font-size: 20px;
  line-height: 1.7;
  color: #555;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial h4 {
  color: #0056c7;
  font-size: 24px;
  margin: 0;
}

/* FAQ */

.faq {
  background: #ffffff;
  padding: 80px 8%;
}

.faq-item {
  margin-bottom: 18px;
}

.faq-question {
  width: 100%;
  border: none;
  background: #0056c7;
  color: #fff;
  padding: 18px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  transition: .3s;
}

.faq-question:hover {
  background: #0045a5;
}

.faq-answer {
  display: none;
  background: #f8f9fc;
  padding: 20px;
  border-radius: 0 0 10px 10px;
  line-height: 1.7;
}

/* CONTACT */

.contact {
  background: #eef5ff;
  padding: 80px 20px;
  text-align: center;
}

.contact p {
  max-width: 700px;
  margin: 0 auto 35px;
  font-size: 18px;
  color: #555;
}

/* FOOTER */

footer {
  background: #0f172a;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

footer h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

footer p {
  margin: 12px 0;
  color: #d1d5db;
}

footer a {
  color: #25D366;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}

/* WHATSAPP FLOAT */

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  
  width: 60px;
  height: 60px;
  
  background: #25D366;
  color: #fff;
  
  display: flex;
  justify-content: center;
  align-items: center;
  
  border-radius: 50%;
  
  font-size: 30px;
  
  text-decoration: none;
  
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  
  transition: .3s;
  
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
/* ===================================
   PART 4
   RESPONSIVE • DARK MODE • ANIMATIONS
=================================== */

/* FADE ANIMATION */

.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* DARK MODE */

body.dark {
  background: #121212;
  color: #f5f5f5;
}

body.dark header {
  background: #0048a5;
}

body.dark nav {
  background: #003d91;
}

body.dark .services,
body.dark .pricing,
body.dark .faq {
  background: #181818;
}

body.dark .features,
body.dark .testimonials {
  background: #202020;
}

body.dark .card,
body.dark .feature,
body.dark .plan,
body.dark .testimonial,
body.dark .faq-answer {
  background: #2b2b2b;
  color: white;
}

body.dark .card p,
body.dark .feature p,
body.dark .testimonial p,
body.dark .contact p {
  color: #ddd;
}

body.dark .contact {
  background: #1c1c1c;
}

body.dark footer {
  background: #000;
}

/* STICKY NAV */

nav.scrolled {
  box-shadow: 0 5px 15px rgba(0, 0, 0, .25);
}

/* MOBILE */

@media(max-width:768px) {
  
  nav {
    padding: 15px 20px;
  }
  
  .logo span {
    font-size: 20px;
  }
  
  .logo img {
    width: 45px;
    height: 45px;
  }
  
.hero {
  background-image: url("images/hero.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  margin: 15px;
  padding: 30px 20px;
  border-radius: 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 43, 120, .70);
  z-index: 0;
}

.hero h1,
.hero p,
.hero .auth {
  position: relative;
  z-index: 1;
}
  /* MOBILE MENU */
  
  #menu-btn {
    display: block;
  }
  
  #close-btn {
    display: block;
    align-self: flex-end;
    margin-bottom: 20px;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    
    background: #0056c7;
    
    display: flex;
    flex-direction: column;
    
    padding: 30px 20px;
    
    transition: .35s ease;
    
    z-index: 2000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    padding: 15px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }
  
  .service-box,
  .feature-box,
  .pricing-box,
  .testimonial-box {
    grid-template-columns: 1fr;
  }
  
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  section h2 {
    font-size: 30px;
  }
  
}

/* DESKTOP */

@media(min-width:769px) {
  
  #menu-btn,
  #close-btn {
    display: none;
  }
  
  .nav-links {
    position: static;
    width: auto;
    height: auto;
    background: none;
    flex-direction: row;
    padding: 0;
  }
  
}
.check {
  color: #25D366;
  font-size: 20px;
  font-weight: bold;
  margin-right: 8px;
}
.pricing-subtitle {
  text-align: center;
  color: #666;
  font-size: 17px;
  max-width: 650px;
  margin: -5px auto 35px;
  line-height: 1.6;
}
.login-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
}
.login-text {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.5;
}
.login-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background: #0056d6;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  box-sizing: border-box;
}
/* ===================================
   LOGIN PAGE
=================================== */

.login-page {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f7fb;
}

.login-box {
  width: 90%;
  max-width: 420px;
  margin: 70px auto;
  background: #fff;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

.login-logo {
  width: 90px;
  height: 90px;
  display: block;
  margin: 0 auto 20px;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
}

.login-box h2 {
  text-align: center;
  color: #0056d6;
  margin-bottom: 10px;
}

.login-text {
  text-align: center;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.login-box input {
  width: 100%;
  padding: 15px;
  margin: 12px 0;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  box-sizing: border-box;
}

.login-btn {
  display: block;
  width: 100%;
  background: #0056d6;
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  transition: .3s;
  box-sizing: border-box;
}

.login-btn:hover {
  background: #0047b5;
}

.signup-link {
  text-align: center;
  margin-top: 20px;
}

.signup-link a {
  color: #0056d6;
  text-decoration: none;
  font-weight: bold;
}


.dashboard-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.menu-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
  transition: .3s;
}

.menu-card:hover {
  transform: translateY(-5px);
}

.menu-card span {
  display: block;
  margin-top: 10px;
}

#logout-btn {
  width: 100%;
  margin-top: 25px;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: red;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
/* ================= LOGIN & SIGNUP ================= */

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #f4f7fc;
}

.signup-container,
.login-container {
  width: 90%;
  max-width: 400px;
  margin: 60px auto;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
}

.signup-container h2,
.login-container h2 {
  text-align: center;
  color: #0077ff;
  margin-bottom: 10px;
}

.signup-container p,
.login-container p {
  text-align: center;
  color: #666;
}

.signup-container input,
.login-container input {
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  box-sizing: border-box;
}

.signup-container input:focus,
.login-container input:focus {
  border-color: #0077ff;
  outline: none;
}

#signup-btn,
#login-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: #0077ff;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

#signup-btn:hover,
#login-btn:hover {
  background: #005fcc;
}

.signup-container a,
.login-container a {
  color: #0077ff;
  text-decoration: none;
  font-weight: bold;
}

.signup-container a:hover,
.login-container a:hover {
  text-decoration: underline;
}
/* ===== Dashboard Header ===== */

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.profile-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0077ff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
}

.profile-info h2 {
  margin: 0;
  color: #222;
}

.profile-info p {
  margin-top: 5px;
  color: #777;
  font-size: 14px;
}
/* ===== Transactions ===== */

.transaction-card {
  background: #fff;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
}

.transaction-card h3 {
  margin: 0 0 10px;
  color: #0077ff;
}

.transaction-card p {
  margin: 5px 0;
}

/* ===== Network Cards ===== */

.network-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 20px 0;
}

.network-card {
  border: 2px solid transparent;
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.network-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.network-card.active {
  border: 2px solid #0077ff;
  background: #e8f2ff;
  box-shadow: 0 0 12px rgba(0, 119, 255, 0.4);
}
/* ===== Data Plan Cards ===== */

.plan-grid {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.plan-card {
  border: 2px solid #ddd;
  border-radius: 15px;
  padding: 15px;
  cursor: pointer;
  transition: .3s;
  background: #fff;
}

.plan-card h4 {
  margin: 0;
  color: #0077ff;
}

.plan-card p {
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: bold;
}

.plan-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, .1);
}

.plan-card.active {
  border-color: #0077ff;
  background: #eef6ff;
}
/* SETTINGS PAGE */

.settings-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}

.settings-list .menu-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 18px;
  border-radius: 15px;
  text-decoration: none;
  color: #222;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
  font-size: 18px;
  font-weight: 600;
}

.settings-list .menu-card span {
  color: #0077ff;
}

.settings-list .menu-card:hover {
  transform: translateY(-2px);
}
/* Welcome Card */

.welcome-card {
  background: linear-gradient(135deg, #0077ff, #00a2ff);
  color: #fff;
  padding: 20px;
  border-radius: 18px;
  margin: 20px 0;
  box-shadow: 0 10px 25px rgba(0, 119, 255, .25);
}

.welcome-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.welcome-card p {
  line-height: 1.6;
  font-size: 15px;
}
/* Search Box */

.search-box {
  width: 100%;
  padding: 15px;
  margin: 20px 0;
  border: 2px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
  box-sizing: border-box;
}

.search-box:focus {
  outline: none;
  border-color: #0077ff;
}
/* ===========================
   WALLET CARD
=========================== */

.wallet-card {
  background: #fff;
  border-radius: 28px;
  padding: 28px 22px;
  margin: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.wallet-title {
  font-size: 20px;
  font-weight: 500;
  color: #666;
  margin-bottom: 25px;
}

.wallet-balance-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 20px 0 30px;
}

.wallet-balance {
  color: #fff;
  font-size: 54px;
  font-weight: 700;
}

.icon-btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.icon-btn i {
  font-size: 22px;
}
.icon-btn:hover {
  background: #dce9ff;
}

.wallet-buttons {
  display: flex;
  gap: 18px;
}

.wallet-action {
  flex: 1;
  height: 72px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
}

.wallet-action i:first-child {
  font-size: 28px;
}

.wallet-action.primary {
  background: #0057d9;
  color: #fff;
}

.wallet-action.secondary {
  background: #eef4ff;
  color: #0057d9;
}

.settings-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.back-btn {
  color: #222;
  text-decoration: none;
  font-size: 22px;
}

.settings-header h2 {
  margin: 0;
  font-size: 24px;
}

.forgot-password {
  text-align: right;
  margin: 10px 0 20px;
}

.forgot-password a {
  color: #0077ff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.forgot-password a:hover {
  text-decoration: underline;
}
.back-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 42px;
  height: 42px;
  background: #007bff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 18px;
  z-index: 1000;
}

.back-btn:hover {
  background: #0056d6;
  transform: scale(1.08);
}
/* ===========================
   DATA PLAN CATEGORIES
=========================== */

.plan-category {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin: 15px 0 20px;
  padding-bottom: 5px;
}

.plan-category::-webkit-scrollbar {
  display: none;
}

.category-btn {
  padding: 10px 18px;
  border: 2px solid #0077ff;
  border-radius: 30px;
  background: #fff;
  color: #0077ff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  white-space: nowrap;
}

.category-btn:hover {
  background: #0077ff;
  color: #fff;
}

.category-btn.active {
  background: #0077ff;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 119, 255, 0.25);
}
/* ===========================
   CABLE TV PROVIDERS
=========================== */

.tv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 20px 0;
}

.tv-card {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 18px;
  text-align: center;
  padding: 20px 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.tv-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 15px;
}

.tv-card span {
  display: block;
  font-size: 17px;
  font-weight: bold;
}

.tv-card:hover {
  border-color: #0077ff;
  transform: translateY(-4px);
}

.tv-card.active {
  border-color: #0077ff;
  background: #eef5ff;
  box-shadow: 0 6px 15px rgba(0, 119, 255, 0.25);
}
/* ===========================
   CUSTOMER NAME
=========================== */

#customer-name {
  background: #f5f7fb;
  color: #555;
  font-weight: 600;
}
/* ===========================
   BOUQUET CARD
=========================== */

.bouquet-card {
  border: 2px solid #ddd;
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.3s;
  background: #fff;
}

.bouquet-card h4 {
  color: #0077ff;
  margin-bottom: 8px;
}

.bouquet-card p {
  color: #555;
  font-weight: bold;
}

.bouquet-card small {
  color: #888;
}

.bouquet-card.active {
  border-color: #0077ff;
  background: #eef5ff;
}
.tv-card.active {
  border: 2px solid #0077ff;
  background: #eef5ff;
}

.plan-card {
  padding: 15px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  background: #fff;
  transition: .3s;
}

.plan-card.active {
  border: 2px solid #0077ff;
  background: #eef5ff;
}
.password-box {
  position: relative;
  width: 100%;
}

.password-box input {
  width: 100%;
  padding-right: 45px;
}

#toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: flex;
  align-items: center;
}
.pin-boxes {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 20px 0;
}

.pin-input {
  width: 60px;
  height: 60px;
  border: 2px solid #dcdcdc;
  border-radius: 15px;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  outline: none;
}

.pin-input:focus {
  border-color: #2563eb;
}
/* ===== PIN MODAL ===== */

/* =====================================================
   PIN MODAL
===================================================== */

.pin-modal {
  position: fixed;
  inset: 0;

  display: none;

  align-items: center;
  justify-content: center;

  padding: 20px;

  background: rgba(0, 0, 0, 0.58);

  z-index: 99999;

  overflow-y: auto;
}

.pin-modal.show {
  display: flex;
}


/* =====================================================
   PIN CONTENT
===================================================== */

.pin-card {
  width: 100%;
  max-width: 390px;

  background: #ffffff;

  border-radius: 24px 24px 0 0;

  padding: 24px 20px 18px;

  text-align: center;

  box-sizing: border-box;
}


/* =====================================================
   PIN TITLE
===================================================== */

.pin-card h2 {
  margin: 0;

  font-size: 22px;
  font-weight: 700;

  color: #222;
}

.pin-card p {
  margin: 8px 0 20px;

  font-size: 14px;

  color: #777;
}


/* =====================================================
   PIN BOXES
===================================================== */

.pin-boxes {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 10px;

  margin-bottom: 20px;
}

.pin-box {
  width: 46px;
  height: 46px;

  border: 2px solid #ddd;

  border-radius: 12px;

  background: #fafafa;

  transition: 0.2s ease;
}

.pin-box.active {
  border-color: #285cc5;
}

.pin-box.filled {
  position: relative;

  background: #285cc5;

  border-color: #285cc5;
}

.pin-box.filled::after {
  content: "";

  position: absolute;

  width: 8px;
  height: 8px;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  background: #ffffff;

  border-radius: 50%;
}


/* =====================================================
   HIDDEN PIN INPUT
===================================================== */

#transaction-pin {
  display: none;
}


/* =====================================================
   CANCEL BUTTON
===================================================== */

#cancel-pin {
  width: 100%;
  height: 48px;

  border: none;

  border-radius: 12px;

  background: #f1f3f5;

  color: #333;

  font-size: 15px;
  font-weight: 700;

  cursor: pointer;

  margin: 0;
}

#cancel-pin:active {
  transform: scale(0.98);
}


/* =====================================================
   KEYPAD
===================================================== */

.pin-keypad {
  width: 100%;
  max-width: 390px;

  padding: 14px 18px 20px;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 9px;

  background: #f7f8fa;

  border-radius: 0 0 24px 24px;

  box-sizing: border-box;
}


/* =====================================================
   KEYPAD BUTTONS
===================================================== */

.pin-keypad button {
  width: 100%;
  height: 50px;

  border: none;

  border-radius: 12px;

  background: #ffffff;

  color: #222;

  font-size: 19px;
  font-weight: 600;

  box-shadow:
    0 2px 7px rgba(0, 0, 0, 0.05);

  cursor: pointer;

  transition: 0.1s ease;
}

.pin-keypad button:active {
  transform: scale(0.94);

  background: #eef5ff;
}


/* =====================================================
   EMPTY KEY
===================================================== */

.pin-keypad .empty {
  visibility: hidden;

  pointer-events: none;
}


/* =====================================================
   DELETE KEY
===================================================== */

#delete-key {
  font-size: 21px;

  color: #555;

  background: #f1f3f5;
}


/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width: 400px) {

  .pin-modal {
    padding: 12px;
  }

  .pin-card {
    max-width: 360px;

    padding:
      20px
      16px
      15px;
  }

  .pin-card h2 {
    font-size: 20px;
  }

  .pin-card p {
    font-size: 13px;

    margin-bottom: 17px;
  }

  .pin-box {
    width: 43px;
    height: 43px;
  }

  .pin-boxes {
    gap: 9px;

    margin-bottom: 17px;
  }

  #cancel-pin {
    height: 45px;
  }

  .pin-keypad {
    max-width: 360px;

    padding:
      12px
      15px
      17px;

    gap: 8px;
  }

  .pin-keypad button {
    height: 47px;

    font-size: 18px;
  }

}
/* ==========================================
   BUY DATA PAGE
========================================== */

.buy-data-container {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  padding: 0 16px 50px;
}


/* =========================
   PAGE HEADER
========================= */

.page-header {
  position: relative;
  
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  
  margin-bottom: 30px;
  padding-top: 10px;
}

/* Back button stays at the top */

.back-btn {
  width: 50px;
  height: 50px;
  
  border: none;
  border-radius: 15px;
  
  background: #ffffff;
  color: #0056c7;
  
  font-size: 22px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  
  cursor: pointer;
  
  margin-bottom: 18px;
}

.back-btn:active {
  transform: scale(0.95);
}

/* Heading is now BELOW the arrow */

.page-header .header-text {
  width: 100%;
}

.page-header h1 {
  margin: 0;
  
  font-size: 30px;
  font-weight: 700;
  
  color: #222;
}

.page-header p {
  margin: 7px 0 0;
  
  color: #777;
  
  font-size: 15px;
  line-height: 1.4;
}

/* ==========================================
   FORM
========================================== */

#buy-data-form {
  width: 100%;
}


/* ==========================================
   SECTION TITLES
========================================== */

.section-title {
  font-size: 20px;
  font-weight: 700;
  
  margin-top: 25px;
  margin-bottom: 15px;
  
  color: #222;
}
/* =====================================================
   PIN MODAL
===================================================== */

.pin-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
}

.pin-modal.show {
  display: flex;
}

.pin-card {
  position: relative;
  width: calc(100% - 40px);
  max-width: 380px;
  padding: 30px 20px 25px;
  background: #fff;
  border-radius: 20px;
  box-sizing: border-box;
}

/* X CLOSE BUTTON */

.pin-close {
  position: absolute;
  top: 12px;
  right: 12px;
  
  width: 38px;
  height: 38px;
  
  border: none;
  border-radius: 50%;
  
  background: #f1f1f1;
  color: #333;
  
  font-size: 26px;
  line-height: 38px;
  text-align: center;
  
  cursor: pointer;
  
  z-index: 10001;
  pointer-events: auto;
}

.pin-close:active {
  transform: scale(0.95);
}


/* =====================================================
   PIN CARD
===================================================== */

.pin-card {
  position: relative;

  width: 100%;
  max-width: 420px;

  background: #ffffff;

  border-radius: 24px 24px 0 0;

  padding: 25px 20px 22px;

  text-align: center;

  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.18);

  animation: pinSlideUp 0.25s ease;
}


/* =====================================================
   ANIMATION
===================================================== */

@keyframes pinSlideUp {

  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }

}


/* =====================================================
   CLOSE BUTTON
===================================================== */

.pin-close {

  position: absolute;

  top: 14px;
  right: 16px;

  width: 34px;
  height: 34px;

  border: none;

  border-radius: 50%;

  background: #f1f3f6;

  color: #555;

  font-size: 24px;

  line-height: 1;

  cursor: pointer;

}


/* =====================================================
   LOCK ICON
===================================================== */

.pin-icon {

  width: 48px;
  height: 48px;

  margin: 0 auto 12px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #eaf2ff;

  color: #0056c7;

  font-size: 20px;

}


/* =====================================================
   TITLE
===================================================== */

.pin-card h2 {

  margin: 0;

  font-size: 20px;

  color: #222;

}


/* =====================================================
   DESCRIPTION
===================================================== */

.pin-card p {

  margin: 7px 0 18px;

  font-size: 14px;

  color: #777;

}


/* =====================================================
   PIN BOXES
===================================================== */

.pin-boxes {

  display: flex;

  justify-content: center;

  gap: 12px;

  margin-bottom: 22px;

}


.pin-box {

  width: 48px;
  height: 48px;

  border: 2px solid #d9dee7;

  border-radius: 10px;

  background: #fff;

  position: relative;

}


/* Filled PIN */

.pin-box.filled::after {

  content: "";

  position: absolute;

  width: 11px;
  height: 11px;

  background: #0056c7;

  border-radius: 50%;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

}


/* Active PIN box */

.pin-box.active {

  border-color: #0056c7;

}


/* =====================================================
   KEYPAD
===================================================== */

.pin-keypad {

  width: 100%;
  max-width: 300px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 10px;

}


.pin-keypad .key,
.pin-keypad .delete-key {

  height: 52px;

  border: none;

  border-radius: 12px;

  background: #f4f6f9;

  color: #222;

  font-size: 20px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.15s ease;

}


.pin-keypad .key:active,
.pin-keypad .delete-key:active {

  transform: scale(0.94);

  background: #e4e8ee;

}


/* Delete */

.pin-keypad .delete-key {

  color: #555;

  font-size: 18px;

}


/* =====================================================
   CANCEL BUTTON
===================================================== */

.cancel-pin-bottom {

  width: 100%;

  max-width: 300px;

  height: 48px;

  margin: 15px auto 0;

  display: block;

  border: none;

  border-radius: 12px;

  background: #f1f3f6;

  color: #555;

  font-size: 15px;

  font-weight: 600;

  cursor: pointer;

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 480px) {

  .pin-card {

    padding: 22px 16px 18px;

  }

  .pin-box {

    width: 45px;
    height: 45px;

  }

  .pin-keypad {

    max-width: 280px;

    gap: 8px;

  }

  .pin-keypad .key,
  .pin-keypad .delete-key {

    height: 48px;

  }

}
/* =========================================
   BUY DATA - PHONE NUMBER
========================================= */

.phone-section {
  width: 100%;
  margin-top: 25px;
}

.phone-section label {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.phone-input-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 14px;
  padding: 0 16px;
  box-sizing: border-box;
  height: 58px;
}

.phone-input-wrapper i {
  color: #2563eb;
  font-size: 18px;
}

.phone-input-wrapper input {
  flex: 1;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 17px;
  color: #222;
  padding: 0;
}

.phone-input-wrapper input::placeholder {
  color: #999;
}


/* =========================================
   BUY DATA BUTTON
========================================= */

.buy-button-wrapper {
  width: 100%;
  margin-top: 25px;
  margin-bottom: 30px;
}

#buy-data-btn {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 14px;
  background: #2563eb;
  color: white;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  
  box-sizing: border-box;
  transition: 0.2s ease;
}

#buy-data-btn:hover {
  background: #1d4ed8;
}

#buy-data-btn:active {
  transform: scale(0.98);
}

#buy-data-btn i {
  font-size: 17px;
}


/* =========================================
   BUY DATA FORM SPACING
========================================= */

#buy-data-form {
  width: 100%;
}

.phone-section,
.buy-button-wrapper {
  box-sizing: border-box;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
  
  .phone-section label {
    font-size: 17px;
  }
  
  .phone-input-wrapper {
    height: 56px;
  }
  
  .phone-input-wrapper input {
    font-size: 16px;
  }
  
  #buy-data-btn {
    height: 56px;
    font-size: 17px;
  }
  
}
/* =================================
   BUY DATA PAGE - LARGER LAYOUT
================================= */

.buy-data-container {
  width: 92%;
  max-width: 950px;
  margin: 0 auto;
  padding: 30px 20px 60px;
  box-sizing: border-box;
}

/* Header */
.page-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.header-text h1 {
  font-size: 32px;
  margin: 0 0 8px;
}

.header-text p {
  font-size: 18px;
  margin: 0;
  color: #777;
}

/* Section headings */
.section-title {
  font-size: 24px;
  margin: 28px 0 18px;
}

/* Network cards */
.network-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.network-card {
  min-height: 110px;
  padding: 18px;
  box-sizing: border-box;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.2s ease;
}

.network-card img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.network-card span {
  font-size: 18px;
}

.network-card.active {
  border-color: #2878ff;
  background: #edf4ff;
  box-shadow: 0 5px 15px rgba(40, 120, 255, 0.15);
}

/* Category buttons */
.category-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.category-btn {
  padding: 10px 18px;
  border-radius: 25px;
  border: 2px solid #2878ff;
  background: white;
  color: #2878ff;
  font-weight: 600;
  cursor: pointer;
}

.category-btn.active {
  background: #2878ff;
  color: white;
}

/* Data plans */
.plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.plan-card {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
}

.plan-card h4 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #2878ff;
}

.plan-card p {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.plan-card.active {
  border: 2px solid #2878ff;
  background: #edf4ff;
}

/* Phone number */
.phone-section {
  margin-top: 28px;
}

.phone-section label {
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.phone-input-wrapper {
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  box-sizing: border-box;
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
}

.phone-input-wrapper i {
  color: #2878ff;
}

.phone-input-wrapper input {
  flex: 1;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
}

/* Buy button */
.buy-button-wrapper {
  margin-top: 20px;
}

#buy-data-btn {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 12px;
  background: #2864e8;
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

#buy-data-btn:active {
  transform: scale(0.98);
}

/* =====================================================
   AIRTIME PIN MODAL — SAME DESIGN AS BUY DATA
===================================================== */

.pin-modal {
  position: fixed !important;
  inset: 0 !important;
  
  background: rgba(0, 0, 0, 0.55) !important;
  
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  
  z-index: 9999 !important;
}

.pin-modal.show {
  display: flex !important;
}

.pin-modal .pin-card {
  width: min(90%, 380px) !important;
  max-width: 380px !important;
  
  background: #fff !important;
  
  border-radius: 25px !important;
  
  padding: 30px 25px !important;
  
  text-align: center !important;
  
  position: relative !important;
  
  box-sizing: border-box !important;
}

/* CLOSE BUTTON */

.pin-modal .pin-close {
  position: absolute !important;
  
  top: 12px !important;
  right: 15px !important;
  
  width: 38px !important;
  height: 38px !important;
  
  min-width: 38px !important;
  
  padding: 0 !important;
  
  border: none !important;
  
  border-radius: 50% !important;
  
  background: transparent !important;
  
  color: #222 !important;
  
  font-size: 30px !important;
  
  line-height: 38px !important;
  
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  
  box-shadow: none !important;
}

/* LOCK ICON */

.pin-modal .pin-icon {
  width: 55px !important;
  height: 55px !important;
  
  margin: 5px auto 15px !important;
  
  border-radius: 50% !important;
  
  background: #edf4ff !important;
  color: #3478ed !important;
  
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  
  font-size: 22px !important;
}

/* TITLE */

.pin-modal .pin-card h2 {
  margin: 10px 0 5px !important;
  
  font-size: 23px !important;
}

/* DESCRIPTION */

.pin-modal .pin-card p {
  margin: 0 0 20px !important;
  
  color: #777 !important;
  
  font-size: 15px !important;
}

/* PIN BOXES */

.pin-modal .pin-boxes {
  display: flex !important;
  
  justify-content: center !important;
  
  gap: 12px !important;
  
  margin-bottom: 25px !important;
}

.pin-modal .pin-box {
  width: 52px !important;
  height: 52px !important;
  
  border: 2px solid #ddd !important;
  
  border-radius: 12px !important;
  
  background: #fafafa !important;
  
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  
  font-size: 28px !important;
  font-weight: bold !important;
  
  line-height: 1 !important;
  
  box-sizing: border-box !important;
}

.pin-modal .pin-box.filled {
  background: #fff !important;
  border: 3px solid #ddd !important;
  color: #222 !important;
}

.pin-modal .pin-box.active {
  border: 3px solid #3478ed !important;
  background: #fff !important;
}

/* KEYPAD */

.pin-modal .pin-keypad {
  display: grid !important;
  
  grid-template-columns: repeat(3, 1fr) !important;
  
  gap: 10px !important;
  
  background: #f7f8fa !important;
  
  padding: 0 !important;
}

.pin-modal .pin-keypad button {
  width: 100% !important;
  height: 52px !important;
  
  border: none !important;
  
  border-radius: 12px !important;
  
  background: #f1f3f7 !important;
  
  font-size: 20px !important;
  
  font-weight: 600 !important;
  
  color: #222 !important;
  
  box-shadow: none !important;
}

.pin-modal .pin-keypad button:active {
  background: #dfe5ef !important;
}
/* =====================================================
   AIRTIME TRANSACTION PIN MODAL
   MATCH BUY DATA PIN DESIGN
===================================================== */

.pin-modal {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.55);

  display: none;

  align-items: center;
  justify-content: center;

  z-index: 99999;
}

.pin-modal.show {
  display: flex;
}


/* ==========================
   PIN CARD
========================== */

.pin-card {
  width: min(90%, 750px);

  background: #fff;

  border-radius: 35px;

  padding: 55px 45px 50px;

  text-align: center;

  position: relative;

  box-sizing: border-box;
}


/* ==========================
   CLOSE BUTTON
========================== */

.pin-close {
  position: absolute;

  top: 35px;
  right: 35px;

  width: 50px;
  height: 50px;

  border: none;

  background: transparent;

  color: #3478ed;

  font-size: 45px;

  line-height: 1;

  cursor: pointer;
}


/* ==========================
   LOCK ICON
========================== */

.pin-icon {
  width: 120px;
  height: 120px;

  margin: 10px auto 30px;

  border-radius: 50%;

  background: #edf4ff;

  color: #3478ed;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 48px;
}


/* ==========================
   TITLE
========================== */

.pin-card h2 {
  margin: 0 0 18px;

  font-size: 40px;

  font-weight: 700;

  color: #222;
}


/* ==========================
   DESCRIPTION
========================== */

.pin-card p {
  margin: 0 auto 40px;

  max-width: 600px;

  color: #777;

  font-size: 25px;

  line-height: 1.4;
}


/* ==========================
   PIN BOXES
========================== */

.pin-boxes {
  display: flex;

  justify-content: center;

  gap: 25px;

  margin-bottom: 45px;
}


.pin-box {
  width: 115px;
  height: 115px;

  border: 4px solid #ddd;

  border-radius: 22px;

  background: #fff;

  display: flex;

  align-items: center;
  justify-content: center;

  text-align: center;

  font-size: 45px;

  font-weight: 700;

  line-height: 1;

  color: #222;

  box-sizing: border-box;
}


/* ENTERED PIN */

.pin-box.filled {
  border-color: #ddd;

  background: #fff;

  color: #222;
}


/* CURRENT PIN BOX */

.pin-box.active {
  border-color: #3478ed;

  background: #fff;

  box-shadow: 0 0 0 1px #3478ed;
}


/* ==========================
   KEYPAD
========================== */

.pin-keypad {
  width: 90%;

  max-width: 600px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 15px;
}


.pin-keypad button {
  height: 90px;

  border: none;

  border-radius: 20px;

  background: #f1f4f8;

  color: #3478ed;

  font-size: 32px;

  font-weight: 600;

  cursor: pointer;

  display: flex;

  align-items: center;
  justify-content: center;
}


.pin-keypad button:active {
  background: #e3e9f2;
}


/* DELETE BUTTON */

#delete-key {
  color: #3478ed;
}


/* EMPTY KEYPAD SPACE */

.pin-keypad .empty {
  visibility: hidden;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .pin-card {

    width: 90%;

    padding: 45px 20px 35px;

    border-radius: 32px;

  }


  .pin-close {

    top: 25px;

    right: 25px;

    font-size: 38px;

  }


  .pin-icon {

    width: 100px;

    height: 100px;

    margin-bottom: 25px;

    font-size: 40px;

  }


  .pin-card h2 {

    font-size: 30px;

  }


  .pin-card p {

    font-size: 19px;

    margin-bottom: 35px;

  }


  .pin-boxes {

    gap: 12px;

    margin-bottom: 35px;

  }


  .pin-box {

    width: 70px;

    height: 70px;

    border-radius: 17px;

    border-width: 3px;

    font-size: 32px;

  }


  .pin-keypad {

    width: 100%;

    gap: 10px;

  }


  .pin-keypad button {

    height: 75px;

    border-radius: 18px;

    font-size: 27px;

  }

}
/* =====================================================
   FINAL FIX — AIRTIME PIN STAR
===================================================== */

.pin-modal .pin-box {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  font-style: normal !important;
  text-decoration: none !important;
  text-shadow: none !important;
  color: #222 !important;
}

/* Remove any unwanted icon/pseudo-element */
.pin-modal .pin-box::before,
.pin-modal .pin-box::after {
  content: none !important;
  display: none !important;
}

/* Filled PIN box */
.pin-modal .pin-box.filled {
  background: #3478ed !important;
  border-color: #3478ed !important;
  color: #222 !important;
}

/* Active/empty PIN box */
.pin-modal .pin-box.active {
  background: #fff !important;
  border: 3px solid #3478ed !important;
  color: #222 !important;
}
/* FINAL PIN BOX DESIGN */
.pin-modal .pin-box,
.pin-modal .pin-box.filled,
.pin-modal .pin-box.active {
  background: #fff !important;
  color: #222 !important;
  border: 3px solid #ddd !important;
  box-shadow: none !important;
}

/* Only the currently selected/next box gets blue border */
.pin-modal .pin-box.active {
  border: 3px solid #3478ed !important;
}

/* Make sure nothing creates the strange background/icon */
.pin-modal .pin-box::before,
.pin-modal .pin-box::after {
  content: none !important;
  display: none !important;
}
/* =====================================================
   PHONE NUMBER + BENEFICIARY
===================================================== */

.phone-input-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.phone-input-wrapper input {
  width: 100%;
  box-sizing: border-box;
  padding: 18px 65px 18px 20px !important;
  border: 2px solid #ddd;
  border-radius: 18px;
  font-size: 18px;
  outline: none;
  background: #fff;
}

.phone-input-wrapper input:focus {
  border-color: #3478ed;
}

/* ==========================
   SETTINGS PAGE FULL SCREEN
========================== */

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
}

body {
  min-height: 100vh;
  background: #f4f7fb;
}

.login-container {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  margin: 0;
  padding: 25px 20px 40px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
}
.settings-container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
/* ==========================================
   FUND WALLET
========================================== */

.amount-input {
  display: flex;
  align-items: center;
  width: 100%;
  height: 64px;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 18px;
  overflow: hidden;
  margin-top: 8px;
  margin-bottom: 30px;
}

.currency-symbol {
  font-size: 25px;
  font-weight: 700;
  color: #222;
  padding-left: 20px;
  padding-right: 5px;
}

.amount-input input {
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 23px;
  padding: 0 15px 0 5px;
  color: #222;
}

.amount-input input::placeholder {
  color: #888;
}


/* ==========================================
   PAYMENT METHODS
========================================== */

.payment-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  
  width: 100%;
  min-height: 82px;
  
  padding: 16px 18px;
  
  margin-top: 14px;
  
  background: #fff;
  
  border: 2px solid #e1e4ea;
  
  border-radius: 16px;
  
  cursor: pointer;
  
  transition: 0.2s ease;
}

.payment-card.active {
  border-color: #2864d7;
  background: #f3f7ff;
}

.payment-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.payment-icon {
  font-size: 28px;
}

.payment-info strong {
  display: block;
  font-size: 17px;
  color: #222;
}

.payment-info p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #777;
}

.payment-check {
  width: 24px;
  height: 24px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  border-radius: 50%;
  
  background: #e0e0e0;
  color: transparent;
  
  font-size: 14px;
  font-weight: bold;
}

.payment-card.active .payment-check {
  background: #2864d7;
  color: #fff;
}
#menu {
  display: none;
  position: absolute;
  right: 15px;
  top: 70px;
  background: white;
  width: 210px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .15);
  z-index: 1000;
  overflow: hidden;
}

#menu a {
  display: block;
  padding: 14px;
  color: #062b78;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid #eee;
}

#menu a:last-child {
  border-bottom: 0;
}
#menu {
  display: none;
  position: absolute;
  top: 70px;
  right: 15px;
  width: 210px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .15);
  z-index: 999;
}

#menu a {
  display: block;
  padding: 14px;
  color: #062b78;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}