.icon-plant {
  height: 32px;
  vertical-align: middle;
}

/* Reset and Base Styles */
body {
  height: 100%;
  width: 100%;
  margin: 0;
  font-family: "Poppins";
  font-style: normal;
}

*,
::after,
::before {
  box-sizing: border-box;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* Input focus styles */
input:focus {
  outline: none !important;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 2px solid #00c451 !important;
}

[type="reset"],
[type="submit"],
button,
html [type="button"] {
  -webkit-appearance: button;
}

button {
  text-transform: none;
  overflow: visible;
}

/* Bootstrap-like Utility Classes */
/* Display */
.d-flex {
  display: flex !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-none {
  display: none;
}

/* Flex Direction */
.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

/* Justify Content */
.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

/* Align Items */
.align-items-center {
  align-items: center !important;
}

.align-items-start {
  align-items: flex-start !important;
}

/* Text Alignment */
.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-justify {
  text-align: justify !important;
}

/* Width */
.w-100 {
  width: 100% !important;
}

.w-50 {
  width: 50% !important;
}

.w-25 {
  width: 25% !important;
}

/* Max Width */
.mw-sm {
  max-width: 400px !important;
}

.mw-md {
  max-width: 600px !important;
}

.mw-lg {
  max-width: 800px !important;
}

/* Height */
.h-100 {
  height: 100px !important;
}

.h-50 {
  height: 50px !important;
}

.h-auto {
  height: auto !important;
}

/* Margins */
.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 10px !important;
}

.mt-2 {
  margin-top: 20px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 10px !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Padding */
.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 10px !important;
}

.p-2 {
  padding: 20px !important;
}

.p-3 {
  padding: 40px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 10px !important;
}

.pt-2 {
  padding-top: 20px !important;
}

/* Borders */
.border-0 {
  border: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #878787 !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 24px !important;
}

/* Colors */
.text-primary {
  color: #00522c !important;
}

.text-secondary {
  color: #878787 !important;
}

.text-white {
  color: #ffffff !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-primary {
  background-color: #00522c !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

/* Font Sizes */
.fs-xs {
  font-size: 11px !important;
}

.fs-sm {
  font-size: 12px !important;
}

.fs-md {
  font-size: 14px !important;
}

.fs-lg {
  font-size: 16px !important;
}

.fs-xl {
  font-size: 17px !important;
}

.fs-xxl {
  font-size: 18px !important;
}

.fs-3xl {
  font-size: 20px !important;
}

.fs-4xl {
  font-size: 24px !important;
}

.fs-5xl {
  font-size: 28px !important;
}

/* Font Weights */
.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

/* Line Heights */
.lh-sm {
  line-height: 1.16 !important;
}

.lh-md {
  line-height: 1.5 !important;
}

/* Shadows */
.shadow {
  box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.1) !important;
}

/* Gap */
.gap-1 {
  gap: 10px !important;
}

/* Position */
.position-fixed {
  position: fixed !important;
}

.top-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}

/* Component Classes */
.main-container {
  min-height: 100vh;
  width: 100%;
  /* padding: 15px; */
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-direction: column;
}


.header-container {
  width: 100%;
  align-self: self-start;
  text-align: center;
  display: flex;
}

.left-header {
  /* flex: 2; */
  width: 35%;
}

.right-header {
  flex: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.header-title {
  font-family: "Poppins";
  font-style: bold;
  font-weight: 600;
  font-size: 28px;
  color: #00522c;
  line-height: 1.1;
  margin: 0;
  padding: 0;
}

.header-subTitle {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #004d23;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}

.header-text-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}


.header-features-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 5px;
  margin-bottom: 5px;
}

.header-features-list li {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: #004d23;
  line-height: 1.2;
  margin: 0;
  padding: 2px 0;
  display: flex;
  align-items: center;
  /* justify-content: center; */
}

.header-features-list li::before {
  content: '\2713';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-color: #00522c;
  color: #ffffff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  margin-right: 8px;
  line-height: 1;
}

.content-wrapper {
  width: 100%;
  max-width: 600px;
  min-width: 360px;
  min-height: 95vh;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;

  background-size: cover;
  background-position: 56% center;
  background-repeat: no-repeat;
  background-attachment: local;

  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;

  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.08);

  position: relative;
  overflow: hidden;
}

.content-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 200px;

  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.8) 20%,
      rgba(0, 0, 0, 0.2) 80%,
      rgba(0, 0, 0, 0) 100%);

  pointer-events: none;
  z-index: 0;
}

.content-wrapper>* {
  position: relative;
  z-index: 1;
}

@media (min-width: 396px) and (max-width: 420px) {
  .left-header {
    flex: 1;
  }

  .right-header {
    flex: 2;
  }

  .content-wrapper {
    background-image: url('../images/background_low.webp');
  }
}

@media (max-width: 420px) {
  .left-header {
    flex: 2;
  }

  .right-header {
    flex: 5;
  }

  .content-wrapper {
    background-image: url('../images/background_low.webp');
  }
}


@media (min-width: 420px) and (max-width: 1199px) {
  .content-wrapper {
    background-image: url('../images/background.webp');
  }
}

@media (min-width: 1200px) {
  .content-wrapper {
    background-image: url('../images/background_high.webp');
  }
}

.content-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.subscribe-container {
  width: 80%;
  align-self: center;
  align-content: center;
  background: #ffffff;
  border: 8px solid #F6F0DC;
  box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  /* margin: 40px; */
  margin-top: 120px;
}

.features-grid-container {
  width: 80%;
  margin: 20px auto;
  border-radius: 24px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.1);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  padding: 5px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-family: "Poppins";
  font-weight: 600;
  font-size: 14px;
  color: #00522c;
  line-height: 1.1;
  margin: 0;
}

.feature-subtitle {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 12px;
  color: #004d23;
  line-height: 1.1;
  margin: 0;
}

.cloud-container {
  margin-top: auto;
  margin-bottom: 0;
  width: 80%;
}

.cloud-content {
  margin-bottom: 50px;
  text-align: center;
  border-radius: 24px;

  padding-top: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);

  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.1);
}

.cloud-cta {
  color: white;
}

/* Responsive adjustments for header text */
@media (max-width: 575.98px) {
  .header-title {
    font-size: 20px;
  }

  .header-subTitle {
    font-size: 12px;
  }

  .subscribe-container {
    padding: 20px;
    /* margin: 20px; */
    margin-top: 90px;
  }

  .header-features-list li {
    font-size: 12px;
  }
}


.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  cursor: pointer;
}

.btn-primary {
  color: #ffffff;
  background-color: #00522c;
  border-color: #00522c;
  height: 40px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.btn-outline-primary {
  color: #00522c;
  background-color: transparent;
  border: 2px solid #00522c;
  height: 40px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.loader {
  margin: auto;
  border: 16px solid #f3f3f3;
  border-top: 16px solid #00522c;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.snackbar {
  visibility: hidden;
  min-width: 250px;
  background-color: #f8d7da;
  color: #721c24;
  text-align: center;
  border-radius: 5px;
  border-color: #f5c6cb;
  padding: 16px;
  position: fixed;
  z-index: 10;
  left: auto;
  right: 30px;
  top: 30px;
}

.snackbar.show {
  visibility: visible;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }

  to {
    top: 30px;
    opacity: 1;
  }
}

@keyframes fadeout {
  from {
    top: 30px;
    opacity: 1;
  }

  to {
    top: 0;
    opacity: 0;
  }
}

/* Responsive Breakpoints */

/* Small devices (sm) - 576px and up */
@media (min-width: 576px) {
  .w-sm-100 {
    width: 100% !important;
  }

  .w-sm-50 {
    width: 50% !important;
  }

  .w-sm-25 {
    width: 25% !important;
  }

  .subscribe-container {
    padding: 30px;
  }

  .fs-sm-xs {
    font-size: 11px !important;
  }

  .fs-sm-sm {
    font-size: 12px !important;
  }

  .fs-sm-md {
    font-size: 14px !important;
  }

  .fs-sm-lg {
    font-size: 16px !important;
  }

  .fs-sm-xl {
    font-size: 17px !important;
  }

  .fs-sm-xxl {
    font-size: 18px !important;
  }

  .fs-sm-3xl {
    font-size: 20px !important;
  }

  .fs-sm-4xl {
    font-size: 24px !important;
  }

  .fs-sm-5xl {
    font-size: 28px !important;
  }

  .p-sm-1 {
    padding: 10px !important;
  }

  .p-sm-2 {
    padding: 20px !important;
  }

  .p-sm-3 {
    padding: 40px !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-none {
    display: none !important;
  }
}

/* Medium devices (md) - 768px and up */
@media (min-width: 768px) {
  .w-md-100 {
    width: 100% !important;
  }

  .w-md-50 {
    width: 50% !important;
  }

  .w-md-25 {
    width: 25% !important;
  }

  .main-container {
    /* padding: 40px; */
  }

  .content-wrapper {
    max-width: 600px;
  }

  .fs-md-xs {
    font-size: 11px !important;
  }

  .fs-md-sm {
    font-size: 12px !important;
  }

  .fs-md-md {
    font-size: 14px !important;
  }

  .fs-md-lg {
    font-size: 16px !important;
  }

  .fs-md-xl {
    font-size: 17px !important;
  }

  .fs-md-xxl {
    font-size: 18px !important;
  }

  .fs-md-3xl {
    font-size: 20px !important;
  }

  .fs-md-4xl {
    font-size: 24px !important;
  }

  .fs-md-5xl {
    font-size: 28px !important;
  }

  .p-md-1 {
    padding: 10px !important;
  }

  .p-md-2 {
    padding: 20px !important;
  }

  .p-md-3 {
    padding: 40px !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-none {
    display: none !important;
  }
}

/* Legacy component styles for backward compatibility */
.MainContainer {
  @extend .main-container;
}

.LandingPageContainer {
  @extend .landing-container;
}

.subscribeUserContainer {
  @extend .subscribe-container;
}

.heading-one-text {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  color: #00522c;
  margin: 10px 0px;
}

.subscribe-one-text {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 116%;
  color: #00522c;
}

.subscribe-input-text {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 116%;
  color: #878787;
}

.subscribe-input {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.01em;
  color: #878787;
  border-bottom: 1px solid #878787;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  width: 60%;
}

.subscribe-otp-text {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 116%;
  margin-bottom: 0;
  margin-top: 20px;
  color: #878787;
}

.subscribe-otp-div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  width: 55%;
  margin-top: 15px;
}

.subscribe-otp-input {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  border-bottom: 1px solid #878787;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  color: #1e1e1e;
  width: 20%;
  background-color: transparent;
}

.final-text {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 116%;
  letter-spacing: 0.01em;
  width: 40%;
  text-align: center;
  color: #878787;
  margin-top: 20px;
}

.transaction-amt-text {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  text-align: justify;
  color: #00522c;
}

.logo-img {
  height: 100px;
  width: auto;
  margin: auto;
  display: block;
}

.jazzcash-logo {
  height: 100px;
  width: auto;
  margin: auto;
  margin-top: 20px;
  display: block;
}

.app-logo-container {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
}

.app-download-img {
  width: 50%;
  height: auto;
}

.btn-responsive {
  height: 50px;
  width: 106.39351654052734px;
  border-radius: 6px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 15px;
  text-align: center;
  background: #00522c;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.otp-div {
  width: 241.4120178222656px;
  margin-left: 0px;
  margin-top: 30px;
}

.info {
  color: #51d303;
  font-weight: bold;
  cursor: pointer;
}

.disabled-resend-otp {
  pointer-events: none;
  color: gray !important;
}

.site-footer {
  position: relative;
  top: 5px;

  padding: 16px 0 8px;
  text-align: center;
  font-size: 13px;
  font-family: "Poppins";
  background-color: #ffffff;
  width: 101%;

  /* Smooth rounded border - bottom only */
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;

  /* Backdrop shadow - bottom only */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.08);
}

.site-footer a {
  color: #00522c;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-footer a:hover {
  background-color: rgba(0, 82, 44, 0.08);
  text-decoration: underline;
}

.site-footer span {
  margin: 0 4px;
  color: #c0c0c0;
  font-weight: 300;
}

.price-and-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #e3eee6;
}

.jazzcash-badge {
  height: 32px;
  width: auto;
  flex-shrink: 0;
}

.price-divider {
  width: 1px;
  align-self: stretch;
  background: #e3eee6;
}

.price-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.gift-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.gift-icon svg {
  width: 100%;
  height: 100%;
}

.price-text {
  display: flex;
  flex-direction: column;
}

.price-main {
  font-family: "Poppins";
  font-size: 14px;
  font-weight: 700;
  color: #00522c;
  line-height: 1.15;
  margin: 0;
}

.price-sub {
  font-family: "Poppins";
  font-size: 11px;
  font-weight: 400;
  color: #6c8a73;
  line-height: 1.15;
  margin: 2px 0 0 0;
}

.jazzcash-landing-logo {
  width: 100px;
  /* Adjust as needed */
  margin-bottom: 10px;
  /* Space between logo and button */
}

/* Mobile responsive adjustments */
@media screen and (max-width: 480px) {
  .main-container {
    /* padding: 15px; */
  }

  .subscribe-container {
    padding: 10px;
  }

  .cloud-container {
    margin: 30px;
    margin-bottom: 0;
    width: 90%;
  }
  .features-grid-container {
    width: 90%;
    margin: 20px;
  }
}

#subscription-form-container {
  width: 100%;
}

.input-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 4px;
}

.input-prefix {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #dff3e3;
  border: 1px solid #b7dfc0;
  border-radius: 10px;
  padding: 8px;
}

.input-prefix svg {
  width: 100%;
  height: 100%;
}

.input-wrapper #mobile-number-input {
  flex: 1;
  border: 0;
  border-bottom: 1.5px solid #d6d6d6 !important;
  background: transparent;
  font-family: "Poppins";
  font-size: 22px;
  font-weight: 500;
  color: #2c2c2c;
  padding: 8px 0;
  outline: none;
  letter-spacing: 1px;
  width: 100%;
  border-radius: 0;
}

.input-wrapper #mobile-number-input::placeholder {
  color: #2c2c2c;
  font-weight: 500;
  letter-spacing: 1px;
}

.input-wrapper #mobile-number-input:focus {
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 2px solid #00c451 !important;
}

.subscribe-pill {
  position: relative;
  width: 100%;
  height: 56px;
  margin-top: 16px;
  background-color: #0a5e34;
  color: #ffffff;
  /* border: 4px solid #024a26; */
  border-radius: 999px;
  font-family: "Poppins";
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 60px 0 24px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 82, 44, 0.25);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.subscribe-pill:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 82, 44, 0.35);
}

.subscribe-pill:active:not(:disabled) {
  transform: translateY(0);
}

.subscribe-pill-text {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.subscribe-pill-arrow {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFC72C;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  z-index: 2;
}

.subscribe-pill-arrow svg {
  width: 22px;
  height: 22px;
  display: block;
}

.subscribe-pill:hover .subscribe-pill-arrow {
  transform: translateY(-50%) scale(1.06);
}