body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

html {
  overflow-x: hidden;
  width: 100%;
}

/* ========== HERO SLIDER (PREMIUM STYLE) ========== */
.hero-slider {
  width: 100%;
  height: 100vh;
  min-height: 800px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-slider .swiper-slide {
  overflow: hidden;
}

/* SLIDE INNER (background image container) */
.slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  will-change: transform;
  background-repeat: no-repeat;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.bg-slide-1 {
  background-image: url("../images/content/platform-about.png");
}

.bg-slide-2 {
  background-image: url("../images/content/hero-chart.webp");
}

/* Overlay with gradient (improves text readability, premium look) */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(8, 32, 70, 0.8) 0%,
    rgba(8, 32, 70, 0.4) 100%
  );
  z-index: 1;
  backdrop-filter: blur(2px);
}

/* Container for content */
.hero-slider .container {
  max-width: 1300px;
  width: 100%;
  padding: 220px 40px 120px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Titles & text styling (identical to reference slider but refined for brand) */
.hero-slider .slide-title {
  max-width: 900px;
  margin-bottom: 25px;
}

.hero-slider .slide-title h2 {
  font-family: "Inter", "Poppins", sans-serif;
  font-size: 83px;
  font-weight: 800;
  line-height: 1.05;
  color: #ffffff;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-slider .slide-title .brand-highlight {
  font-size: 22px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 15px;
  display: inline-block;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-slider .slide-text {
  max-width: 700px;
  margin-bottom: 40px;
}

.hero-slider .slide-btns {
  margin-top: 10px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .hero-slider .slide-btns {
    justify-content: center;
  }
}

.hero-slider .slide-text p {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Buttons - Premium Gale Prime Glow Style */
.theme-btn-s2 {
  position: relative;
  padding: 16px 48px;
  border: none;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1a1a1a;
  cursor: pointer;
  background: linear-gradient(
    180deg,
    #fff3a6 0%,
    #ffd85f 35%,
    #ffbf2f 70%,
    #d78a10 100%
  );
  box-shadow:
    0 4px 15px rgba(215, 138, 16, 0.2),
    0 0 20px rgba(255, 204, 51, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
}

/* Inner border */
.theme-btn-s2::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
  z-index: 1;
}

/* Moving shine */
.theme-btn-s2::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -150px;
  width: 100px;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  transform: rotate(25deg);
  animation: shine-btn 3.5s linear infinite;
  z-index: 2;
}

@keyframes shine-btn {
  0% {
    left: -150px;
  }

  100% {
    left: 120%;
  }
}

.theme-btn-s2:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 25px rgba(215, 138, 16, 0.4),
    0 0 30px rgba(255, 204, 51, 0.4);
  color: #1a1a1a;
}

.theme-btn-s2:active {
  transform: scale(0.98);
}

/* Navigation Arrows (Premium Style: circle border, appear on hover) */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(8, 32, 70, 0.5);
  backdrop-filter: blur(5px);
  text-align: center;
  transition: all 0.3s ease;
  opacity: 1;
  visibility: visible;
}

.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover {
  background: var(--grad-gold);
  border-color: var(--clr-gold);
  transform: scale(1.1);
}

.hero-slider .swiper-button-prev:hover:after,
.hero-slider .swiper-button-next:hover:after {
  color: var(--clr-navy);
}

.hero-slider .swiper-button-prev {
  left: 30px;
}

.hero-slider .swiper-button-next {
  right: 30px;
}

.hero-slider .swiper-button-prev:after,
.hero-slider .swiper-button-next:after {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}

/* Pagination bullets (premium style, match reference) */
.hero-slider .swiper-pagination {
  text-align: center;
  bottom: 45px;
}

.hero-slider .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #ffffff;
  opacity: 0.5;
  margin: 0 8px;
  transition: all 0.2s;
  border-radius: 10px;
}

.hero-slider .swiper-pagination-bullet-active {
  width: 40px;
  background: var(--clr-gold);
  opacity: 1;
  border-radius: 10px;
}

/* Stats Footer (Gale Prime enhanced design) */
.stats-footer {
  position: relative;
  z-index: 12;
  background: var(--clr-navy);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(197, 160, 33, 0.2);
}

.responsive-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stats-item {
  transition: transform 0.2s;
}

.stats-item:hover {
  transform: translateY(-5px);
}

.banner-footer-value {
  font-size: 38px;
  font-weight: 800;
  background: var(--grad-gold);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-family: "Inter", "Poppins", sans-serif;
}

.banner-footer-title {
  font-size: 15px;
  font-weight: 500;
  color: #ddd;
  letter-spacing: 0.5px;
}

/* Responsive Tweaks */
@media (max-width: 1200px) {
  .hero-slider .slide-title h2 {
    font-size: 64px;
  }

  .hero-slider .slide-text p {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .hero-slider {
    height: 70vh;
    min-height: 550px;
  }

  .hero-slider .container {
    padding: 60px 30px;
    text-align: center;
    align-items: center;
  }

  .hero-slider .slide-title {
    margin: 0 auto 15px;
  }

  .hero-slider .slide-text {
    margin: 0 auto 25px;
  }

  .hero-slider .slide-title h2 {
    font-size: 48px;
  }

  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 65vh;
    min-height: 500px;
  }

  .hero-slider .slide-title h2 {
    font-size: 38px;
  }

  .hero-slider .slide-text p {
    font-size: 17px;
  }

  .hero-slider .container {
    padding: 40px 20px;
  }

  .hero-slider .slide-title .brand-highlight {
    font-size: 14px;
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 70vh;
    /* min-height: 460px; */
  }

  .hero-slider .slide-title h2 {
    font-size: 30px;
  }

  .hero-slider .slide-text p {
    font-size: 15px;
  }

  .theme-btn-s2 {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 580px) {
  .hero-slider .slide-title h2 {
    font-size: 32px;
  }

  .hero-slider .slide-text p {
    font-size: 14px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* ========== SECTION 2: Why partner with us? ========== */
#home-section-2 {
  padding: 100px 0px;
  background: #ffffff;
}

.section-2-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: var(--clr-navy);
  word-wrap: break-word;
}

.section-2-title span {
  font-weight: 800;
}

.section-2-bg {
  background: #f6f9ff;
  border-radius: 48px;
  padding: 60px 20px;
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

.swiper-why-partner {
  overflow: hidden;
  width: 100%;
}

.swiper-why-partner .swiper-slide {
  display: flex;
  height: auto;
}

.partner-card {
  display: flex;
  justify-content: center;
  height: auto;
  /* Allow swiper to set height */
}

.section-2-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  margin: 0 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.section-2-card:hover {
  transform: translateY(-6px);
}

.section-2-img-container {
  margin-bottom: 24px;
}

.section-2-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.section-2-desc-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--clr-navy);
}

.section-2-desc p {
  font-size: 15px;
  color: #585858;
  line-height: 1.4;
}

/* custom navigation for section-2 */
.swiper-button-prev-why-partner,
.swiper-button-next-why-partner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
  border: none;
  color: var(--clr-navy);
}

.swiper-button-prev-why-partner {
  left: 10px;
}

.swiper-button-next-why-partner {
  right: 10px;
}

.swiper-button-prev-why-partner:hover,
.swiper-button-next-why-partner:hover {
  background: var(--clr-gold);
  color: var(--clr-navy);
}

@media (max-width: 768px) {
  #home-section-2 {
    padding: 60px 0px;
  }

  .section-2-title {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .section-2-bg {
    padding: 40px 10px;
    border-radius: 32px;
  }

  .section-2-card {
    padding: 24px 16px;
    margin: 0 5px;
  }

  .section-2-img {
    width: 80px;
    height: 80px;
  }

  .section-2-desc-title {
    font-size: 18px;
  }

  .section-2-desc p {
    font-size: 14px;
  }

  .swiper-button-prev-why-partner,
  .swiper-button-next-why-partner {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 480px) {
  .section-2-title {
    font-size: 28px;
  }
}

/* ========== SECTION 3: How to Become a Partner? ========== */
#home-section-3 {
  display: flex;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 100px auto;
  padding: 0 20px;
  gap: 60px;
  align-items: center;
}

.section-3-left-section {
  flex: 1;
}

.section-3-left-section h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: 32px;
  line-height: 1.2;
}

.section-3-right-section {
  flex: 1.5;
  position: relative;
}

.step-by-step {
  display: flex;
  gap: 32px;
  margin-bottom: 50px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.step-by-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 32px;
  top: 70px;
  width: 2px;
  height: calc(100% - 20px);
  background: linear-gradient(
    to bottom,
    var(--clr-navy) 0%,
    rgba(8, 32, 70, 0.1) 100%
  );
  z-index: -1;
}

.numbering {
  background: #ffffff;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--clr-navy);
  box-shadow: 0 10px 20px rgba(8, 32, 70, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.numbering::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: rgba(8, 32, 70, 0.05);
  z-index: 0;
}

.numbering-span {
  font-size: 24px;
  font-weight: 800;
  color: var(--clr-navy);
  z-index: 1;
}

.step-by-step:hover .numbering {
  background: var(--clr-navy);
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(8, 32, 70, 0.2);
}

.step-by-step:hover .numbering-span {
  color: #ffffff;
}

.explanation h4 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--clr-navy);
  text-transform: uppercase;
}

.explanation p {
  color: #585858;
  font-size: 17px;
  line-height: 1.6;
}

.join-now-trigger-mobile {
  display: none;
}

@media (max-width: 992px) {
  #home-section-3 {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
    margin: 40px auto;
    gap: 40px;
  }

  .section-3-left-section h2 {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .section-3-right-section {
    width: 100%;
    margin-top: 0;
    text-align: left;
  }

  .step-by-step {
    gap: 20px;
    margin-bottom: 30px;
  }

  .step-by-step:not(:last-child)::after {
    left: 20px;
    top: 50px;
    height: calc(100% - 10px);
  }

  .numbering {
    width: 42px;
    height: 42px;
    border-width: 1px;
  }

  .numbering-span {
    font-size: 16px;
  }

  .explanation {
    padding-top: 5px;
  }

  .explanation h4 {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .explanation p {
    font-size: 15px;
  }

  .join-now-trigger-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  #home-section-3 {
    padding: 40px 15px;
  }

  .section-3-left-section h2 {
    font-size: 28px;
  }
}

/* ========== SECTION 4: Choose the Right Partner Account ========== */
#prime-partner {
  background: #010a1d;
  padding: 100px 0px;
}

.section-4-container {
  /* max-width: 1300px; */
  max-width: 100%;
  margin: 0 auto;
  text-align: start;
}
.partner-program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.partner-program-grid .div1 {
  padding: 0 50px;
}
.prime-partner-content-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.prime-partner-content-grid .grid-data {
  border: 1px solid #ffbf2f;
  border-radius: 10px;
  padding: 10px;
}
.prime-partner-content-grid .grid-data .img-div {
  display: flex;
  justify-content: center;
}
.prime-partner-content-grid .grid-data .img-div img {
  max-width: 80px;
}
.prime-partner-content-grid .grid-data .content-div {
  margin-top: 10px;
}
.prime-partner-content-grid .grid-data .content-div p {
  font-size: 15px;
  color: #ddd;
  text-transform: capitalize;
  text-align: center;
}
.section-4-container h2 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 16px;
  color: white;
}

.section-4-container h2 span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-4-container h3 {
  font-size: 20px;
  font-weight: 500;
  color: white;
  margin-bottom: 10px;
}
.section-4-container h3 span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-4-card-lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.prime-partner-desc {
  margin-top: 30px;
  /* max-width: 600px; */
}
.prime-partner-desc p {
  font-size: 15px;
  color: #ddd;
  line-height: 1.5;
  margin-bottom: 10px;
}

.section-4-card {
  background: white;
  border-radius: 32px;
  padding: 40px 32px;
  width: 100%;
  max-width: 380px;
  text-align: left;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  border: 1px solid rgba(8, 32, 70, 0.05);
}

.section-4-card:hover {
  transform: translateY(-10px);
  border-color: var(--clr-gold);
}

.desc-container h4 {
  font-size: 28px;
  font-weight: 800;
  color: var(--clr-navy);
  margin-bottom: 16px;
}

.desc-container p {
  font-size: 15px;
  color: #585858;
  line-height: 1.5;
  margin-bottom: 24px;
}

.section-4-card ul {
  list-style: none;
  margin-bottom: 32px;
}

.section-4-card ul li {
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2c2c2c;
}

.section-4-card ul li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--clr-gold);
}

.section-4-card ul li b {
  font-weight: 700;
  color: var(--clr-navy);
}

.learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--clr-navy);
  text-decoration: none;
  transition: 0.3s;
}

.learn-more-link:hover {
  color: var(--clr-gold);
}
@media (max-width: 1024px) {
  .partner-program-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .partner-program-grid .div1{
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  #home-section-4 {
    padding: 60px 15px;
  }

  .section-4-container h2 {
    font-size: 32px;
  }

  .section-4-container h3 {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .section-4-card {
    max-width: 100%;
    padding: 30px 24px;
    border-radius: 24px;
  }

  .desc-container h4 {
    font-size: 24px;
  }

  .section-4-card ul {
    margin-bottom: 24px;
  }

  .section-4-card ul li {
    padding: 10px 0;
    font-size: 14px;
  }
  .prime-partner-content-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .section-4-container h2 {
    font-size: 28px;
  }
}

/* Ultra Small Devices */
@media (max-width: 375px) {
  .hero-slider .slide-title h2 {
    font-size: 28px;
  }

  .hero-slider .slide-text p {
    font-size: 14px;
  }

  .section-2-title {
    font-size: 24px;
  }

  .section-3-left-section h2 {
    font-size: 24px;
  }

  .section-4-container h2 {
    font-size: 24px;
  }

  .numbering {
    width: 36px;
    height: 36px;
  }

  .step-by-step:not(:last-child)::after {
    left: 17px;
  }
  .prime-partner-content-grid{
    grid-template-columns: repeat(1, 1fr);
  }
}
