/* External fonts and icon libraries are loaded from the HTML <head>.
   Keeping @import statements here can be blocked by CSP and slow down rendering. */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
b,
small,
strong,
.nav-link,
body,
button,
input,
optgroup,
select,
textarea {
  font-family: "Poppins", sans-serif;
}

body {
  overflow-x: hidden !important;
}

a,
i,
.btn,
div {
  text-decoration: none !important;
  transition: all 0.3s ease-in-out !important;
}

textarea {
  outline: 2px solid transparent !important;
  box-shadow: none !important;
}

input,
.navbar-toggler,
button,
input {
  outline: 2px solid transparent !important;
  box-shadow: none !important;
}

body {
  scroll-behavior: smooth;
}

html {
  --scrollbarBG: #cfd8dc;
  --thumbBG: #90a4ae;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: white;
}

::-webkit-scrollbar-thumb {
  background: #ff6b6b;
}

.animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.lg-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.top-nav {
  background-color: #000;
}
.top-nav .top-nav-row {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.top-nav .top-nav-row .top-nav-left {
  min-height: 60px;
  position: absolute;
  left: -15px;
  z-index: 10;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 5px;
}
.top-nav .top-nav-row {
  /* Desktop logo size */
}
.top-nav .top-nav-row .navbar-brand img {
  height: 40px;
}
.top-nav .top-nav-row .top-nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin-left: 20%;
  min-height: 60px;
}
.top-nav .top-nav-row .top-nav-right {
  min-height: 60px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 15px;
  margin-left: auto;
}
.top-nav .top-nav-row .nav-link {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
}
.top-nav .top-nav-row .nav-link i {
  font-size: 20px;
}
.top-nav .top-nav-row .nav-link:hover {
  color: #d4ff89;
}

.header {
  min-height: 120px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
}
.header .navbar .nav-link {
  padding: 10px 15px;
  color: #000;
  border-top: 3px solid #f5f5f5;
  border-bottom: 3px solid #f5f5f5;
}
.header .navbar .nav-link:hover {
  border-bottom: 3px solid #61ce70;
}
.header .navbar-brand img {
  height: 40px; /* Desktop logo size */
}

.hero-section {
  background: #d4ff89;
  width: 100%;
  padding: 40px 0px;
}
.hero-section .banner {
  width: 100%;
}
.hero-section .banner img {
  width: 100%;
}

.video-section {
  padding: 100px 0px;
  background-image: url(../images/video-bg.png);
  background-position: center;
  background-size: cover;
}
.video-section .video-body {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.video-section .video-body .video-container {
  position: relative;
  display: inline-block;
  border-radius: 10px;
  overflow: hidden; /* ensures rounded corners apply to video */
  margin-bottom: 80px;
}
.video-section .video-body .video-container video {
  display: block;
  width: 800px; /* adjust as needed */
  height: auto;
  border-radius: 10px;
}
.video-section .video-body .video-container .mute-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.video-section .video-body .video-container .mute-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}
.video-section .video-body h2 {
  max-width: 500px;
  text-align: center;
  margin-bottom: 30px;
}

.btn-primary {
  background: #ff6b6b !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border: none !important;
  border-radius: 5px !important;
  cursor: pointer !important;
}
.btn-primary:hover {
  background: rgb(255, 81.5, 81.5) !important;
}

.btn-dark {
  width: fit-content;
  color: #d4ff89;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 16px;
}

.btn-dark:hover {
  background: #d4ff89 !important;
  color: #000 !important;
}

.how-it-works {
  background: #333333;
  padding: 100px 0px;
}
.how-it-works .works-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.how-it-works .works-card .right {
  position: absolute;
  right: -50px;
  top: 50px;
}
.how-it-works .works-card h1 {
  font-size: 70px;
  font-weight: 500;
  color: #ffffff;
}
.how-it-works .works-card h4 {
  font-size: 18px;
  text-align: center;
  color: #d4ff89;
}
.how-it-works .works-card p {
  font-size: 12px;
  color: #fff;
  text-align: center;
  max-width: 250px;
}

.center-heading {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  flex-direction: column;
}
.center-heading h3 {
  text-align: center;
  font-weight: 600;
  color: #d4ff89;
  margin-bottom: 15px;
}
.center-heading p {
  text-align: center;
  margin-bottom: 15px;
}

.advertise-section {
  width: 100%;
  padding: 100px 0px;
  background-image: url(../images/advertise.png);
  background-position: center;
  background-size: cover;
}
.advertise-section .banner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.advertise-section .content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.countdowns {
  background: #333333;
  padding: 100px 0px;
}
.countdowns .countdown-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.countdowns .countdown-card h1 {
  font-size: 60px;
  font-weight: 500;
  color: #ffffff;
}
.countdowns .countdown-card h4 {
  font-size: 18px;
  text-align: center;
  color: #d4ff89;
}
.countdowns .countdown-card p {
  font-size: 12px;
  color: #fff;
  text-align: center;
  max-width: 250px;
}

.our-location {
  padding: 100px 0px;
}
.our-location .map-wrap {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden; /* makes the iframe corners rounded */
}
.our-location .map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.company-logos {
  padding: 100px 0px;
}
.company-logos .item {
  height: 100px;
}
.company-logos .item img {
  width: auto !important;
  height: 100%;
}

.device-location {
  padding: 100px 0px;
}
.device-location .location-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.device-location .location-card h1 {
  font-size: 60px;
  font-weight: 500;
  color: #ffffff;
}
.device-location .location-card h4 {
  font-size: 18px;
  text-align: center;
  color: #d4ff89;
}
.device-location .location-card p {
  font-size: 12px;
  color: #fff;
  text-align: center;
  max-width: 250px;
}

.log-in-options {
  margin-bottom: 40px;
}
.log-in-options .btn {
  width: 100%;
  height: 50px;
  background: #f5f5f5;
  border: none;
  border-radius: 5px;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.log-in-options .btn-google {
  background: #db4437;
  color: #fff;
}
.log-in-options .btn-google:hover {
  background: rgb(210.593220339, 51.5953389831, 37.906779661);
}
.log-in-options .btn-facebook {
  background: #4267b2;
  color: #fff;
}
.log-in-options .btn-facebook:hover {
  background: rgb(59.1024590164, 92.2356557377, 159.3975409836);
}
.log-in-options .btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.log-in-options .btn-whatsapp:hover {
  background: rgb(33.1955645161, 189.3044354839, 91.5120967742);
}

.page-outer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
}
.page-outer .main-card {
  background: #fff;
  border-radius: 18px;
  padding: 80px 40px;
  width: 100%;
  margin: auto;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.12), 0 1.5px 8px rgba(44, 62, 80, 0.08);
  transition: box-shadow 0.2s;
}
.page-outer .main-card:hover {
  box-shadow: 0 12px 40px rgba(44, 62, 80, 0.18), 0 2px 12px rgba(44, 62, 80, 0.1);
}
.page-outer .main-card .heading {
  text-align: center;
  margin-bottom: 32px;
}
.page-outer .main-card .heading h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ff6b6b;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}
.page-outer .main-card .heading p {
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 0;
}
.page-outer .main-card .form-group {
  margin-bottom: 22px;
}
.page-outer .main-card .form-group label {
  font-size: 15px;
  color: #222;
  margin-bottom: 7px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.page-outer .main-card .form-group .form-select {
  border: 1.5px solid #e0e0e0;
  border-radius: 7px;
  padding: 12px;
  font-size: 15px;
  color: #333;
  background: #f9f9f9;
  transition: border-color 0.2s;
}
.page-outer .main-card .form-group .form-select:focus {
  border-color: #d4ff89;
  background: #fff;
}
.page-outer .main-card .form-group .terms {
  font-size: 13px;
  color: #666;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.page-outer .main-card .form-group .terms a {
  color: #ff6b6b;
  text-decoration: underline;
}
.page-outer .main-card .form-group .terms a:hover {
  color: #ff3838;
}
.page-outer .main-card .form-group .terms input[type=checkbox] {
  accent-color: #ff6b6b;
  margin-top: 2px;
}
.page-outer .main-card .form-group small {
  font-size: 12px;
  color: #888;
}
.page-outer .main-card .form-group small i {
  margin-right: 3px;
}
.page-outer .main-card .form-group .form-control {
  border: 1.5px solid #e0e0e0;
  border-radius: 7px;
  padding: 12px;
  font-size: 15px;
  color: #333;
  background: #f9f9f9;
  transition: border-color 0.2s;
}
.page-outer .main-card .form-group .form-control:focus {
  border-color: #d4ff89;
  background: #fff;
}
.page-outer .main-card .form-group .btn-primary {
  width: 100%;
  height: 48px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 7px;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.08);
  letter-spacing: 0.5px;
}
.page-outer .otp-input {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-right: 8px;
  text-align: center;
  border: 1.5px solid #e0e0e0;
  border-radius: 7px;
  width: 44px;
  height: 48px;
  background: #f9f9f9;
  transition: border-color 0.2s;
}
.page-outer .otp-input:focus {
  border-color: #d4ff89;
  background: #fff;
}
.page-outer .otp-input::placeholder {
  color: #bbb;
  opacity: 1;
}
.page-outer .profile-card .profile-section {
  margin-bottom: 18px;
}
.page-outer .profile-card .profile-section .profile-value {
  font-size: 15px;
  color: #444;
  background: #f7f7f7;
  border-radius: 6px;
  padding: 8px 14px;
  margin-top: 2px;
  font-weight: 500;
}
.page-outer .profile-card .profile-section label {
  font-size: 13px;
  color: #888;
  font-weight: 600;
  margin-bottom: 2px;
  display: block;
}
.page-outer .profile-card .profile-section .badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 2px;
}
.page-outer .profile-card .profile-section .badge-success {
  background: #d4ff89;
  color: #222;
}
.page-outer .profile-card .profile-section .badge-warning {
  background: #fff3cd;
  color: #856404;
}
.page-outer .profile-card .profile-section .badge-danger {
  background: #ff6b6b;
  color: #fff;
}
.page-outer .profile-card .profile-section .stat-value {
  font-size: 22px;
  font-weight: 700;
  color: #ff6b6b;
  margin-bottom: 2px;
}
.page-outer .profile-card .profile-section .stat-label {
  font-size: 12px;
  color: #888;
}
.page-outer .profile-card .heading.mt-4 {
  margin-top: 28px;
}

.powerbank-card {
  max-width: 700px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.12), 0 1.5px 8px rgba(44, 62, 80, 0.08);
  margin: 0 auto;
  padding: 0;
}

.powerbank-card .heading {
  text-align: center;
  margin-bottom: 1.5rem;
}

.powerbank-card .heading h2 {
  font-weight: 700;
  color: #1e88e5;
}

.powerbank-card .welcome-icon {
  font-size: 56px;
  color: #43d477;
  background: #eafff2;
  border-radius: 50%;
  padding: 18px 20px;
}

.powerbank-card .welcome-msg {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-top: 1.2rem;
  margin-bottom: 0.7rem;
}

.powerbank-card .welcome-msg span {
  color: #1e88e5;
}

.powerbank-card .issuing-badge {
  background: #e3f2fd;
  color: #1976d2;
  font-size: 15px;
  padding: 8px 18px;
  border-radius: 8px;
  margin-bottom: 0.7rem;
  display: inline-block;
}

.powerbank-card .processing-msg {
  font-size: 15px;
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.powerbank-card .progress-card {
  background: #f1f8e9;
  border-radius: 14px;
  padding: 1.2rem 1rem;
  margin-bottom: 1.2rem;
}

.powerbank-card .progress {
  height: 12px;
  border-radius: 8px;
  margin-bottom: 0.7rem;
}

.powerbank-card .progress-bar {
  background: linear-gradient(90deg, #43d477 0%, #1e88e5 100%);
  border-radius: 8px;
}

.powerbank-card .pending-msg {
  font-size: 15px;
  color: #388e3c;
}

.powerbank-card .time-card {
  background: #e3f2fd;
  border-radius: 14px;
  width: 100%;
  display: inline-block;
  padding: 1.1rem 1.5rem;
  margin-bottom: 1.2rem;
}

.powerbank-card .time-label {
  font-size: 13px;
  color: #888;
}

.powerbank-card .time-value {
  font-size: 36px;
  font-weight: 700;
  color: #1976d2;
  line-height: 1;
}

.powerbank-card .time-unit {
  font-size: 16px;
  font-weight: 500;
  color: #888;
}

.powerbank-card .cancel-btn {
  font-size: 16px;
  border-radius: 8px;
  padding: 0.6rem 2rem;
  margin-top: 0.5rem;
}

.shadow-sm {
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.12), 0 1.5px 8px rgba(44, 62, 80, 0.08) !important;
  transition: box-shadow 0.2s;
}
.shadow-sm:hover {
  box-shadow: 0 12px 40px rgba(44, 62, 80, 0.18), 0 2px 12px rgba(44, 62, 80, 0.1);
}

.check-icon {
  background: #10b981;
  color: #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 2.5rem;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.15);
}

/*# sourceMappingURL=style.css.map */
