:root {
  --text-placeholder: #b3b3b3;
  --white: #ffffff;
  --light-gray-1: #f6f6f6;
  --light-gray-2: #f1f1f1;
  --font-primary: "Satoshi", "Inter", sans-serif;
  --color-primary: #f4633a;
  --color-text-dark: #111111;
  --color-text-body: #2d2d2d;
  --color-text-light: #828282;
  --color-white: #ffffff;
  --color-background-light: #f1f1f1;
  --color-border: #d9d9d9;
  --font-main: "Satoshi";
  --font-secondary: "Inter", sans-serif;
  --primary-color: #f4633a;
  --text-dark: #111111;
  --text-medium: #2d2d2d;
  --text-light: #4b4b4b;
  --text-gray: #646464;
  --bg-light: #ffffff;
  --bg-gray: #f1f1f1;
  --border-color: #eaeaea;

  --background-light: #ffffff;
  --background-grey: #f9fafb;
  --background-dark-grey: #f6f6f6;
   --text-light-checkout: #828282;

  --text-light: #646464;
  --text-white: #ffffff;
  --bg-white: #ffffff;
  --border-light: #7f7f7f;
  --font-family: "Inter", "Satoshi", sans-serif;

  --color-text-primary: #111111;
  --color-text-secondary: #545454;

  --color-text-footer: #1a1a1a;
  --color-background-medium: #f1f1f1;
  --color-accent: #f4633a;
  /* singup signin */
  --primary-color: #f4633a;
  --text-dark: #0c1421;
  --text-light: #ffffff;
  --text-secondary: #8897ad;
  --text-tertiary: #294957;
  --bg-light: #ffffff;
  --bg-input: #fdfdfd;
  --border-light: #e5e5e5;
  --border-medium: #cfdfe2;
  --border-dark: #000000;
  --color-primary: #f4633a;
  --color-primary-dark: #8e3a22;
  --color-white: #ffffff;
  --color-text-dark: #0c1421;
  --color-text-light: #8897ad;
  --color-text-medium: #294957;
  --color-text-black: #111111;
  --color-link: #1877f2;
  --color-border-light: #e5e5e5;
  --color-border-medium: #cfdfe2;
  --color-border-dark: #000000;
  --bg-light: #fdfdfd;
  --font-primary: "Satoshi", "Roboto", sans-serif;
  --text-body: #0c1421;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text-dark);
  background-color: var(--color-white);
}
.highlight {
  color: var(--color-accent);
}
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 1;
}

.page-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background-color: var(--color-white);
}
a {
  text-decoration: none;
  color: inherit;
}
#admin-container {
  width: 100%;
  max-width: 1145px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
#admin-avatar {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 25px;
  border-radius: 50px;
  font-size: 16px;
  line-height: 24px;
  height: 38px;
  font-weight: 400;
  min-width: 107px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 1px solid var(--color-primary);
}
.btn-outline {
  background-color: var(--color-white);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  min-width: 112px;
}
.btn-primary:hover {
  background-color: #d95733;
}

.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn-secondary:hover {
  background-color: #fff5f2;
}

.text-orange {
  color: var(--color-primary);
}

.content-wrapper {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.text-primary {
  color: var(--primary-color);
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.font-light {
  font-weight: 300;
}

/* === Animated Background Boxes === */

.square-box {
  position: absolute;
  background: rgba(244, 99, 58, 0.1);
  border: 1px solid rgba(244, 99, 58, 0.2);
  border-radius: 8px;
  animation: bulge 4s ease-in-out infinite;
}
.square-box:nth-child(odd) {
  background: rgba(244, 99, 58, 0.15);
  animation-delay: 2s;
}
.square-box:nth-child(1) {
  top: 10%;
  left: 5%;
  width: 60px;
  height: 60px;
}
.square-box:nth-child(2) {
  top: 20%;
  right: 10%;
  width: 40px;
  height: 40px;
}
.square-box:nth-child(3) {
  bottom: 30%;
  left: 15%;
  width: 80px;
  height: 80px;
}
.square-box:nth-child(4) {
  bottom: 15%;
  right: 20%;
  width: 50px;
  height: 50px;
}
.square-box:nth-child(5) {
  top: 50%;
  left: 8%;
  width: 35px;
  height: 35px;
}
.square-box:nth-child(6) {
  top: 70%;
  right: 15%;
  width: 70px;
  height: 70px;
}
@keyframes bulge {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2) rotate(5deg);
    opacity: 1;
  }
}

/* === Motion & Bounce Animations === */
@keyframes mouseMovement {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(100px, -20px);
  }
  50% {
    transform: translate(150px, 0);
  }
  75% {
    transform: translate(100px, 20px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.mouse-move {
  animation: mouseMovement 6s ease-in-out infinite;
}

/* === Card Hover Effects === */

.feature-card:hover,
.feature-overview:hover {
  transform: scale(1.05);
  border-color: #f4633a !important;
  box-shadow: 0 10px 25px rgba(244, 99, 58, 0.2);
}
.feature-overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
/* === Scrollbars === */
.scrollbar-hide,
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollable-content::-webkit-scrollbar,
.scrollbar-hide::-webkit-scrollbar,
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.scrollable-content {
  max-height: 480px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* === Testimonials === */
.testimonial-card {
  border: 1px solid transparent;
  transition: all 0.3s ease;
  transform: scale(1);
}
/* === FAQ Section === */
.faq-item {
  transition: all 0.3s ease;
}
/* .faq-item {
    background-color: var(--bg-light);
    border: 0.5px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 20px;
    cursor: pointer;
  } */

.faq-item:hover {
  border-color: #f4633a !important;
}
.faq-expanded {
  background: #f9f9f9;
  border-color: #f4633a !important;
}
.faq-toggle {
  transition: transform 0.3s ease;
  cursor: pointer;
}
.faq-toggle.expanded {
  transform: rotate(45deg);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-content.expanded {
  max-height: 200px;
}

/* === Miscellaneous === */
.active-tab {
  color: #f4633a !important;
  font-weight: bold;
  position: relative;
}
.zoom-bounce {
  animation: zoomBounce 0.5s ease;
}
@keyframes zoomBounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.hover-red {
  transition: all 0.3s ease;
}
.hover-red:hover {
  background-color: #f4633a !important;
  color: white !important;
}

.mobile-bottom-nav {
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  padding-bottom: calc(12px + var(--safe-bottom));
}

/* ====== Cards, Features, and Hover Effects ====== */
.feature-card,
.feature-overview-card {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.step-card:hover .small-flag-bounce {
  animation: smallBounce 0.6s ease-in-out;
}

/* ====== Testimonials ====== */

.avatar-selector.active,
.avatar-selector:hover {
  opacity: 1;
  transform: scale(1.2);
  border: 3px solid #f4633a;
}
.avatar-selector {
  opacity: 0.6;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* chck */

/* CSS for section section:header */

.site-header {
  background-color: var(--color-white);
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.08);
  height: 70px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}
.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.header-bg-pattern {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1440px;
  height: 100%;
}
.header-bg-pattern img {
  position: absolute;
  opacity: 0.6;
}
.pattern-1 {
  left: 0;
  top: 0;
}
.pattern-2 {
  right: 0;
  top: 0;
  transform: rotate(180deg);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 96px; /* Derived from y: 6013 to 6083 is 70, plus padding */
  padding: 13px 0;
}
.logo-images {
  position: relative;
  width: 112px;
  height: 37px;
}
.logo-images img {
  position: absolute;
}
.logo-images img:nth-child(1) {
  top: 0;
  left: 0;
}
.logo-images img:nth-child(2) {
  top: 6px;
  left: 34.5px;
}
.logo-images img:nth-child(3) {
  top: 27.5px;
  left: 34.4px;
}

.main-nav ul {
  display: flex;
  gap: 25px;
}
.main-nav a {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-dark);
}
.main-nav a.active {
  color: var(--primary-color);
  font-weight: 700;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}
.lang-selector {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  cursor: pointer;
}
.auth-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-section {
  text-align: center;
  margin-bottom: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-content h1 {
  font-size: 64px;
  line-height: 1.2;
}
.breadcrumb {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
}

/* CSS for section section:plans */
.plans-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.plans-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
}

.plans-subtitle {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
}
.plans-subtitle .icon-wrapper {
  background-color: var(--primary-color);
  border-radius: 1px;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plans-title h2 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 35px;
  text-transform: capitalize;
}
.plans-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: flex-start;
}
.plans-image {
  background-color: #d4d4d4;
  border-radius: 20px;
  overflow: hidden;
}
.plans-selector {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.plans-selector h3 {
  font-size: 20px;
  font-weight: 700;
}
.plans-selector p {
  font-size: 14px;
  line-height: 1.35;
  color: var(--text-dark);
}
.plan-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.plan-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.plan-option:hover {
  border-color: #f4633a;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-family-main);
}
input {
  font-family: inherit;
}
.plan-option.selected {
  border-color: #f4633a;
  background-color: #fff8f5;
}
.radio-button {
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.btn .btn-outline:hover {
  border-color: #f4633a;
  color: #f4633a;
}

.radio-button-selected {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.radio-button-selected div {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.plan-option.selected .radio-button {
  border-color: #f4633a;
  background-color: #f4633a;
}

.plan-option.selected .radio-button::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}
.plan-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.plan-data {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
}
.plan-duration {
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  color: var(--color-text-light);
  margin: 0;
}

.plan-price {
  font-size: 26px;
  font-weight: 700;
  line-height: 35px;
  margin: 0;
}

.plans-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.plan-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.plan-actions .btn {
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 20px;
}
.plan-actions .btn-primary {
  font-weight: 700;
}
.plan-actions .btn-outline {
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
  font-weight: 400;
  border-radius: 50px;
  padding: 15px 25px;
  text-align: center;
}
.features-tabs {
  margin-top: 50px;
}
.tabs-nav {
  display: flex;
  justify-content: start;
  gap: 24px;

  position: relative;
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-link {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: #101010;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.tab-link.active {
  color: var(--primary-color);
  font-weight: 700;
}
.tab-indicator-wrapper {
  position: relative;
  height: 2px;
  width: 100%;
}
.tab-indicator-bg {
  position: absolute;
  width: 425px;
  height: 1px;
  background-color: #d9d9d9;
}
.tab-indicator {
  position: absolute;
  top: 0;
  height: 2px;
  width: 100px;
  background-color: #f4633a;
  box-shadow: 0 2px 5px #f4633a99;
  transition: left 0.3s ease, width 0.3s ease;
}
.tab-content {
  padding: 20px 0;
}
.tab-content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tab-content li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  /* color: var(--text-light); */
}
.bullet {
  width: 12px;
  height: 12px;
  background-color: #4b4b4b;
  border-radius: 3px;
  flex-shrink: 0;
}

    .how-container {
        max-width: 1138px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .how-it-works-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 50px;
        text-align: center;
    }

    .tag {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .tag-icon-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 14px;
        height: 16px;
        background-color: var(--color-primary);
        border: 0.7px solid var(--color-primary);
        border-radius: 1px;
    }

    .tag-icon {
        width: 8.5px;
        height: 11px;
    }

    .tag-text {
        font-family: var(--font-family-main);
        font-weight: 500;
        font-size: 12px;
        line-height: 1.35;
        color: #000000;
        margin: 0;
    }

    .section-title {
        font-family: var(--font-family-main);
        font-weight: 400;
        font-size: 35px;
        line-height: 1.23;
        color: var(--color-text-dark);
        margin: 0;
    }

    .section-title .highlight {
        font-weight: 700;
        color: var(--color-primary);
    }

  

    .step-card {
        position: relative;
        display: flex;
        flex-direction: column;
        background: linear-gradient(180deg, var(--color-background-medium) 0%, var(--color-background-light) 100%);
        border: 1px solid var(--color-border);
        border-radius: 5px;
        overflow: hidden;
        min-height: 450px;
    }

    .step-card-visual {
        flex-grow: 1;
        position: relative;
        min-height: 300px;
    }

 

    .visual-elements-container {
        position: absolute;
        z-index: 1;
    }

    .plan-tag {
        position: absolute;
        display: flex;
        align-items: center;
        gap: 5px;
        background-color: #fdfdfd;
        padding: 6px;
        border-radius: 4px;
        box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
        font-size: 13px;
        font-weight: 700;
        color: #000000;
    }
    
    .plan-tag .flag-icon {
        width: 15px;
        height: 15px;
    }

    .merged-image-container {
        position: relative;
    }

    .payment-plan-sm, .payment-plan-lg {
        position: absolute;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: var(--color-background-light);
        border: 1px solid #bcbcbc;
        padding: 4px 8px;
        font-weight: 300;
        color: var(--color-text-light);
    }
    .payment-plan-sm {
        border-radius: 1.3px;
        font-size: 6px;
        height: 15px;
    }
    .payment-plan-lg {
        border-radius: 3px;
        font-size: 14px;
        height: 35px;
    }
    .payment-plan-sm button, .payment-plan-lg button {
        border: none;
        background-color: var(--color-text-light);
        color: #f9fafb;
        font-weight: 500;
        cursor: pointer;
    }
    .payment-plan-sm button {
        border-radius: 1.3px;
        font-size: 3px;
        padding: 2px 4px;
    }
    .payment-plan-lg button {
        border-radius: 3px;
        font-size: 7px;
        padding: 4px 8px;
    }

    .floating-icon {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .floating-icon img {
        max-width: 100%;
        max-height: 100%;
    }

    .step-card-content {
        padding: 25px;
        background-color: var(--color-background-light);
        z-index: 2;
    }

    .step-card-content h3 {
        font-size: 26px;
        font-weight: 500;
        margin: 0 0 10px 0;
        color: var(--color-text-dark);
    }

    .step-card-content p {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.57;
        color: var(--color-text-medium);
        margin: 0;
    }

/* CSS for section section:how-it-works */
.how-it-works-section {
        background-color: var(--color-background-light);
        padding: 80px 0;
    }
.how-it-works-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 80px;
}
.how-it-works-subtitle {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
}
.how-it-works-subtitle .icon-wrapper {
  background-color: var(--primary-color);
  border-radius: 1px;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-it-works-title h2 {
  font-size: 35px;
  text-align: center;
  line-height: 1.2;
}
  .steps-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

   .step-number {
        position: absolute;
        top: 15px;
        left: 20px;
        font-size: 194px;
        font-weight: 400;
        color: rgba(0, 0, 0, 0.07);
        line-height: 1;
        z-index: 0;
    }
.step-content h3 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 4px;
}
.step-content p {
  font-size: 14px;
  line-height: 22px;
  color: #454545;
}
.step-1-bg,
.step-2-bg,
.step-3-bg,
.step-4-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
/* Step 1 Specifics */
.step-1-bg .premium-plan-card {
  position: absolute;
  top: 110px;
  left: 15px;
  width: 280px;
  height: 120px;
  background: #fff;
  border: 1px solid rgba(175, 67, 0, 0.3);
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(19, 81, 216, 0.2);
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 3;
}
.premium-plan-card h4 {
  font-size: 19px;
  font-weight: 500;
}
.premium-plan-card .price {
  font-size: 20px;
  font-weight: 700;
}
.premium-plan-card .subscribe-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 3px 23px;
  border-radius: 4px;
  font-size: 10.6px;
}
.step-1-arrow {
  position: absolute;
  top: 199px;
  left: 249px;
  z-index: 4;
}
.country-tags {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 250px;
  z-index: 2;
}
.country-tags .tag {
  position: absolute;
  background: #fdfdfd;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  padding: 6px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0.6;
}
.tag-uk {
  top: 10px;
  left: 26px;
}
.tag-thailand {
  top: 6px;
  left: 232px;
}
.tag-switzerland {
  top: 55px;
  left: 127px;
  opacity: 0.3;
}
.tag-japan {
  top: 67px;
  left: 304px;
  opacity: 0.3;
  transform: rotate(23.5deg);
}
.tag-france {
  top: 175px;
  left: 1px;
  opacity: 0.3;
  transform: rotate(-18deg);
}
.tag-uae {
  top: 240px;
  left: 134px;
}
.tag-canada {
  top: 222px;
  left: 280px;
}

/* Step 2 Specifics */
.step-2-bg .shield-bg {
  position: absolute;
  top: 51px;
  left: 185px;
  width: 230px;
  height: 250px;
}
.step-2-bg .cart-icon {
  position: absolute;
  top: 155px;
  left: 281px;
}
.step-2-bg .step-2-arrow {
  position: absolute;
  top: 197px;
  left: 298px;
  transform: rotate(-132deg);
}
.step-2-bg .plan-card {
  position: absolute;
  background: #fff;
  border: 1px solid #bcbcbc;
  border-radius: 3px;
  padding: 2px 5px;
  font-size: 14px;
  color: #a6a6a6;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0.8;
}
.plan-card a {
  background: #d9d9d9;
  color: #f9fafb;
  border-radius: 3px;
  padding: 1px 5px;
  font-size: 8px;
  font-weight: 500;
}
.basic-plan-1 {
  top: 202px;
  left: 104px;
  width: 95px;
  height: 15px;
  font-size: 6px;
  opacity: 0.5;
}
.basic-plan-2 {
  top: 36px;
  left: 0px;
  width: 222px;
  height: 35px;
}
.pro-plan-1 {
  top: 20px;
  left: 285px;
  width: 222px;
  height: 35px;
}
.pro-plan-2 {
  top: 172px;
  left: 391px;
  width: 95px;
  height: 15px;
  font-size: 6px;
  opacity: 0.5;
}
.premium-plan-2 {
  top: 279px;
  left: 192px;
  width: 222px;
  height: 35px;
}

/* Step 3 Specifics */
.step-3-bg .phone-screen {
  position: absolute;
  top: 27px;
  left: 167px;
}
.step-3-bg .qr-code {
  position: absolute;
  top: 118px;
  left: 258px;
}
.step-3-bg .step-3-arrow {
  position: absolute;
  top: 199px;
  left: 322px;
  transform: rotate(-131deg);
}
.step-3-bg .top-bar {
  position: absolute;
  top: -5px;
  left: 167px;
  width: 247px;
  height: 13px;
  background: #fff;
  border-radius: 10px;
}

/* Step 4 Specifics */
.step-4-bg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-4-bg .rings {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
}
.step-4-bg .rings div {
  position: absolute;
  border-radius: 50%;
  border: 0.5px solid rgba(0, 11, 34, 0.07);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ring-1 {
  width: 290px;
  height: 290px;
}
.ring-2 {
  width: 250px;
  height: 250px;
}
.ring-3 {
  width: 200px;
  height: 200px;
}
.ring-4 {
  width: 160px;
  height: 160px;
}
.step-4-bg .sim-chip {
  position: absolute;
  top: 181px;
  left: 105px;
  z-index: 2;
}
.step-4-bg .check-mark {
  position: absolute;
  top: 210px;
  left: 120px;
  z-index: 3;
}
.step-4-bg .chip-icon {
  position: absolute;
  top: 113px;
  left: 76px;
}
.step-4-bg .phone-icon {
  position: absolute;
  top: 315px;
  left: 47px;
}
.step-4-bg .range-icon {
  position: absolute;
  top: 215px;
  left: 256px;
}



/* CSS for section section:faq */
.faq-section {
  padding: 100px 0;
}
.faq-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
}
.faq-subtitle {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
}
.faq-subtitle .icon-wrapper {
  background-color: var(--primary-color);
  border-radius: 1px;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-title h2 {
  font-size: 35px;
  text-align: center;
  line-height: 1.2;
}
.faq-list {
  max-width: 968px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item.expanded {
  border-color: #7f7f7f;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-question p {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-medium);
  line-height: 30px;
}
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.expanded .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  padding-top: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding-top 0.5s ease;
}
.faq-item.expanded .faq-answer {
  max-height: 200px; /* Adjust as needed */
}
.faq-answer p {
  font-size: 16px;
  line-height: 24px;
  color: #545454;
}

/* CSS for section section:footer */
.site-footer {
  background-color: var(--bg-gray);
  padding-top: 50px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.footer-logo .logo-images {
  position: relative;
  width: 112px;
  height: 37px;
}
.footer-logo .logo-images img {
  position: absolute;
}
.footer-logo .logo-images img:nth-child(1) {
  top: 0;
  left: 0;
}
.footer-logo .logo-images img:nth-child(2) {
  top: 6.2px;
  left: 34.5px;
}
.footer-logo .logo-images img:nth-child(3) {
  top: 27.5px;
  left: 34.4px;
}

.social-links {
  display: flex;
  gap: 20px;
}
.social-icon {
  border: 1px solid var(--text-dark);
  border-radius: 3px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}
.social-icon:first-child {
  border-color: var(--primary-color);
}
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 78px;
  margin-bottom: 50px;
}
.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-medium);
  margin-bottom: 10px;
  line-height: 30px;
}
.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-column li a {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-medium);
  line-height: 30px;
}
.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding: 15px 0;
  text-align: center;
}
.footer-bottom p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #1a1a1a;
}
.checkout-section {
  padding: 50px 0;
}


.bounce-element {
  animation: bounce 2s ease-in-out infinite;
}

.auto-scroll {
  animation: autoScroll 15s linear infinite;
}
@keyframes autoScroll {
  0% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.pricing-card {
  transition: all 0.3s ease;
  cursor: pointer;
}
.pricing-card:hover {
  border: 1px solid #f4633a;
  box-shadow: 0 0 10px #f4633a7f;
  transform: scale(1.05);
  transition: all 0.3s ease;
}
.pricing-card:hover .gray-icon {
  display: none;
}
.pricing-card:hover .orange-icon {
  display: block;
}

.small-flag-bounce {
  transition: all 0.3s ease;
}

@keyframes smallBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.cart-mouse-move {
  animation: cartMovement 4s ease-in-out infinite;
}
@keyframes cartMovement {
  0% {
    transform: translateX(-50px);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(-50px);
  }
}

.scan-animation {
  position: relative;
}
.scan-animation::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #f4633a, transparent);
  animation: scanLine 2s ease-in-out infinite;
}
@keyframes scanLine {
  0% {
    top: 0%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

.rotate-around {
  animation: rotateAround 4s linear infinite;
}
@keyframes rotateAround {
  0% {
    transform: rotate(0deg) translateX(30px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(30px) rotate(-360deg);
  }
}

.scrollable-content::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 3px;
}
.scrollable-content::-webkit-scrollbar-thumb {
  background: #f4633a;
  border-radius: 3px;
}

#testimonialsContainer {
  min-height: 200px;
}

.testimonial-card:hover {
  border-color: #f4633a;
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.testimonial-popup {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 2px solid #f4633a;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
  min-width: 200px;
}
.testimonial-popup.show {
  opacity: 1;
  visibility: visible;
}

.tabs-nav::-webkit-scrollbar {
  display: none;
}

.payment-tab.active {
  color: #f4633a;
}
.tab-pane {
  display: none;
  animation: fadeIn 0.3s ease;
}
.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* modal */

/* CSS for section section:modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(1px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow-y: auto;
}

.modal-content {
  width: 650px;
  height: 700px;
  background-color: var(--bg-white);
  border-radius: 30px;
  padding: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.modal-title {
  font-size: 35px;
  font-weight: 400;
  color: var(--text-dark);
  text-align: center;
}

.tab-underline {
  position: absolute !important;
  bottom: 0;
  height: 2px;
  background: #f4633a;
  width: 0;
  left: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.tab-underline::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  height: 2px;
  bottom: 0;
  width: 0;
  background-color: var(--primary-color);
  box-shadow: 0px 2px 5px 0px rgba(244, 99, 58, 0.6);
}
.modal-tabs-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 454px;
}

.modal-tabs {
  display: flex;
  position: relative;
  /* gap: 15px; */
  padding-bottom: 10px;
}

.modal-tab {
  background: none;
  border: none;
  font-size: 16px;
  color: #333;
  padding: 10px 20px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.tab-base-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  min-width: 482px !important;
  height: 1px;
  background: #d9d9d9;
  z-index: 1;
}
.modal-tab.active {
  color: var(--primary-color);
  font-weight: 700;
}

.modal-filters {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 570px;
}

.search-input,
.brand-select {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 25px;
  border-radius: 50px;
  font-size: 14px;
  color: #828282;
}

.search-input {
  flex-grow: 1;
  background-color: var(--bg-white);
  box-shadow: 0px 2px 30px 0px rgba(29, 11, 0, 0.2);
}

.search-input input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  width: 100%;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
}
.brand-select {
  width: 200px;
  background-color: #f9f9f9;
  box-shadow: 0px 2px 10px 0px rgba(29, 11, 0, 0.2);
  cursor: pointer;
}

.brand-select:hover {
  border-color: #f4633a;
}

.brand-options {
  list-style: none;
  margin: 0;
  padding: 0;
  animation: fadeIn 0.2s ease;
}

.brand-option {
  font-size: 14px;
  color: #333;
}

.dropdown-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.brand-select.open .dropdown-icon {
  transform: rotate(180deg);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-illustration {
  position: relative;
  width: 300px;
  height: 270px;
  margin-top: 40px;
}

.background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 393px;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}

.background-pattern img {
  position: absolute;
  height: 100%;
}

.background-pattern .pattern-left {
  left: 0;
  width: auto;
}

.background-pattern .pattern-right {
  right: 0;
  width: auto;
  transform: rotate(180deg);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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


.main-content-area {
  padding-top: 82px;
  padding-bottom: 150px; /* Approximate */
}

.hero-title {
  margin: 0;
  font-size: 64px;
  line-height: 86px;
}

.hero-title-light {
  font-weight: 300;
  color: #111111;
}

.hero-title-medium {
  font-weight: 500;
  color: var(--color-primary);
}

.breadcrumbs {
  margin: 0;
  font-size: 20px;
  line-height: 36px;
  font-weight: 500;
  color: var(--color-text-dark);
}

.plans-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.plan-type {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16.2px;
}
.plan-type-icon {
  width: 14px;
  height: 16px;
}

.plans-title .font-regular {
  font-weight: 400;
}
.plans-title .font-bold {
  font-weight: 700;
  color: var(--color-primary);
}
.plans-title-icon {
  width: 50px;
  height: 50px;
}

.plans-body {
  display: flex;
  gap: 44px;
}

.plans-image-container {
  flex: 0 0 580px;
  width: 580px;
  height: 640px;
  border-radius: 20px;
  overflow: hidden;
}

.main-plan-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plans-selection-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.plans-description h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin: 0 0 5px 0;
}

.plans-description p {
  font-size: 14px;
  line-height: 19px;
  margin: 0;
}

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

.plan-card {
  background-color: var(--color-background-light);
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  cursor: pointer;
  position: relative;
  height: 120px;
}

.plan-card.selected {
  border-color: var(--color-primary);
  box-shadow: 0px 0px 10px 0px rgba(244, 99, 58, 0.3);
}

.plan-card .radio-button {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--color-text-dark);
}

.plan-card.selected .radio-button {
  border: none;
}

.plan-card > div:not(.radio-button) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.btn-large {
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  height: 55px;
}
.btn-large.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.btn-large.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-text-dark);
  color: var(--color-text-dark);
  font-weight: 400;
}



.search-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 100px; /* Position from top */
  z-index: 1000;
}

.search-modal-dialog {
  background-color: var(--color-white);
  border-radius: 16px;
  width: 700px;
  max-width: 90vw;
  padding: 25px 0;
  display: flex;
  flex-direction: column;
  gap: 35px;
  box-shadow: 0px 2px 30px 0px rgba(29, 11, 0, 0.2);
}

.search-bar-container {
  position: relative;
  padding: 0 25px;
}

.locations-container {
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow-y: auto;
  max-height: 380px;
}

.locations-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0;
}

.locations-divider {
  border: none;
  height: 1px;
  background-color: var(--color-border-divider);
  margin: 0 0 12px 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 21px 20px;
  border-radius: 10px;
  background-color: var(--color-background-light);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  font-size: 18px;
  font-weight: 400;
  transition: all 0.2s ease;
}
.location-item:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
}
.location-item.highlighted {
  background-color: var(--color-background-highlight);
  box-shadow: 0px 0px 5px 0px rgba(249, 179, 110, 0.5);
}
.location-item .flag-icon,
.location-item div[style*="position: relative"] {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.location-item .flag-icon {
  object-fit: cover;
  border-radius: 50%;
}

.scrollbar-track {
  position: absolute;
  right: 10px;
  top: 50px; /* Below title and hr */
  bottom: 0;
  width: 6px;
  background-color: #e0e0e0;
  border-radius: 4px;
}

.scrollbar-thumb {
  width: 4px;
  height: 183px; /* This should be dynamic with JS */
  background-color: #331001;
  border-radius: 4px;
  margin: 1px;
}


/* admin */

/* CSS for section section:Header */

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

.user-controls {
  display: flex;
  align-items: center;
  gap: 78px;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.language-selector img {
  border: 1.6px solid var(--text-dark);
}

.user-profile {
  background-color: #fef5ea;
  border-radius: 8px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.user-profile .avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.user-profile .user-info {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-secondary);
  font-size: 14px;
  color: #1c1d22;
}



/* CSS for section section:Account */
.account-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.account-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.sidebar {
  flex-shrink: 0;
  width: 265px;
  background-color: var(--bg-white);
  padding: 15px;
  border-radius: 5px;
}

.sidebar ul {
  display: flex;
  flex-direction: column;
}

.sidebar a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border-radius: 6px;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-dark);
}

.sidebar a.active {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.sidebar a:not(.active):hover {
  background-color: #f0f0f0;
}
#sidebarMenu a.active {
  background-color: #f4633a;
  color: white;
  border-radius: 8px;
}
#sidebarMenu a img {
  margin-right: 10px;
  transition: filter 0.3s ease;
}

.main-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.greeting {
  font-size: 32px;
  font-weight: 400;
  line-height: 45px;
  margin: 0;
  color: var(--text-body);
}

.greeting strong {
  font-weight: 700;
}

.content-box {
  background-color: var(--bg-white) !important;
  padding: 30px !important;
  border-radius: 5px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 30px !important;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content-header h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
  color: var(--text-body);
  margin: 0;
}

.edit-profile-btn {
  background-color: var(--primary-color);
  border: none;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.account-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 16px;
  line-height: 16px;
  color: var(--text-body) !important;
}

.form-group input {
  background-color: #f1f1f1;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  height: 55px;
  padding: 0 17px;
  font-size: 16px;
  font-family: var(--font-primary);
  font-weight: 500;
}

.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrapper input {
  width: 100%;
  padding: 10px 40px 10px 12px; /* add right padding for the icon */
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.password-wrapper .password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
}

.password-wrapper .password-toggle:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}



.dropdown-menu {
  position: absolute;
  top: 95px;
  right: 30px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 168px;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.dropdown-menu a {
  padding: 10px 12px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
}

.hidden {
  display: none;
}
/* round buton */
.refer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 173px;
  height: 38px;
  border-radius: 50px;
  background-color: #f4633a;
  color: #fff;
  /* font-size: 14px; */
  /* font-weight: 600; */
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.refer-btn:hover {
  background-color: #e55a33;
  transform: scale(1.05);
}

/* Grid Layout */
.trusted-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Each Card */
.subcontent-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.subcontent-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Device Icon */
.device-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

/* Info Section */
.device-info {
  flex: 1;
}

.device-info .device-title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.device-info p {
  font-size: 13px;
  color: #555;
  margin: 0;
}

/* Remove Button (using your corrected version) */
.remove-btn {
  display: inline-flex;
  align-items: center !important;
  justify-content: center;
  align-self: center;
  width: 115px;
  height: 38px;
  border-radius: 50px;
  background-color: #fff;
  color: #f4633a;
  border: 1px solid #f4633a;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.remove-btn:hover {
  background-color: #f4633a;
  color: #fff;
  transform: scale(1.05);
}
/* checkout new */
.main-grid {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 80px;
    align-items: start;
}
.cart-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.cart-title {
    font-size: 35px;
    font-weight: 400;
    margin: 0;
}
.text-primary-checkout {
    color: var(--primary-color);
    font-weight: 700;
}
.text-black-checkout {
    color: #000;
    font-weight: 500;
}
.checkout-card {
    background-color: var(--background-grey);
    border: 0.84px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.checkout-card-two {
    background-color: var(--background-light);
    border: 0.84px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.checkout-card-one {
    background-color: var(--background-grey);
    border: 0.84px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.plan-summary-card, .declaration-card {
    background-color: var(--background-light);
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.plan-summary-card {
    padding: 0; /* No padding from figma */
}
.declaration-card {
    gap: 10px;
}
.card-subtitle {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}
.plan-details-checkout {
    display: flex;
    align-items: center;
    gap: 8px;
}
.plan-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.plan-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.plan-price {
    font-weight: 600;
    font-size: 20px;
    padding: 10px;
    white-space: nowrap;
}
.plan-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}
.plan-name .text-primary {
    letter-spacing: 1.25px;
}
.declaration-text {
    font-size: 14px;
    color: var(--text-light-checkout);
    margin: 0;
}
.declaration-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: 5px;
}
.declaration-list li {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--text-light-checkout);
}
.text-bold {
    font-weight: 700;
    color: #505050;
}
/* .accept-all {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
} */
.payment-description {
    font-size: 14px;
    color: var(--text-light-checkout);
    margin: 0;
    max-width: 530px;
}
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.payment-option {
    background-color: var(--background-light);
    border: 0.5px solid #7f7f7f;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.payment-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.payment-option-header label {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-medium);
}
.payment-logos {
    display: flex;
    align-items: center;
    gap: 18px;
}
.paypal-logo {
    width: 87.5px;
    height: auto;
}

/* Payment Summary Aside */
.payment-summary {
    background-color: var(--background-dark-grey);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 120px; /* header height + some margin */
}
.summary-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
}
.summary-details-check {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 10px;
    /* border-bottom: 1px solid #b1b1b1; */
}
.gst-text {
    display: block;
    font-size: 12px;
    color: #777;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: #1a1a1a;
}
.summary-item strong {
    font-weight: 700;
}
.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #1a1a1a;
}
.total-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}
.mv-container {
  width: 100%;
  max-width: 888px;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mv-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  padding-left: 15px; /* Align with visual hierarchy */
}

.mv-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mv-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 15px 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.mv-card-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.mv-icon-box {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.mv-icon {
  width: 29px;
  height: auto;
  display: block;
}

.mv-text-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mv-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  line-height: 1.2;
}

.mv-card-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #666666; /* Estimated for subtitle based on context */
  line-height: 1.2;
}

.mv-btn {
  background-color: #ffffff;
  border: 1px solid #f4633a;
  border-radius: 50px;
  color: #f4633a;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 10px;
  height: 45px;
  min-width: 100px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.mv-btn:hover {
  background-color: #fff5f2;
}
.promo-code-section {
    background-color: #dedede;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.promo-code-section strong {
    font-size: 16px;
    font-weight: 700;
}
.promo-code-section p {
    font-size: 14px;
    margin: 0;
}
.promo-input-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.promo-input-group input {
    flex-grow: 1;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 13px;
}
.promo-input-group .btn {
    padding: 10px 25px;
    min-width: 97px;
}
.summary-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.summary-checklist li {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--text-light-checkout);
}
.summary-checklist img {
    width: 20px;
    height: 20px;
}
.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 20px;
}

.plan-option-card {
    display: flex;
    align-items: center;
    justify-content: space-between;   /* always push arrow to right */
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
    width: 30%;
    /* gap: 16px; spacing between icon and text */
}
.plan-options-grid-card {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;        /* force in one row */
    gap: 12px;                /* spacing between items */
    width: 100%;
    overflow-x: auto;         /* scroll if overflow happens */
    padding-bottom: 8px;
}
.plan-option-card:hover {
    border-color: red;
}

.plan-option-card:hover i {
    color: red !important;
}

/* Plan details text */
.plan-details {
    display: flex;
    /* flex-direction: column; */
}

/* Responsive text size */
.plan-details span {
    font-size: 14px;
}

/* Icon responsive */
.plan-option-card img {
    width: 50px;
    height: 50px;
}
.page-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}
.page-description {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}
.plan-data-card {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
}

/* new page 111 */


#section-hero {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero-container {
  position: relative;
  width: 100%;
  height: 508px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/892677fbed35500969d52f1397bcfcff47ceca80.png');
  background-size: cover;
  background-position: center;
}

.bg-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 1) 0%, 
    rgba(242, 242, 242, 0.92) 18%, 
    rgba(242, 242, 242, 0.9) 42%, 
    rgba(242, 242, 242, 0.9) 53%, 
    rgba(242, 242, 242, 0.9) 68%, 
    rgba(242, 242, 242, 0.92) 83%, 
    rgba(255, 255, 255, 1) 97%);
}

.hero-content-reseller {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: -50px; /* Adjust visual alignment */
}

.hero-title-reseller {
  font-size: 64px;
  font-weight: 700;
  color: #111111;
  line-height: 1.2;
}

.highlight-reseller {
  color: #f4633a;
}

@media (max-width: 768px) {
  .hero-title-reseller {
    font-size: 40px;
  }
  .hero-container {
    height: 300px;
  }
}

/* CSS for section section:MainContent */
#section-main {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 50px 20px 100px;
}

.main-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Left Column */
.content-column {
  flex: 1;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.text-block h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.2;
}

.text-block .highlight-reseller {
  color: #f4633a;
}

.subtitle {
  font-size: 16px;
  color: #111;
  line-height: 1.5;
}

.image-block {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background-color: #d4d4d4;
}

.merged-image-container-reseller {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 20px;
}

.img-back, .img-front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Column - Form */
.form-column {
  flex: 1;
  max-width: 534px;
}

.form-card {
  background-color: #eeeeee;
  padding: 30px;
  border-radius: 0px; /* As per design */
}

.form-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0c1421;
  margin-bottom: 30px;
}

.details-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group-reseller {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group-reseller label {
  font-size: 14px;
  color: #0c1421;
  font-weight: 500;
}

.input-wrapper {
  background-color: #fdfdfd;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  position: relative;
}

.input-wrapper input, .input-wrapper select {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 14px;
  color: #111;
  outline: none;
  font-family: 'Inter', sans-serif;
  appearance: none;
}

.input-wrapper input::placeholder {
  color: #8897ad;
}

.icon-eye, .icon-chevron {
  cursor: pointer;
}

.btn-continue {
  background-color: #f4633a;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  height: 52px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 15px;
  width: 100%;
}

@media (max-width: 1024px) {
  .main-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .content-column, .form-column {
    max-width: 100%;
    width: 100%;
  }
  .merged-image-container-reseller {
    height: 400px;
  }
}
/* end 1111 */
/* reseller welcome */
/* img {
  display: block;
  max-width: 100%;
} */
#section-header {
    padding-top: 40px;
    padding-bottom: 20px;
    display: contents;
  }
  .header-wrapper {
    width: 100%;
    padding: 0 32px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
  }
  .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 48px;
  }
  .logo-group {
    position: relative;
    width: 140px;
    height: 46px;
    margin: 0 auto; 
  }
  .logo-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 46px;
  }
  .logo-text {
    position: absolute;
    left: 43px;
    top: 11px;
    width: 97px;
    height: 24px;
  }

.email-container {
  background-color: #ffffff;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;                /* centers container */
  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;
  padding: 0 40px; 
}

/* Utility for overlapping merged images */
.merged-image-container-welcome {
  position: relative;
}
.merged-image-container-welcome img,
.merged-image-container-welcome svg {
  position: absolute;
}
.hero-wrapper {
    width: 100%;
    padding: 0 32px;
    box-sizing: border-box;
  }
  .hero-content-welcome {
    position: relative;
    width: 100%;
    height: 170px;
    background-color: #edf1e0;
    border-radius: 8px;
    overflow: hidden;
  }
 .hero-bg-welcome {
  width: 100%;
  max-width: 620px;   /* limit size */
  height: auto;
  display: block;
  margin: 0 auto;     /* center the image */
  object-fit: cover;
}
.code-box {
  width: 50px;
  height: 50px;
  font-size: 24px;
  text-align: center;

  border: 2px solid #ccc;
  border-radius: 8px;

  outline: none;
}

.code-box:focus {
  border-color: #000;
}
  .welcome-graphic {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 252px;
    height: 130px;
  }
  .welcome-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .shadow-layer {
    opacity: 0.7;
    filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.25));
  }
  .welcome-svg-part {
    position: absolute;
  }
  /* Positioning relative to the 252x130 container based on Figma offsets */
  .p1 { left: 2px; top: 1px; width: 250px; height: 129px; }
  .p2 { left: 79px; top: 6px; width: 96px; height: 50px; }
  .p3 { left: 29px; top: 75px; width: 4px; height: 4px; }
  .p4 { left: 211px; top: 23px; width: 4px; height: 4px; }

/* CSS for section section:Features */
.content-wrapper-welcome {
    width: 100%;
    padding: 40px 32px 0 32px;
    box-sizing: border-box;
  }
  .text-content-welcome {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }
  .welcome-title {
    font-size: 20px; /* Estimated from context */
    font-weight: 700;
    color: #000000;
    justify-content: center;
    text-align: center;
    margin: 0;
  }
  .welcome-body {
    font-size: 14px; /* Estimated */
    line-height: 1.5;
    color: #000000;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .welcome-body p {
    margin: 0;
  }
  .features-grid {
    display: flex;
    flex-direction: row;
    gap: 20px; /* Adjusted for responsiveness */
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .features-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .check-icon {
    width: 20px;
    height: 20px;
  }
  .feature-text {
    font-size: 12px;
    font-weight: 600;
    color: #000000;
  }
  .action-button-container {
    margin-top: 10px;
  }
  .main-button {
    display: inline-block;
    background-color: #f4633a;
    color: #ffffff;
    text-decoration: none;
    padding: 20px 40px; /* Adjusted to match visual bulk */
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .sign-off {
    font-size: 14px;
    line-height: 1.5;
    color: #000000;
    margin-top: 10px;
  }
  .sign-off p {
    margin: 0;
  }
  /* CSS for section section:Footer */
.footer-wrapper {
    width: 100%;
    padding: 40px 32px;
    box-sizing: border-box;
  }
  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .socials-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .socials-text {
    font-size: 12px;
    color: #000000;
    max-width: 280px;
    margin: 0;
    line-height: 1.4;
  }
  .social-icons {
    display: flex;
    gap: 10px;
  }
  .app-badges {
    display: flex;
    gap: 10px;
  }
  .store-badge {
    height: 32px;
    width: auto;
  }
  .legal-text {
    font-size: 10px;
    color: #666666; /* Assumed lighter color for footer text */
    line-height: 1.5;
  }
  .legal-text p {
    margin: 0 0 10px 0;
  }
  .legal-text a {
    color: #f4633a;
    text-decoration: none;
  }
/* reseller welcome end */
/* verification */
#email-verification {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
  }

  /* .email-container {
    width: 100%;
    max-width: 536px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  } */

  /* Top Content Group */
  .content-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .title-verification {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
  }

  .greeting-verification {
    font-size: 16px;
    color: #000000;
    line-height: 1.5;
  }

  /* Code Display Row */
  .code-display {
    display: flex;
    flex-direction: row;
    gap: 12px;
  }

  .code-box {
    width: 64px;
    height: 64px;
    background-color: #f8fafc;
    border: 1px solid #f46a43;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    color: #000000;
  }

  .description {
    font-size: 16px;
    color: #000000;
    line-height: 1.5;
  }

  /* Button */
  .btn-verify {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #f4633a;
    color: #ffffff;
    border-radius: 50px;
    padding: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    width: fit-content;
    min-width: 132px;
    height: 58px;
    transition: background-color 0.2s ease;
  }

  .btn-verify:hover {
    background-color: #d64e28;
  }
#email-template-act {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    background-color: #fff;
  }

  .email-container-act {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Typography */
  .intro-text-act p {
    font-size: 14px;
    line-height: 1.5;
    color: #000;
  }

  .card-title-act {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 5px;
  }

  .sub-title-act {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
  }

  .text-sm-act {
    font-size: 13px;
    line-height: 1.5;
    color: #000;
  }

  .details-list-act {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.8;
    margin-top: 10px;
    white-space: pre-line;
  }

  /* Cards */
  .card-act {
    border: 1px solid #d2d2d2;
    padding: 20px; /* Adjusted for visual balance */
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .card-body-act {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* QR Section */
  .qr-section {
    background-color: #f2f2f2;
    padding: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }

  .qr-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .qr-image {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
  }

  .qr-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* Manual Section */
  .manual-section-act {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  /* Instructions */
  .instruction-block-act {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .with-divider-act {
    border-bottom: 1px solid #707070;
    padding-bottom: 20px;
    margin-bottom: 5px;
  }

  .instruction-list-act {
    margin: 0;
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.6;
    color: #000;
  }

  .instruction-list-act li {
    margin-bottom: 4px;
  }

  .instruction-list-act strong {
    font-weight: 700;
  }
  /* Footer */
  /* .sign-off {
    font-size: 16px;
    color: #384860;
    line-height: 1.5;
  } */
/* end verification */
 /* Payment Methods */
  .payment-methods {
    display: flex;
    flex-direction: row;
    gap: 13px;
    width: 100%;
  }

  .method-card {
    flex: 1;
    height: 99px;
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .method-card.active {
    background-color: #ffeae4;
    border: 0.5px solid #7f7f7f;
  }

  .method-card:not(.active) {
    background-color: #ffffff;
    border: 0.5px solid #dedede;
  }

  .method-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .method-title {
    font-size: 13px;
    color: #2d2d2d;
    font-weight: 500;
    white-space: nowrap;
  }

  .card-icons {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .method-content-row {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .method-name {
    font-size: 14px;
    color: #2d2d2d;
    font-weight: 500;
  }


  .logo-wrapper {
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Radio Buttons */
  .radio-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .merged-radio {
    position: relative;
    width: 20px;
    height: 20px;
  }

  .radio-outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    z-index: 1;
  }

  .radio-inner {
    position: absolute;
    top: 5.5px;
    left: 5.5px;
    width: 9px;
    height: 9px;
    z-index: 2;
  }
  
  .form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .input-group-check {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
  }

  .form-row {
    display: flex;
    gap: 20px;
    width: 100%;
  }

  .half-width {
    flex: 1;
  }

  label {
    font-size: 14px;
    color: #0c1421;
    font-weight: 500;
  }

  .input-wrapper-check {
    background-color: #fdfdfd;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 16px;
  }

  .input-check {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 14px;
    color: #0c1421;
    outline: none;
    font-family: 'Inter', sans-serif;
  }

  .input-check::placeholder {
    color: #8897ad;
  }

  /* Button */
  .pay-button {
    width: 100%;
    height: 52px;
    background-color: #f4633a;
    border-radius: 50px;
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .pay-button:hover {
    background-color: #e0552f;
  }
  .hero-section-about {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }

  .hero-container-about {
    position: relative;
    width: 100%;
    max-width: 1140px;
    height: 480px;
    background: linear-gradient(135deg, #8E3A22 0%, #F4633A 45%, #8E3A22 100%);
    overflow: hidden;
    /* Overlay color from design */
    box-shadow: inset 0 0 0 1000px rgba(255, 109, 68, 0.6);
  }

  /* Background Decorations */
  .bg-shape-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 371px;
    height: 480px;
    opacity: 0.3;
    pointer-events: none;
  }

  .bg-cloud-right {
    position: absolute;
    left: 1065px;
    top: 21px;
    width: 194px;
    height: 145px;
    opacity: 0.3;
    pointer-events: none;
  }

  .bg-dots-right {
    position: absolute;
    left: 1091px;
    top: 20px;
    width: 91px;
    height: 26px;
    pointer-events: none;
  }

  .circle-group {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 40px;
    height: 36px;
  }
  .circle-bg {
    position: absolute;
    left: 0;
    top: 3px;
    width: 33px;
    height: 33px;
    mix-blend-mode: darken;
    opacity: 0.3;
  }
  .circle-fg {
    position: absolute;
    left: 7px;
    top: 0;
    width: 33px;
    height: 33px;
  }

  .bg-shape-bottom {
    position: absolute;
    left: 198px;
    top: 381px;
    width: 198px;
    height: 99px;
    opacity: 0.7;
    mix-blend-mode: soft-light;
    pointer-events: none;
  }

  .paper-plane {
    position: absolute;
    left: 140px;
    top: 75px;
    width: 32px;
    height: 25px;
  }

  .cloud-center-1 {
    position: absolute;
    left: 779px;
    top: 33px;
    width: 79px;
    height: 26px;
    opacity: 0.8;
  }

  .cloud-center-2 {
    position: absolute;
    left: 496px;
    top: 56px;
    width: 45px;
    height: 15px;
    opacity: 0.8;
  }

  /* Main Content */
  .hero-content-about {
    position: absolute;
    left: 160px;
    top: 100px;
    width: 449px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 10;
  }

  .text-group-about {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center; /* Based on Figma alignment */
  }

  .hero-title-about {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 32px; /* Estimated from visual hierarchy */
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    margin: 0;
    width: 100%;
    text-align: left; /* Overriding center align for title text flow */
  }

  .hero-subtitle-about {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    margin: 0;
    width: 100%;
    text-align: left;
  }

  .cta-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }

  .btn-referral {
    background-color: #ffffff;
    border: 1px solid #f4633a;
    border-radius: 50px;
    padding: 7px 25px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #f4633a;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    transition: transform 0.2s ease;
  }

  .btn-referral:hover {
    transform: scale(1.05);
  }

  /* Suitcase Illustration */
  .suitcase-illustration {
    position: absolute;
    left: 13px;
    top: 326px;
    width: 162px;
    height: 153px;
    pointer-events: none;
  }

  /* Positioning suitcase parts relative to the wrapper (x=13, y=326) */
  /* Formula: Part Absolute X - Wrapper Absolute X */
  
  .suitcase-body { /* 1418 */
    position: absolute;
    left: 16px; /* 29 - 13 */
    top: 0px; /* 326 - 326 */
    width: 81px;
    height: 152px;
  }

  .suitcase-handle { /* 1535 */
    position: absolute;
    left: 138px; /* 151 - 13 */
    top: 122px; /* 448 - 326 */
    width: 24px;
    height: 31px;
  }

  .suitcase-details { /* 1489 */
    position: absolute;
    left: 96px; /* 109 - 13 */
    top: 132px; /* 458 - 326 */
    width: 34px;
    height: 28px;
  }

  .suitcase-bottom { /* 1542 */
    position: absolute;
    left: 117px; /* 130 - 13 */
    top: 95px; /* 421 - 326 */
    width: 34px;
    height: 31px;
  }

  .suitcase-tag { /* 1557 */
    position: absolute;
    left: 38px; /* 51 - 13 */
    top: 16px; /* 342 - 326 */
    width: 13px;
    height: 26px;
  }

  .suitcase-float-1 { /* 1406 */
    position: absolute;
    left: 116px; /* 129 - 13 */
    top: 81px; /* 407 - 326 */
    width: 4px;
    height: 4px;
  }

  .suitcase-float-2 { /* 1409 */
    position: absolute;
    left: 0px; /* 13 - 13 */
    top: 78px; /* 404 - 326 */
    width: 6px;
    height: 6px;
  }

  .suitcase-float-3 { /* 1412 */
    position: absolute;
    left: 158px; /* 171 - 13 */
    top: 111px; /* 437 - 326 */
    width: 4px;
    height: 4px;
  }

  /* People Illustration */
  .people-illustration {
    position: absolute;
    left: 773px;
    top: 208px;
    width: 347px;
    height: 271px;
    pointer-events: none;
  }
  
  .people-img {
    width: 100%;
    height: 100%;
  }
/* Mobile responsive spacing */
@media (max-width: 480px) {
   .code-box {
      width: 50px;
      height: 50px;
      font-size: 20px;
    }
 .mv-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .mv-card-left {
    width: 100%;
  }
  
  .mv-btn {
    width: 100%;
  }
    .qr-section {
      flex-direction: column-reverse;
      align-items: center;
      text-align: center;
    }
    
    .qr-content {
      align-items: center;
    }
  
    
    .title-verification {
      font-size: 20px;
    }
    .plan-option-card {
        padding: 10px 14px;
        gap: 12px;
    }
 .features-grid {
      flex-direction: column;
      gap: 24px;
    }
    .plan-option-card img {
        width: 36px;
        height: 36px;
    }

    .plan-details span {
        font-size: 13px;
    }

    .plan-option-card i {
        font-size: 16px;
    }
}


/*  media queries */
@media (max-width: 992px) {
  .account-container {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
  }
  .sidebar ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
    .main-nav {
    display: none; /* Hide for tablet/mobile, would be replaced by a hamburger menu */
  }
  .user-controls {
    gap: 20px;
  }
   .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .modal-overlay {
    overflow-y: auto;
  }
  .checkout-section .container {
    flex-direction: column;
    align-items: center;
  }
  .modal-illustration {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .payment-form,
  .order-summary {
    width: 100%;
    max-width: 650px;
  }
  .policies-content {
    flex-direction: column;
    gap: 40px;
  }
  .policies-content .text-column {
    max-width: 100%;
    text-align: center;
  }
}
 .policies-content .text-column-faq {
    max-width: 100%;
    text-align: center;
  }

@media (max-width: 768px) {
   .paper-plane {
    position: absolute;
    left: 60px;
    top: 10px;
    
  }
  .cloud-center-1 {
    position: absolute;
    left: 280px;
    top: 10px;
  
  }
  .cloud-center-2{
  position: absolute;
    left: 150px;
    top: 10px;
  }
  .people-illustration {
      width: 280px;
      height: auto;
      margin-top: 20px;
      align-self: right;
    }
    
    .suitcase-illustration {
    position: absolute;
    left: 3px;
    pointer-events: none;
  }
  .header-actions .auth-buttons {
    display: none; 
  }
  .plan-option-card{
    width: 60% !important;

  }
  .page-title{
    display: flex;
    justify-content: center !important;
    align-items: center !important;
  }
  .page-description{
    display: flex;
   text-align: center !important;
  }
  .plan-options-grid-card{
      display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;        /* force in one row */
    gap: 12px;                /* spacing between items */
    width: 100%;
    overflow-x: auto;         /* scroll if overflow happens */
    padding-bottom: 8px;
   
   
  }
   .declaration-list {
        margin-left: 0;
    }

    .declaration-list li {
        font-size: 13px;
        gap: 4px;
      
    }

    .declaration-list li img {
        /* width: 14px;              Smaller icon for mobile */
        flex-shrink: 0;           /* Prevents the icon from shrinking */
    }
  .search-modal-overlay {
    padding-top: 20px;
    align-items: flex-start;
  }
  .plan-name {
    font-size: 20px;
}
  .search-modal-dialog {
    gap: 20px;
  }
  .locations-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
  .location-item {
    padding: 15px;
  }
    .hero-section {
    margin-bottom: 60px;
  }
  .hero-title {
    font-size: 48px;
    line-height: 1.2;
  }
  .breadcrumbs {
    font-size: 16px;
  }
  .payment-logos {
    display: flex;
    align-items: start;
    gap: 2px;
}
  .plan-cards-grid {
    grid-template-columns: 1fr;
  }
      .how-it-works-section {
            padding: 40px 0;
        }
        .steps-grid {
            grid-template-columns: 1fr;
        }
        .section-title {
            font-size: 28px;
            margin-bottom: 10px;
        }
        .section-title-quick{
           font-size: 28px;
        }
        .section-sub-title-quick{
          font-size: 28px;
        }
        .section-title-legal{
          font-size: 28px;
        }
        .section-sub-title {
            font-size: 28px;
        }
        .step-card {
            min-height: auto;
        }
        .step-card-visual {
            min-height: 250px;
        }
  
}
@media (max-width: 1024px) {
   .hero-container-about {
      height: auto;
      min-height: 600px;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 40px 20px;
    }

    .hero-content-about {
      position: relative;
      left: auto;
      top: auto;
      width: 100%;
      max-width: 600px;
      text-align: center;
      align-items: center;
    }

    .text-group-about {
      align-items: center;
    }

    .hero-title-about, .hero-subtitle-about {
      text-align: center;
    }

    .cta-wrapper {
      justify-content: center;
    }

    .suitcase-illustration {
      position: relative;
      left: auto;
      top: auto;
      margin-top: 40px;
      align-self: flex-start;
    }

    .people-illustration {
      position: relative;
      left: auto;
      top: auto;
      margin-top: -100px;
      align-self: flex-end;
    }
    
    .bg-cloud-right, .bg-dots-right {
      display: none; /* Hide clutter on smaller screens */
    }
  .plans-body {
    flex-direction: column;
    align-items: center;
  }
  .plans-image-container {
    width: 100%;
    max-width: 580px;
    height: auto;
    aspect-ratio: 580 / 640;
  }
  .plans-selection-container {
    width: 100%;
    max-width: 580px;
  }
    .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.05);
    transform: translateY(-200%);
    transition: transform 0.3s ease-in-out;
  }
  /* A class to toggle nav visibility with JS */
  .main-nav.is-open {
    transform: translateY(0);
  }
  .header-container {
    justify-content: space-between;
    width: 100%;
  }
    .main-nav {
    display: none;
  } /* Simple hide for mobile, real implementation would use a menu button */
  .header-content {
    justify-content: space-between;
  }
  .plans-main-content {
    grid-template-columns: 1fr;
  }
  .modal-overlay {
    overflow-y: auto;
  }
  .modal-illustration {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .plans-image {
    max-width: 580px;
    margin: 0 auto;
  }
}


@media (max-width: 1100px) {
    .main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .payment-summary {
        position: static;
    }
  }

@media (max-width: 576px) {
  .payment-tab {
    font-size: 14px;
    padding: 8px 10px;
  }

  .payment-tabs {
    gap: 8px;
  }
  .footer-top {
    flex-direction: column;
    gap: 20px;
  }
  .footer-links-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .modal-illustration {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 1200px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================
   MOBILE RESPONSIVE FIXES
   ============================ */

/* Reduce image size only on mobile */
@media (max-width: 640px) {
  .responsive-icon {
    width: 14px !important;
    height: 14px !important;
  }
 .step-number {
        position: absolute;
        top: 15px;
        left: 0 !important;
        font-size: 100px !important;
        font-weight: 400;
        color: rgba(0, 0, 0, 0.07);
        line-height: 1;
 }
 #secure-pay{
  max-height: 150px !important;
  margin-left: 20PX !important;
  margin-bottom: 50px !important;
 }
 #thr-wifi{
  left:2px !important; 
 }
 #thr-loc{
   left:30px !important; 
 }
 #thr-sim{
   left:20px !important; 
 }
  #thr-doc{
   left:280px !important; 
 }
 #thr-top{
  margin-bottom: 20px !important;
 }
  /* Fix big background container height */
  .responsive-bg-box {
    height: 160px !important;
  }

  /* Reduce padding on mobile */
  .responsive-padding {
    padding: 12px !important;
  }

  /* One-column layout for mobile */
  .responsive-grid-2 {
    grid-template-columns: 1fr !important;
  }

  /* Reduce headline size */
  .responsive-title {
    font-size: 18px !important;
  }

  /* Reduce normal text */
  .responsive-text {
    font-size: 14px !important;
  }

  /* Make card full width */
  .responsive-card {
    width: 100% !important;
  }

  /* Reduce spacing */
  .responsive-space {
    margin: 8px 0 !important;
  }
  .visual-elements-container{
  justify-content: flex-start !important;
  top: 10px !important; left: 21px !important; width: 288px !important; height: 140px !important;padding: 5px !important;
  }
  .merged-image-container{
    margin: 20px !important;
    margin-bottom: 0px !important;
    position: relative !important;
  }
  .step-card-content{
    margin-top: 80px !important;
  }
  #fur-sim{
    margin-top:20px !important;
    margin-left: 20px !important;
  }
   #fur-tick{
    margin-top:20px !important;
    margin-left: 20px !important;
   }
   .promo-input-group {
    flex-direction: column !important; /* stack input + button */
    gap: 8px !important;
  }

  .promo-input-group .btn {
    width: 100% !important;   /* full width button */
    text-align: center;
  }

  .promo-input-group input {
    width: 100% !important;
  }
   .card-details-row {
    flex-direction: column !important; /* stack fields */
    gap: 10px !important;
  }

  .card-details-row .form-group {
    width: 100% !important; /* full width fields */
  }
 .modal-overlay {
    overflow-y: auto;
  }
  .card-details-row input {
    width: 100% !important;
  }
   /* Modal container */
  .modal-content {
    width: 90% !important;
    padding: 16px !important;
    max-height: 90vh;
    overflow-y: auto;
  }

  /* Title */
  .modal-title {
    font-size: 18px !important;
    line-height: 22px !important;
    text-align: center !important;
  }

  /* Close button */
  .modal-close {
    top: 10px !important;
    right: 10px !important;
    font-size: 22px !important;
  }

  /* Tabs */
  .modal-tabs {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
  }



  /* Underline adjust for mobile */
  .tab-underline,
  .tab-base-line {
    bottom: -2px !important;
  }

  /* Filters layout */
  .modal-filters {
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 12px !important;
  }

  .search-input {
    width: 100% !important;
  }

  .search-input input {
    font-size: 14px !important;
    padding: 10px 12px !important;
  }

  .brand-select {
    width: 100% !important;
  }

  .brand-options {
    width: 100% !important;
  }

  /* Tab content */
  .modal-tab-content ul li {
    font-size: 14px !important;
    padding: 6px 0 !important;
  }

  /* Illustration image */
  .modal-illustration {
    margin-top: 16px !important;
    display: flex;
    justify-content: center;
  }

  .modal-illustration img {
    width: 80% !important;
    height: auto !important;
    max-width: 260px !important;
  }
  .modal-tab {
    white-space: nowrap;
    font-size: 14px;
    padding: 10px 14px;
  }
  
}
