/*partners programs*/
:root {
  --brand: #e2710e;
  --sub: #000000;
  --body: #516171;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  --navy: #e2710e;
  --blue: #000000;
  --blue-mid: #1E88E5;
  --blue-light: #42A5F5;
  --accent: #F59E0B;
  --accent2: #10B981;
  --white: #fff;
  --gray50: #F8FAFF;
  --gray100: #EEF2FF;
  --gray200: #DBEAFE;
  --gray600: #4B5563;
  --gray800: #1F2937;
  --gradient: linear-gradient(135deg, #0B1437 0%, #1565C0 60%, #0D47A1 100%);
  --gradient2: linear-gradient(135deg, #1565C0 0%, #42A5F5 100%)
}

/* HERO */
#hero {
  min-height: 100vh;
  background: var(--gradient);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 60px
}

.hero-bg-circles {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .08)
}

.c1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px
}

.c2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px
}

.c3 {
  width: 250px;
  height: 250px;
  top: 20%;
  left: 30%
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 24px;
  backdrop-filter: blur(8px)
}

.hero-badge i {
  color: var(--accent);
  font-size: 14px
}

.hero-title {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 24px
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent), #FCD34D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px
}

.btn-primary-hero {
  background: var(--accent);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-primary-hero:hover {
  background: #FCD34D;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, .4)
}

.btn-outline-hero {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px
}

.btn-outline-hero:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: rgba(255, 255, 255, .7)
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap
}

.hero-stat {
  text-align: left
}

.hero-stat .num {
  font-size: 28px;
  font-weight: 800;
  color: #fff
}

.hero-stat .lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  margin-top: 2px
}

.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.hero-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 14px;
  padding: 16px 20px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform .3s
}

.hero-card:hover {
  transform: translateX(-6px)
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0
}

.hero-card h6 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 3px
}

.hero-card p {
  color: rgba(255, 255, 255, .65);
  font-size: 11.5px;
  margin: 0
}

/* SECTION COMMONS */
/* section {
  padding: 90px 0
} */
@media (max-width: 768px) {

.hero-section{
    padding: 0px !important;
}
}
.partners-sections{
  padding: 90px 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gray100);
  border: 1px solid var(--gray200);
  border-radius: 30px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 16px
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px
}

.section-sub {
  font-size: 16px;
  color: var(--gray600);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto
}

/* PARTNER TYPES */
#partners {
  background: var(--gray50)
}

.partner-tabs .nav-link {
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  color: var(--gray600);
  font-weight: 500;
  font-size: 13.5px;
  padding: 10px 20px;
  margin: 4px;
  transition: all .25s
}

.partner-tabs .nav-link.active,
.partner-tabs .nav-link:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy)
}

.partner-content {
  display: none;
  animation: fadeSlide .35s ease
}

.partner-content.show {
  display: block
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.partner-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(21, 101, 192, .08);
  border: 1px solid #e8f0fe
}

.partner-card-header {
  padding: 36px;
  color: #fff;
  position: relative;
  overflow: hidden
}

.partner-card-header::before {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08)
}

.partner-card-body {
  padding: 32px
}

.commission-box {
  background: linear-gradient(135deg, var(--gray50), var(--gray100));
  border: 1px solid var(--gray200);
  border-radius: 14px;
  padding: 20px 24px
}

.commission-box .rate {
  font-size: 36px;
  font-weight: 800;
  color: var(--blue)
}

.who-list li {
  font-size: 14px;
  color: var(--gray600);
  padding: 6px 0;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  gap: 8px
}

.who-list li:last-child {
  border: none
}

.who-list li::before {
  content: '✓';
  color: var(--accent2);
  font-weight: 700;
  font-size: 13px
}

/* WHY PARTNER */
.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e8f0fe;
  transition: all .3s;
  height: 100%
}

.why-card:hover {
  border-color: var(--blue-mid);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(21, 101, 192, .12)
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px
}

/* SERVICES */
#services {
  background: var(--blue);
  position: relative;
  overflow: hidden
}

#services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(21, 101, 192, .4) 0%, transparent 70%)
}

.service-pill {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50px;
  padding: 10px 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .25s;
  cursor: default
}

.service-pill:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .35);
  transform: translateY(-2px)
}

.service-pill i {
  color: var(--accent);
  font-size: 15px
}

/* HOW IT WORKS */
.step-line {
  position: relative
}

.step-line::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 60px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-light), transparent);
  z-index: 0
}

.step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gradient2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(21, 101, 192, .35)
}

.step-content {
  padding-top: 8px
}

.step-content h5 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px
}

.step-content p {
  font-size: 14px;
  color: var(--gray600);
  line-height: 1.65
}

/* TIERS */
.tier-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e8f0fe;
  transition: transform .3s;
  height: 100%
}

.tier-card:hover {
  transform: translateY(-6px)
}

.tier-header {
  padding: 28px;
  text-align: center;
  color: #fff
}

.tier-badge-pill {
  display: inline-block;
  background: rgba(255, 255, 255, .2);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px
}

.tier-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px
}

.tier-sub {
  font-size: 12px;
  opacity: .8
}

.tier-body {
  background: #fff;
  padding: 24px
}

.tier-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 13.5px;
  color: var(--gray600)
}

.tier-feature:last-child {
  border: none
}

.tier-feature .check {
  color: var(--accent2);
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0
}

.tier-feature .cross {
  color: #d1d5db;
  font-size: 15px;
  flex-shrink: 0
}

.tier-featured {
  border: 2px solid var(--blue);
  position: relative
}

.tier-featured::after {
  content: 'MOST POPULAR';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 0 0 8px 8px;
  letter-spacing: .08em
}

/* ONBOARDING */
#onboarding {
  background: linear-gradient(180deg, var(--gray50) 0%, #fff 100%)
}

.onboard-card {
  background: #fff;
  border: 1px solid #e8f0fe;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all .3s
}

.onboard-card:hover {
  border-color: var(--blue-mid);
  box-shadow: 0 6px 24px rgba(21, 101, 192, .1)
}

.onboard-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient2);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

/* SUPPORT */
.support-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8f0fe;
  padding: 28px;
  height: 100%;
  transition: all .3s
}

.support-card:hover {
  border-color: var(--blue-light);
  box-shadow: 0 8px 30px rgba(21, 101, 192, .1);
  transform: translateY(-3px)
}

.support-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px
}

/* FAQ */
#faq {
  background: var(--gray50)
}

.faq-item {
  background: #fff;
  border: 1px solid #e8f0fe;
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow .25s
}

.faq-item.open {
  box-shadow: 0 4px 20px rgba(21, 101, 192, .1);
  border-color: var(--blue-mid)
}

.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
  user-select: none
}

.faq-question i {
  transition: transform .3s;
  color: var(--blue);
  font-size: 18px;
  flex-shrink: 0
}

.faq-item.open .faq-question i {
  transform: rotate(45deg)
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  padding: 0 24px
}

.faq-answer-inner {
  padding-bottom: 18px;
  font-size: 14px;
  color: var(--gray600);
  line-height: 1.7
}

.faq-item.open .faq-answer {
  max-height: 300px
}

/* FORM */
#apply {
  background: var(--gradient);
  position: relative;
  overflow: hidden
}

#apply::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(66, 165, 245, .2) 0%, transparent 70%)
}

.apply-form-wrap {
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 24px;
  padding: 40px
}

.form-label {
  color: rgba(255, 255, 255, .85);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px
}

.form-control,
.form-select {
  background: rgba(255, 255, 255, .08);
  border: 1.5px solid rgba(255, 255, 255, .2);
  color: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  transition: all .25s
}

.form-control::placeholder {
  color: rgba(255, 255, 255, .4)
}

.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .5);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .1);
  color: #fff;
  outline: none
}

.form-select {
  color: rgba(255, 255, 255, .85)
}

.form-select option {
  background: #0B1437;
  color: #fff
}

.btn-submit {
  background: var(--accent);
  color: var(--navy);
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all .25s;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px
}

.btn-submit:hover {
  background: #FCD34D;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, .4)
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  color: #fff
}

.form-success i {
  font-size: 56px;
  color: var(--accent2);
  display: block;
  margin-bottom: 16px
}

/* T&C */
.tc-section {
  margin-bottom: 28px
}

.tc-section h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray200)
}

.tc-section ul {
  list-style: none;
  padding: 0
}

.tc-section ul li {
  font-size: 13.5px;
  color: var(--gray600);
  padding: 7px 0;
  border-bottom: 1px solid #f9fafb;
  display: flex;
  gap: 10px
}

.tc-section ul li::before {
  content: '›';
  color: var(--blue);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1.3
}

/* FOOTER */
footer {
  background: var(--blue);
  padding: 50px 0 30px;
  color: rgba(255, 255, 255, .7)
}

.footer-logo {
  font-size: 24px;
  font-weight: 800;
  color: #fff
}

.footer-logo span {
  color: var(--accent)
}

footer a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s
}

footer a:hover {
  color: #fff
}

.footer-divider {
  border-color: rgba(255, 255, 255, .1);
  margin: 32px 0 24px
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
  text-decoration: none;
  transition: all .25s
}

.social-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px)
}

/* BACK TO TOP */
#btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(21, 101, 192, .4);
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s;
  z-index: 999
}

#btt.show {
  opacity: 1;
  transform: translateY(0)
}

#btt:hover {
  background: var(--blue-mid);
  transform: translateY(-2px)
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0)
}

.reveal-delay-1 {
  transition-delay: .1s
}

.reveal-delay-2 {
  transition-delay: .2s
}

.reveal-delay-3 {
  transition-delay: .3s
}

/* MOBILE */
@media(max-width:768px) {
  .hero-stats {
    gap: 20px
  }

  .btn-outline-hero {
    margin-left: 0 !important;
    margin-top: 12px
  }

  section {
    padding: 60px 0
  }

  .partner-tabs {
    flex-wrap: wrap
  }

  .step-line::before {
    display: none
  }
}

/* ── MOBILE OVERFLOW FIX ── */
@media (max-width: 991px) {

  /* Fix 1: Stop hero circles from overflowing on mobile */
  #hero {
    overflow: hidden;
  }

  .hero-bg-circles {
    overflow: hidden;
  }

  .c1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -80px;
  }

  .c2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -60px;
  }

  .c3 {
    width: 120px;
    height: 120px;
  }

  /* Fix 2: Prevent any section from creating horizontal scroll */
  #hero,
  #partners,
  #why,
  #services,
  #how,
  #support,
  #faq,
  #terms,
  #apply {
    max-width: 100vw;
    overflow-x: hidden;
  }
}

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
  transition: transform .25s
}

.wa-float:hover {
  transform: scale(1.1);
  color: #fff
}

/*new buttons*/
.partner-btn-wrapper {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 25px;
  flex-wrap: nowrap;
  /* Remove position:absolute from inline style in HTML too */
  position: static !important;
}

/* ── Desktop: center in right column ── */
@media (min-width: 992px) {
  .partner-btn-wrapper {
    justify-content: center;
    margin-bottom: 20px;
  }
}

/* ── Mobile: fix spacing ── */
@media (max-width: 991px) {
  .partner-btn-wrapper {
    justify-content: center;
    flex-wrap: nowrap;
    margin-bottom: 16px;
    gap: 10px;
  }

  .become-partner-btn,
  .partner-login-btn {
    padding: 10px 16px;
    font-size: 13px;
    white-space: nowrap;
  }
}

.partner-login-btn {
  text-decoration: none;
  padding: 12px 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: white;
  border-radius: 40px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: 0.3s;
}

.become-partner-btn {
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 700;
  color: #fff;
  background: #e2710e;
  ;
  /* background:linear-gradient(135deg,#f5a300,#ffcc33); */
  /* box-shadow:0 8px 25px rgba(245,163,0,0.35); */
  transition: 0.3s;
}

.partner-login-btn:hover {
  transform: translateY(-2px);
  background: white;
  color: black;
}

.become-partner-btn:hover {
  transform: translateY(-2px);
  color: white;
}


.hero-left{
    color:#fff;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 24px;
    border-radius:50px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    color:#fff;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:30px;
}

.hero-title{
    font-size:72px;
    font-weight:800;
    line-height:1.1;
    color:#fff;
    margin-bottom:30px;
}

.hero-title span{
    display:block;
    color:#76b6ff;
}

.hero-description{
    max-width:700px;
    font-size:28px;
    line-height:1.8;
    color:rgba(255,255,255,0.85);
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-demo{
    background:#fff;
    color:#2563eb;
    padding:18px 38px;
    border-radius:18px;
    font-size:20px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.btn-demo:hover{
    background:#f8fafc;
    color:#2563eb;
}

.btn-tour{
    border:1px solid rgba(255,255,255,.3);
    color:#fff;
    padding:18px 38px;
    border-radius:18px;
    font-size:20px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.btn-tour:hover{
    background:rgba(255,255,255,.08);
    color:#fff;
}

@media(max-width:991px){

    .hero-title{
        font-size:48px;
    }

    .hero-description{
        font-size:18px;
        line-height:1.7;
    }

    .btn-demo,
    .btn-tour{
        width:100%;
        text-align:center;
    }
}


