/* ======================================= main settings ================================ */
.usercentrics-error,
#cookies-policy {
  display: none !important;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-VariableFont_opsz,wght.ttf")
    format("truetype-variations");
  font-weight: 100 900;
  /* supports all weights */
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-gold: linear-gradient(180deg, #d18815 54.93%, #1c1309 111.82%);

  --dark-bg: #000;
  --card-bg: rgba(212, 165, 116, 0.1);
  --text-light: #ffffff;
  --text-muted: #cccccc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--dark-bg);
  color: var(--text-light);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.fab-menu .rounded-circle {
  width: 50px;
  height: 50px;
}

.container {
  max-width: 1920px;
  padding: 0 150px;
}

.fab-container {
  display: none;
}

/* new */

/* .smooth-scroll {
  will-change: transform;
} */
/* ======================================= settings setion end============================= */

/* Width of the scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

/* Track (the background) */
::-webkit-scrollbar-track {
  background: transparent; /* transparent track */
}

/* Handle (thumb) with gradient */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d18815 54.93%, #1c1309 111.82%);
  border-radius: 10px;
}

/* Handle on hover (stronger gradient) */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #d18815 54.93%, #1c1309 111.82%);
}

/* ======================================== navbar animation =============================== */
.navbar {
  opacity: 0;
  pointer-events: none;
  /* optional: disable clicks */
}

.slide-navbar {
  transition: background 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  background: rgba(0, 0, 0, 0.9);
}

.slide-logo,
.slide-links,
.slide-right {
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 1;
}

.slide-navbar.hide {
  opacity: 0;
  background: rgba(0, 0, 0, 0);
}

.slide-logo.hide {
  transform: translateX(-100%);
  opacity: 0;
}

.slide-links.hide {
  transform: translateY(-100%);
  opacity: 0;
}

.slide-right.hide {
  transform: translateX(100%);
  opacity: 0;
}

.mbl-navbar .logo {
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: translateY(-100%);
  /* start hidden above */
  opacity: 0;
  height: 40px !important;
  width: 40px !important;
}

.mbl-navbar .logo.is-visible {
  transform: translateY(0);
  /* slide into place */
  opacity: 1;
}

/* ============================================== side privacy policy page toggle button ============ */

.fab-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1050;
}

.fab-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.fab-container.open .fab-menu {
  opacity: 1;
  max-height: 500px;
  transform: translateY(0);
}

/* ========================================= fixed side buttons ================================ */

.fixed-widget {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 999;
}

.fixed-widget > a {
  position: relative;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: linear-gradient(180deg, #d18815, #1c1309);
  color: #fff;
  padding: 10px 15px;
  border-radius: 0px 10px 10px 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  z-index: 1;
  transition: box-shadow 0.3s ease, color 0.3s ease;
  margin-bottom: 20px;
}

.fixed-widget a:hover {
  box-shadow: 0 0 15px 4px #d18815, 0 0 25px 8px #ffc107;
  color: #fff;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.social-links .social-fab-btn {
  border-radius: 10px 0 0 10px;
}

.social-fab-btn {
  width: 45px;
  height: 45px;
  border-radius: 10px 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  background: #333;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.social-fab-btn.youtube,
.social-fab-btn.tiktok,
.social-fab-btn.whatsapp,
.social-fab-btn.instagram {
  background: #495057;
  text-decoration: none;
}

.social-fab-btn.youtube i,
.social-fab-btn.whatsapp i,
.social-fab-btn.tiktok i,
.social-fab-btn.instagram i {
  color: #d18815;
}

.social-fab-btn:hover {
  filter: brightness(1.1);
}

/* ----- fixed side button mbl section---- */

.social-fab-container {
  display: none;
}

@media (max-width: 767px) {
  .fixed-widget {
    top: 35%;
  }

  .social-links {
    display: none;
  }

  .social-fab-container {
    display: block;
  }

  .social-fab-container {
    position: fixed;
    bottom: 80px;
    right: 0px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .social-fab-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  .social-fab-container.open .social-fab-menu {
    opacity: 1;
    max-height: 500px;
    transform: translateY(0);
  }

  .social-fab-btn {
    width: 45px;
    height: 45px;
    border-radius: 10px 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    background: #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
  }

  .social-fab-btn.instagram {
    background: #495057;
    text-decoration: none;
  }

  .social-fab-btn.facebook {
    background: #495057;
    text-decoration: none;
  }

  .social-fab-btn.tiktok,
  .social-fab-btn.whatsapp {
    background: #495057;
    text-decoration: none;
  }

  .social-fab-btn.instagram i {
    color: #d18815;
  }

  .social-fab-btn.facebook i {
    color: #d18815;
  }

  .social-fab-btn.whatsapp i {
    color: #d18815;
  }

  .social-fab-btn.tiktok i {
    color: #d18815;
  }

  .social-fab-btn:hover {
    filter: brightness(1.1);
  }

  .social-main-fab {
    background: #d18815;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 10px 0 0 10px;
    font-size: 22px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    /* transition: transform 0.3s ease; */
  }

  .social-main-fab i {
    display: inline-block;
    /* so transform works */
    /* transition: transform 0.3s ease; */
    /* transform: rotate(0deg); */
    /* default */
  }

  /* Reset: don’t rotate the whole button */
  .social-fab-container.open .social-main-fab {
    transform: none;
  }

  /* Rotate only the icon inside */
  /* .social-fab-container.open .social-main-fab i {
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  } */
}

/* ======================================== scroll to top button ==================================== */

#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 0;
  z-index: 999;
  background: #d18815;
  /* customize */
  color: #fff;
  border: none;
  border-radius: 10px 0 0 10px;
  width: 45px;
  height: 45px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: none;
  /* hidden by default */
  transition: background 0.3s;
}

#scrollTopBtn:hover {
  background: #1c1309;
  box-shadow: 0 0 15px 4px #d18815, 0 0 25px 8px #ffc107;
}

/* =========================================== front section on load ========================== */

#firstHero {
  background: #000;
  color: white;
  position: fixed;
  /* <--- fixed instead of absolute */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  /* make sure it’s above everything */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow-x: hidden;
}

.lottie-player {
  width: 300px;
  height: auto;
  margin: 0 auto;
  margin-top: -20%;
  z-index: 9999;
  position: relative;
}

#firstHero .flex-column {
  height: 100vh;
  /* ✅ sirf pehle div ko full height milegi */
}

#firstHero h1.hero-title {
  margin: 0;
  color: var(--primary-gold);
  text-align: center;
  /* margin-bottom: 1rem; */

  position: relative;
  display: inline-block;
}

#firstHero img {
  width: 300px;
}

.fadestrip {
  background: url(../images/strip.png);
  background-repeat: repeat-x;
  position: absolute;
  top: -1px;
  width: 100%;
  z-index: 99;
  height: 135px;
  background-size: contain;
  transform: rotate(180deg);
}

.fadestrip-bottom {
  background: url(../images/strip.png);
  background-repeat: repeat-x;
  position: absolute;
  bottom: -2px;
  width: 100%;
  z-index: 99;
  height: 135px;
  background-size: contain;
}

/* .hero-down-arrow-img {
  width: 20px !important;
  height: 20px;
} */

/* ======================================= Navigation ===================================== */
.navbar {
  /* background: rgba(0, 0, 0, 0.9) !important; */
  background: transparent !important;
  /* backdrop-filter: blur(10px); */
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-gold) !important;
  /*min-width: 213px;*/
  min-width: 5%;
}

/*.desktop-right-cont {
  min-width: 213px
}*/

.navbar-brand .logo {
  width: 50px;
  height: 50px;
}

.navbar-toggler {
  /* border: 2px solid var(--primary-gold);
  padding: 0.5rem; */
  border: none;
  padding: 0.5rem;
  border-radius: 50%;
  background: #ffffff1a;
}

.navbar-toggler-icon {
  /*background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D4A574' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); */
  background: url(../images/hamburger.png) center no-repeat;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(212, 165, 116, 0.25);
}

.nav-pills {
  background: var(--primary-gold);
  border-radius: 50px;
  padding: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  /* ✅ allows wrapping */
  justify-content: center;
  /* ✅ keeps it centered */
  max-width: 100%;
  /* ✅ no overflow */
}

.nav-pills .nav-link {
  color: #fff !important;
  border-radius: 25px;
  margin: 0 0.25rem;
  transition: all 0.3s ease;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  cursor: pointer;
}

.nav-pills .nav-link:hover,
.nav-pills .nav-link.active {
  background: rgb(255 255 255 / 30%);
  color: var(--dark-bg);
}

.btn-contact {
  background: var(--primary-gold);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: #c19660;
  transform: translateY(-2px);
}

.dropdown-item:focus, .dropdown-item:hover {
  background-color: #d18815;
  color: #fff;
}

/* Added mobile responsive styles for navbar */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(0, 0, 0, 0.95);
    border-radius: 15px;
    margin-top: 1rem;
    padding: 1rem;
  }

  .nav-pills {
    background: transparent;
    flex-direction: column;
    padding: 0;
  }

  .nav-pills .nav-link {
    margin: 0.25rem 0;
    text-align: center;
  }

  /* .d-flex.align-items-center {
    flex-direction: column;
    margin-top: 1rem;
    gap: 1rem;
  } */
}

@media (max-width: 768px) {
  .navbar-collapse {
    background: rgba(0, 0, 0, 0.95);
    border-radius: 15px;
    margin-top: 1rem;
    padding: 1rem;
    width: 100%;
    /* ✅ full width */
  }

  .nav-pills {
    background: transparent;
    flex-direction: column;
    align-items: stretch;
    /* ✅ full-width buttons */
    padding: 0;
  }

  .nav-pills .nav-link {
    margin: 0.5rem 0;
    text-align: center;
    width: 100%;
    /* ✅ avoid width issues */
  }

  .team-wrapper {
    display: none;
  }

  .team-timeline {
    padding: 0 !important;
  }

  .hero-content {
    border-radius: 150px 150px 0 0;
  }
}

/* ========================================nav sections ends ================================ */
/* ===================================== Hero Section ========================================*/

.hero-section {
  /* min-height: 90vh; */
  display: flex;
  align-items: center;
  position: relative;
  padding: 2rem 0 0;
}

/* .hero-section.home.service-section-main {
  min-height: auto !important;
} */
.service-section-main .service-content-cont {
  max-width: 60%;
}

/* new-code */
.team-sec-btn {
  padding: 17px 33px !important;
  margin-top: 28px !important;
}

/* .... */
.hero-logo {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 30vh;
  margin-top: 5%;
}

.logo-creator-company {
  margin-bottom: 40px;
}

.hero-content {
  border-radius: 260px 260px 0 0;
  /* background: var(--dark-bg); */
  padding: 62px 0 0 0;
  border: none;
  border: 2px solid #d18815;
  border-bottom: none;
  text-align: center;
  min-height: 50vh;
}

.gradient-text {
  background: linear-gradient(180deg, #d18815 54.93%, #1c1309 111.82%);
  -webkit-background-clip: text;
  /* for Safari/Chrome */
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* for Firefox */
  color: transparent;
}

/* .container {
    width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
} */

.golden-glow {
  /* background: radial-gradient(circle, rgba(212, 165, 116, 0.3) 0%, transparent 70%); */
  background: url("../images/golden-glow.png") no-repeat top center/cover;
  position: absolute;
  width: 100%;
  height: 100%;
  /* border-radius: 50%; */
  pointer-events: none;
}

.golden-glow.golden-glow-bottom {
  transform: rotate(180deg);
}

.glow-up {
  top: 0;
  left: 0;
  right: 0;
}

.glow-right {
  top: 20%;
  right: -150px;
}

.hero-title {
  font-size: clamp(35px, 5vw, 75px);
  font-weight: 800;
  color: var(--primary-gold);
  text-align: center;
  /* margin-bottom: 1rem; */

  position: relative;
  display: inline-block;
}

.why-tiktok-shop-service-card .uni-container {
  width: 100%;
}

.why-tiktok-shop-service-card .hero-title {
  font-size: 50px;
  font-weight: 800;
  color: var(--primary-gold);
  text-align: center;
  /* margin-bottom: 1rem; */

  position: relative;
  display: inline-block;
}

/* .hero-title::before,
.hero-title::after {
  content: "";
  display: inline-block;
  width: 128px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}


.hero-title::before {
  background-image: url("../images/arrowleft.png");
  margin-right: 8px;
}

.hero-title::after {
  background-image: url("../images/arrowright.png");
  margin-left: 8px;
} */
/* /////////////////////////////////////////////////////////////////////////////////////// Update code */
.hero-title-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* new */
.home-hero-title-container::before,
.home-hero-title-container::after {
  content: "";
  display: inline-block;
  width: 128px;
  /*adjust size */
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.home-hero-title-container::before {
  background-image: url("../images/arrowleft.png");
  margin-right: 8px;
  /*space between arrow & text */
}

.home-hero-title-container::after {
  background-image: url("../images/arrowright.png");
  margin-left: 8px;
}

/* new */

/* /////////////////////////////////////////////////////////////////////////////////////// Update code */
/* /////////////////////////////////////////////////////////////////////////////////////// Update code */
.uni-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(200px, 60vw, 650px);
  margin: 0 auto;
  text-align: center;
  /* new */
  position: relative;
  opacity: 0;
  /* start hidden */
  transform: translateY(20px);
  /* slide up effect */
  transition: opacity 0.6s ease, transform 0.6s ease;
  /* new */
}

.uni-container-tik-tok {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(200px, 60vw, 100%);
  margin: 0 auto;
  text-align: center;
}

.service-section-main .uni-container {
  width: clamp(200px, 60vw, 100%);
}

.tiktok-shop-main-content .uni-container {
  width: clamp(200px, 60vw, 950px);
}

.tiktok-shop-main-content .dicon-benefits {
  max-width: 300px;
}

.uni-container::before,
.uni-container::after {
  content: "";
  display: inline-block;
  width: 128px;
  /*adjust size */
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  /* new */
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
  /* new */
}

.uni-container::before {
  background-image: url("../images/arrowleft.png");
  margin-right: 8px;
  /*space between arrow & text */
  /* new */
  transform: translateX(-200px);
}

.uni-container::after {
  background-image: url("../images/arrowright.png");
  margin-left: 8px;
  /* new */
  transform: translateX(200px);
}

/* new */
.uni-container.animate {
  opacity: 1;
  transform: translateY(0);
}

.uni-container.animate::before {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
}

.uni-container.animate::after {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

/* new */

/* /////////////////////////////////////////////////////////////////////////////////////// Update code */

.loader-para p {
  font-weight: 300;
  font-size: 27px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 0 !important;
}

.loader-para {
  border: 2px solid #d18815;
  border-radius: 30px;
  background: #6868681a;
  padding: 20px 40px;
  /* width: 400px; */
}

.loader-first-h h2 {
  font-size: 42px;
}

.mbl-wrap-break {
  display: none;
}

.hero-loader-subtitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-subtitle {
  font-weight: 600;
  font-size: 35px;
  line-height: 45px;
  letter-spacing: 0.42px;
  text-align: center;
  vertical-align: middle;

  width: 40%;
  margin: 20px auto;
}

.hero-description {
  font-weight: 300;
  font-size: 20px;
  line-height: 31px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;

  width: 40%;
  margin: 20px auto;
  color: #cccccc;
}

.loader-gif-left-leaf {
  transform: scaleX(-1);
}

.loader-heading-with-gif {
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-gif-right-leaf img,
.loader-gif-left-leaf img {
  width: 100px !important;
  height: 143px;
}

/* /////////////////////////////////////////////////////////////////////////////////////// Update code */
.btn-who-we-are {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.04) 0%,
    rgba(209, 136, 21, 0.16) 100%
  );
  border: 1px solid #d1881530;
  color: var(--primary-gold);

  /* ✅ responsive padding */
  padding: clamp(16px, 3vw, 31px) clamp(32px, 6vw, 67px);

  border-radius: 50px;

  /* ✅ responsive font-size */
  font-size: clamp(16px, 2vw, 29px);

  font-weight: 700;
  line-height: 1.2;
  /* ✅ better than fixed px */
  transition: all 0.3s ease;

  display: inline-flex;
  align-items: center;
  gap: clamp(6px, 1.5vw, 12px);
  /* ✅ responsive gap */
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

/* /////////////////////////////////////////////////////////////////////////////////////// Update code */

.team-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 45px 0;
}

/* ============ animation for hero section ============ */
.hero-top-glow-animate {
  overflow: hidden;
}

.home .golden-glow,
.hero-top-glow-animate .animate-wrapper {
  transform: translateY(-120%);
  opacity: 0;
  transition: transform 1.5s ease-out, opacity 1.5s ease-out;
}

.hero-top-glow-animate .golden-glow,
.hero-top-glow-animate .animate-wrapper {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

.hero-bottom-content-animate {
  transform: translateY(0);
}

.hero-bottom-content-animate {
  overflow: hidden;
}

.hero-bottom-content-animate .animate-wrapper {
  transform: translateY(100%);
  opacity: 0;
  transition: transform 1.5s ease-out, opacity 1.5s ease-out;
}

.hero-bottom-content-animate .animate-wrapper {
  transform: translateY(0);
  opacity: 1;
}

/* ===========animation for hero section ends ================ */

/* ====================================== hero section ends =================================== */

/* =======================================Team Section ===================================*/

.team-timeline {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  z-index: 1;
  border: 2.3px solid transparent;
  border-top: none;
  border-image: linear-gradient(
      180deg,
      #d18815 0%,
      /* 🔶 top full color */ rgba(209, 136, 21, 0) 100%
        /* 🔽 bottom fade-out */
    )
    1;
  border-bottom: 0;
}

/* .team-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/bgteam.png") center repeat-y;
  background-size: contain;
  opacity: 0.1;
  z-index: -1;
} */

/* ============================== team cards animation============================= */

.team-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Doors closed initially */
.team-left,
.team-right {
  transition: transform 0.8s ease;
  display: flex;
}

.team-right {
  justify-content: right;
}

.team-left {
  justify-content: left;
}

.team-left img,
.team-right img {
  width: 100%;
  max-width: 416px;
  transition: transform 0.8s ease;
}

.wasim-rohel-text {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.95);
  filter: blur(12px);
  transition: opacity 0.6s ease, transform 0.8s ease, filter 1.2s ease;
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
  z-index: 2;
}

/* Active state (triggered only once by JS) */
.team-content.revealed .team-left {
  transform: translateX(-150px);
}

.team-content.revealed .team-right {
  transform: translateX(150px);
}

.team-content.revealed .wasim-rohel-text {
  opacity: 1;
  filter: blur(0);
  transform: translate(-50%, -50%) scale(1);
}

/* =============================== ends ============================= */

.team-name {
  font-weight: 800;
  font-size: 94px;
  line-height: 110px;
  letter-spacing: 0.42px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 7.89%, #999999 115.79%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-age {
  color: var(--text-muted);
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
}

.team-title {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--primary-gold);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.timeline-item {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--primary-gold);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  position: relative;
}

.timeline-year {
  color: var(--primary-gold);
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* Journey Section */
.journey-section {
  padding: 2rem 0 10rem;
  position: relative;
}

.timeline-container {
  position: relative;
  /* max-width: 1200px; */
  max-width: 98%;
  margin: 0 auto;
}

.timeline-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  text-align: center;
}

.timeline-year-badge img {
  width: 100%;
  height: auto;
}

.rectangle-year,
.timeline-year-badge {
  width: 28%;
}

.timeline-year-content {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  overflow: hidden;
  /* text bahar na nikle */
  padding: 10px 20px;
  /* rectangle ke andar space */
  box-sizing: border-box;
  text-align: center;
}

.timeline-year-content h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--text-light);
  margin: 0;
}

.waism-rectangle {
  text-align: right !important;
}

/* Today Changing */
.rectangle {
  text-align: left;
  text-transform: uppercase;
}

.rectangle h4 {
  font-size: 22px;
  font-weight: 700;
  line-height: 36px;
}

.rectangle-right {
  text-align: right;
}

.timeline-year-content p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  margin: 5px 0 0;
  line-height: 24px;
}

.rectangle {
  background: url("../images/rectangle-shape.png") no-repeat center;
  background-size: 100% 100%;
  width: 70%;
  /* rectangle image ke width ke hisaab se set karein */
  /* height: 115px; */
  /* rectangle image ke height ke hisaab se set karein */
}

.rectangle-left {
  background: url("../images/right-cut-rectangle-shape.png") no-repeat center;
  background-size: 100% 100%;
  width: 70%;
  height: 155px;
  text-align: left;
  /* height: auto; */
  background-size: 100% 100%;
}

.rectangle-right {
  background: url("../images/left-cut-rectangle-shape.png") no-repeat center;
  background-size: 100% 100%;
  width: 70%;
  height: 155px;
  text-align: right;
  align-items: end;
  /* height: auto; */
  background-size: 100% 100%;
}

.vertical-text {
  writing-mode: vertical-rl;
  /* vertical layout */
  text-orientation: upright;
  /* keep letters upright */
  display: flex;
  align-items: flex-start;
  /* top se start kare */
  justify-content: flex-start;
}

.team-empire-text {
  font-size: 100px;
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
  color: white;
  /* ensure visible */

  -webkit-mask-image: radial-gradient(
    circle 120px at var(--x, 50%) var(--y, 50%),
    /* ✅ chhota size */ rgba(0, 0, 0, 1) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-repeat: no-repeat;

  mask-image: radial-gradient(
    circle 120px at var(--x, 50%) var(--y, 50%),
    /* ✅ chhota size */ rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 0) 50%
  );
  mask-repeat: no-repeat;

  transition: -webkit-mask-position 0.15s ease-out, mask-position 0.15s ease-out;
  /* ✅ smoothness */
}

/* ================== animation of frame draw  ========= */

.team-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.team-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  /* or your content height */
  padding-bottom: 30px;
}

.mbl-line-draw,
.line-draw {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  /* make sure SVG is visible */
}

.line-draw path {
  fill: none;
  stroke: #d18815;
  stroke-width: 2;
  filter: drop-shadow(0 0 8px #d18815);
}

.mbl-line-draw svg,
.line-draw svg {
  width: 100%;
  height: 100%;
  display: block;
  preserveaspectratio: none;
}

.mbl-line-draw {
  /* position: relative; */
  width: 100%;
  height: auto;
  /* let it grow with content */
}

.mbl-line-draw svg {
  display: block;
  width: 100%;
  height: 100%;
  /* margin-top: 50% !important; */
}

.mbl-frame-left,
.mbl-frame-right {
  display: block;
  /* margin: 50% auto 0 auto; */
  /* top = 50%, horizontally centered */
}

/* new */
.mbl-line-draw {
  margin-top: 50%;
}

.mbl-frame-left {
  margin-left: -25% !important;
}

.mbl-frame-right {
  margin-right: -15% !important;
}

/* new */

#centerDiamond {
  fill: none;
  stroke: #d18815;
  stroke-width: 6;
  filter: drop-shadow(0 0 12px #d18815);
  opacity: 0;
}

.team-container {
  position: relative;
  z-index: 2;
}

/* ======================= frame draw animation ends ================== */

/* ===================================== teams section styling ends =============================== */

/* ========================================= tiktok shop starts =========================== */
.tiktok-shop-section {
  position: relative;
  height: 200vh;
  background: #0a0a0a;
  overflow: hidden;
  color: #fff;
  margin-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
}

.tiktok-shop-main-content {
  /* padding: 0px 50px; */
  max-width: 60%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tiktok-shop-section .container {
  padding: 0;
}

#gridGlow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
  filter: blur(1px);
  /* 🔥 glow + grid look foggy */
}

.tiktok-shop-content {
  position: relative;
  z-index: 2;
  padding: 50px 0;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.tiktok-shop-title {
  display: inline-block;
  color: #fff;
  /* margin-bottom: 39px; */
  box-shadow: 0px 4px 8px 1px #f4f4fe40 inset;
  border: 1px solid #d1881530;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.04) 0%,
    rgba(209, 136, 21, 0.16) 100%
  );
  padding: clamp(15px, 3vw, 30px) clamp(12px, 2vw, 25px);
  border-radius: 80px;
  font-weight: 700;
  font-size: clamp(20px, 6vw, 38px);
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
}

.tiktok-shop-text {
  font-weight: 300;
  font-size: 20px;
  line-height: 31px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;

  color: #fff;
  padding: 50px 0;
}

.tiktok-shop-buttons {
  margin-top: 20px;
  display: inline-flex;
  gap: 15px;
  justify-content: center;
  padding: 15px;
  backdrop-filter: blur(2px);
  border: 2px solid #d18815;
  border-radius: 80px;
}

.shop-btn {
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.shop-btn.primary {
  backdrop-filter: blur(2px);
  background: linear-gradient(180deg, #d18815 54.93%, #1c1309 111.82%);
  font-weight: 600;
  font-size: 20px;
  line-height: 44px;
  letter-spacing: 0.42px;
  text-align: center;
  vertical-align: middle;

  color: #fff;
  border-radius: 80px;
}

.shop-btn.secondary {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  line-height: 44px;
  letter-spacing: 0.42px;
  text-align: center;
  vertical-align: middle;
}

.shop-btn:hover {
  filter: brightness(1.2);
}

.tiktok-shop-icon {
  z-index: 1;
}

.tiktok-shop-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-lines.left {
  margin-right: -100px;
  z-index: 0;
}

.shop-lines.right {
  margin-left: -100px;
  z-index: 0;
}

.shop-lines path {
  stroke-dasharray: 1000;
  /* large enough to cover path length */
  stroke-dashoffset: 1000;
  /* hidden initially */
}

/* ============== tiktok shops ends ============== */

/* ========================================= Who You Are Section ==============================*/
.who-section {
  padding: 5rem 0 0 0;
  text-align: center;
}

.who-title {
  font-size: 45px;
  font-weight: 700;
  line-height: 24px;
  color: var(--text-light);
  background: var(--primary-gold);
  display: inline-block;
  padding: 31px 51px;
  border-radius: 50px;
  margin-bottom: 25px;
  color: var(--text-light);
  width: fit-content;
}

.who-description {
  font-size: 20px;
  font-weight: 200;
  line-height: 26px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 65px;
}

.lineframe-who-section.who-section .wireframe-section .who-title {
  font-size: 32px;
  padding: 30px 50px;
}

.lineframe-who-section.who-section .wireframe-section .who-description {
  margin-bottom: 0;
}

.cards-sec {
  width: 45%;
}

.choice-card {
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.1) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  border: 2px solid hsl(32.6deg 63.5% 31.39%);
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.cards-sec .creatorBtn {
  animation: floatUpDown 3s ease-in-out infinite;
}

.cards-sec .companyBtn {
  animation: floatUpDown 3s ease-in-out infinite;
  animation-delay: 1.5s;
  /* thoda delay taake alternate lage*/
}

.choice-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 5px 10px rgba(212, 165, 116, 0.3);
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.2) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.choice-icon {
  width: 100%;
  height: 160px;
  background: linear-gradient(180deg, #d18815 0.93%, #1c1309 101.82%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
  align-items: flex-end;
}

.choice-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 37px;
  color: var(--text-light);
  padding: 10px 0;
  margin: 0;
}

/* -------- new */
.cards-sec {
  position: relative;
  padding-bottom: 150px;
}

.svgleftcardline,
.svgrightcardline {
  position: absolute;
  top: 0;
}

.svgleftcardline,
.svgrightcardline {
  position: absolute;
  top: 38%;
}

.svgleftcardline {
  right: 67%;
}

.svgrightcardline {
  left: 67%;
}

#leftCardTopArrow,
#leftCardBottomArrow,
#rightCardTopArrow,
#rightCardBottomArrow {
  opacity: 0;
}

/* new */

@media screen and (max-width: 1250px) {
  .svgleftcardline {
    right: 76%;
  }

  .svgrightcardline {
    left: 76%;
  }
}

/* new */
.wireframe-head {
  width: 400px;
  height: 400px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: -30px;
}

.wireframe-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.wireframe-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  /* video ko container cover karne k liye */
  z-index: -1;
  /* content ke niche rakhne k liye */
  opacity: 0.1;
}

.wireframe-section .wireframe-head video {
  position: relative;
  opacity: 1;
}

/* Style section molve */
/* steps section */
.steps-section-main {
  padding-top: 55px;
  padding-bottom: 100px;
}

.steps-section-main .step-content h1 {
  color: #d18815;
  font-size: 100%;
  font-weight: bold;
  text-transform: uppercase;
}

.step-empire-text {
  font-size: 100px;
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
  color: white;

  -webkit-mask-image: radial-gradient(
    circle 150px at var(--x, 50%) var(--y, 50%),
    rgba(0, 0, 0, 0.6) 60%,
    /* dimmer center */ rgba(0, 0, 0, 0.06) 100% /* much softer edge */
  );
  -webkit-mask-repeat: no-repeat;

  mask-image: radial-gradient(
    circle 150px at var(--x, 50%) var(--y, 50%),
    rgba(0, 0, 0, 0.6) 60%,
    rgba(0, 0, 0, 0.1) 100%
  );
  mask-repeat: no-repeat;

  transition: -webkit-mask-position 0.15s ease-out, mask-position 0.15s ease-out;
}

.spotlight-container {
  margin-bottom: 40px;
}

/* new */
/* faded start state */
.animate-heading-char {
  color: rgba(209, 136, 21, 0.25);
  display: inline-block;
}

/* gradient reveal state */
.gradient-text-reveal {
  background: linear-gradient(180deg, #d18815 54.93%, #1c1309 111.82%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.steps-section-main .step-content h1.animate-heading {
  color: inherit;
}

/* new */

.steps-section-main .step-content h2 {
  color: #d18815;
  font-size: 40px;
  font-weight: 700;
  line-height: 51px;
  text-transform: uppercase;
  text-align: center;
}

.steps-section-main .step-content h2 span {
  color: #fff;
}

.steps-section-main .step-content p,
.step-bottom-p {
  color: #cccccc;
  font-size: 24px;
  font-weight: 300;
  line-height: 51px;
  max-width: 808px;
  margin: 0 auto;

  margin: 0;
  padding-bottom: 0;
  margin: 0 auto;
  text-align: center;
}

.step-section-slider-main {
  padding-top: 60px;
  padding-bottom: 100px;
}

.step-section-slider-main .slider-item {
  text-align: center;
}

.step-section-slider-main .slider-item img {
  width: 100%;
}

.step-section-slider-main .slider-item-content {
  background-color: #000000;
  border: 1px solid #fff;
  border-top-left-radius: 35px;
  border-top-right-radius: 35px;
}

.step-section-slider-main .slider-item-content h1 {
  font-size: 50px;
  font-weight: bolder;
  padding-top: 15px;
  padding-bottom: 15px;
}

.step-section-slider-main .slider-item-inner-content {
  background: linear-gradient(0deg, #d18815 54.93%, #1c1309 111.82%);
  border-top-left-radius: 35px;
  border-top-right-radius: 35px;
  padding: 10px;
  min-height: 164px;
}

.step-section-slider-main
  .slider-item-inner-content
  .slider-item-inner-content-grey {
  background: linear-gradient(to bottom, #999999 57%, #ffffff 100%);
  border-top-left-radius: 35px;
  border-top-right-radius: 35px;
  padding: 4px;
  min-height: 135px;
}

.step-section-slider-main
  .slider-item-inner-content
  .slider-item-inner-content-yellow {
  background: linear-gradient(0deg, #d18815 54.93%, #1c1309 111.82%);
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  padding: 15px;
  text-align: center;
  min-height: 185px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.step-section-slider-main .slider-item-inner-content p {
  font-size: 20px;
  font-weight: 400;
  line-height: 27px;
  padding: 0;
  margin-bottom: 0;
}

.step-section-slider-main .slider-item-inner-content img {
  max-width: 128px;
  width: 100%;
  margin: 0 auto;
}

.step-section-slider-main .slider-item-bottom-line {
  margin-top: 30px;
}

.step-slider .slick-slide {
  transition: all 0.6s ease-in-out;
  opacity: 0.4;
  transform: scale(0.8);
  filter: blur(1.5px);
}

.step-slider .slick-center {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  z-index: 2;
}

/* ============================== why tiktok shop ============================= */

.why-tiktok-shop-section {
  padding-top: 0;
  /* padding-bottom: 100px; */
}

@media (max-width: 768px) {
  .hero-logo {
    font-size: 4rem;
  }

  /* .hero-title {
    font-size: 2.5rem;
  } */

  .hero-loader-subtitle,
  .hero-subtitle {
    font-size: 1.5rem;
  }

  .who-title {
    font-size: 2.5rem;
  }

  .central-title {
    font-size: 2rem;
  }
}

/* ====================================== light section============================= */

/* .service-section-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 2rem;
} */
.service-section-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* changing */
  padding: 10rem 0px;
  /*padding: 5rem 0px;*/
  /* new-code */
  flex-direction: column;
  /* ...*/
}

/* Light images full height/width */
.service-light {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  /* half screen each */
  object-fit: cover;
  /* scale without distortion */
  opacity: 0;
  transition: all 3s ease;
  z-index: 0;
  /* behind content */
  pointer-events: none;
}

/* //////////////////////////////////////////////////////////////////// update code */
.service-title {
  font-size: clamp(24px, 5vw, 49px);
  /* ✅ responsive font-size */
  font-weight: 800;
  color: var(--primary-gold);
  text-align: center;
  /* margin-bottom: 1rem; */
  padding: 30px;

  position: relative;
  display: inline-block;
}

/*
.service-title::before,
.service-title::after {
  content: "";
  display: inline-block;
  width: 128px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.service-title::before {
  background-image: url("../images/arrowleft.png");
  margin-right: 8px;
}

.service-title::after {
  background-image: url("../images/arrowright.png");
  margin-left: 8px;
} */
/* //////////////////////////////////////////////////////////////////// update code */
.service-light-left {
  left: -60%;
  /* start off-screen */
}

.service-light-right {
  right: -60%;
  /* start off-screen */
}

/* Content in the middle */
.service-content-cont {
  position: relative;

  border: 2px solid #d18815;
  background: #6868681a;
  border-radius: 15px;
  /* padding: 3rem 0 0 0; */
  max-width: 40%;
  text-align: center;
  z-index: 2;
  /* above lights */
  color: #ffcc00;
}

/* Initial state: small, below, slightly transparent */
.service-content-cont {
  transform: scale(0.6) translateY(120px);
  /* smaller and lower */
  opacity: 0;
  transition: transform 1.8s cubic-bezier(0.25, 0.8, 0.25, 1),
    opacity 1.8s ease-out;
  /* slow and smooth */
  transform-origin: center bottom;
  /* zoom from bottom */
}

/* Active state: full size, normal position */
.service-section-main.active .service-content-cont {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.service-content-text {
  background: linear-gradient(
    180deg,
    rgba(209, 136, 21, 0.3) 54.93%,
    rgba(28, 19, 9, 0.3) 111.82%
  );
  backdrop-filter: blur(8px);
  /* blur the content behind the div */
  -webkit-backdrop-filter: blur(8px);
  border-radius: 15px;
  padding: 2rem;
}

/* .service-content-text .service-text {
  padding: 5px 40px;
  font-weight: 300;
  font-size: 18px;
  line-height: 31px;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
  vertical-align: middle;
  
} */
.service-content-text .service-text {
  /* padding change */
  /* padding: 5px 180px; */
  font-weight: 300;
  font-size: 18px;
  line-height: 31px;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
  vertical-align: middle;
}

.service-text-comp {
  padding: 5px 180px;
  font-weight: 300;
  font-size: 22px;
  line-height: 38px;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
  vertical-align: middle;
}

/* Animate lights when section visible */
.service-section-main.active .service-light-left {
  left: 0;
  opacity: 1;
}

.service-section-main.active .service-light-right {
  right: 0;
  opacity: 1;
}

/* ======================= service cards==================== */

/* Initial hidden state */
.info-service-card {
  opacity: 0;
  transform: translateY(50px);
  filter: blur(6px);
  transition: all 0.8s ease-out;
}

/* Animate into view */
.info-service-card.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.info-service-cards-section {
  padding: 100px 0;
}

.info-service-cards-section .uni-container {
  padding-bottom: clamp(30px, 8vw, 80px);
  /* Min: 30px, Ideal: 8vw, Max: 80px */
  width: clamp(200px, 60vw, 100%);
}

/* Card look */
.info-service-card {
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.1) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  border: 2px solid hsl(32.6deg 63.5% 31.39%);
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.info-service-card .info-sub-container .info-card-icon img {
  border: none;
  border-radius: 0;
}

.info-service-card:hover {
  box-shadow: 0 5px 10px rgba(212, 165, 116, 0.3);
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.2) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

/* Inner blur background for icon/text */
.info-sub-container {
  background: linear-gradient(
    180deg,
    rgba(209, 136, 21, 0.3) 54.93%,
    rgba(28, 19, 9, 0.3) 111.82%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 5px;
  min-height: 145px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.info-card-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 60px;

  color: #fff;
}

.info-card-text {
  font-weight: 600;
  font-size: 20px;
  margin-top: 15px;
  line-height: 30px;

  color: #fff;
}

.info-card-icon img {
  max-width: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
}

/* ========================================== why partners crusial section ======================= */

/* .why-partnership-section .service-section-main {
  width: 100%;
} */
.why-partnership-section .service-section-main {
  width: 80%;
}

.why-partnership-section .service-title {
  color: #fff;
  font-size: clamp(24px, 5vw, 38px);
}

.why-partnership-section .service-content-cont {
  max-width: 80% !important;
}

/* .partners-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 50px;
} */
.partners-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px 80px;
}

.why-partnership-sectio .service-text {
  padding: 4px 150px;
}

.partners-col p {
  margin: 8px 0;
  font-size: 16px;
  line-height: 1.4;
}

.partners-text-grid,
.partners-bold-h {
  color: #fff;
  font-size: 3rem;
}

.partner-benefit-icon {
  /*height: 50px;
  width: 50px;*/
  height: 100px;
  width: 100px;
  margin-bottom: 20px;
}

/* Responsive: stack columns on small screens */
@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: 1fr;
    /* single column */
  }
}

/* =========================================success story section starts  ======================= */

.success-section {
  /* padding: 80px 0; */
  display: flex;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
}

.section-title {
  font-size: 68px;
  line-height: 110px;
  font-weight: 800;
  text-transform: uppercase;
}

.success-section .section-title {
  line-height: 75px;
}

.gradient-text {
  background: linear-gradient(180deg, #d18815 54.93%, #1c1309 111.82%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  font-size: 24px;
  line-height: 40px;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
}

.success-section p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  color: #ffffff;
}

.see-all-btn {
  background: linear-gradient(175deg, #d18815, #1c1309);
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 13px;
  line-height: 19px;
  font-weight: bold;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-right: 10px;
}

.see-all-btn2 {
  background: #000000;
  color: white;
  border: 1px solid #292525;
  padding: 15px 40px;
  font-size: 13px;
  line-height: 19px;
  font-weight: bold;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.see-all-btn:hover {
  background-color: #e55a00;
  color: white;
}

.see-all-btn2:hover {
  background-color: #292525;
  color: white;
  border: 1px solid #292525;
}

/* new */
.company-contact-btn,
.creator-contact-btn {
  cursor: pointer !important;
}

/* new */

/* Company Page hero section button */

.btns {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.hero-company .hero-logo,
.hero-creator .hero-logo {
  min-height: auto;
}

.hero-company .hero-content,
.hero-creator .hero-content {
  padding-top: 0;
}

.comp-all-btn,
.comp-all-btn2 {
  display: none;
  /* hidden by default */
  background: linear-gradient(175deg, #d18815, #1c1309);
  color: white;
  border: none;
  font-size: 13px;
  line-height: 10px;
  line-height: 19px;
  font-weight: 400;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-right: 10px;
}

.comp-all-btn2 {
  background: #000000;
  color: white;
  border: 1px solid #292525;
}

/* Hover styles */
.comp-all-btn:hover {
  background-color: #e55a00;
  color: white;
}

.comp-all-btn2:hover {
  background-color: #292525;
  color: white;
  border: 1px solid #292525;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .comp-all-btn,
  .comp-all-btn2 {
    display: inline-block;
    padding: 10px 10px;
  }
}

/* Company Page hero section End */
/* Disable hover effects on left section buttons */
.left-section .see-all-btn:hover,
.left-section .see-all-btn2:hover {
  background-color: inherit;
  color: inherit;
  transform: none;
  box-shadow: none;
}

.left-section .see-all-btn,
.left-section .see-all-btn2 {
  cursor: default;
}

.box-section-card {
  /* background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.1) 0%,
    rgba(0, 0, 0, 0.5) 100%
  ); */
  border: 2px solid hsl(32.6deg 63.5% 31.39%);
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  width: 350px;
  padding: 0px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.box-section-header {
  background: linear-gradient(180deg, rgb(0, 0, 0) 1%, rgb(0, 0, 0) 1%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 18px 18px 0 0;
  padding: 15px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 31px;
  letter-spacing: 0%;
  text-align: center;
}

.content {
  background: linear-gradient(175deg, #d18815, #1c1309);
  padding: 5px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  border-radius: 20px;
}

.info-card-icon {
  margin-bottom: 15px;
  margin-top: 15px;
}

/* .info-card-icon img {
  min-width: 185px;
} */

.revenue {
  font-size: 50px;
  font-weight: 800;
  margin: 10px 0;
  /* line-height: 110px; */
  letter-spacing: 0.42px;
}

.revenue-followers {
  font-weight: 800;
  font-size: 40px;
  /* line-height: 110px; */
  letter-spacing: 0.42px;
}

.time-period {
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 700;
}

.description {
  font-size: 13px;
  line-height: 28px;
  font-weight: 400;
}

.btn-img {
  margin-left: 8px;
  vertical-align: middle;
}

.steps-step {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  transition: all 0.5s ease;
}

.steps-container {
  position: relative;
  height: 400px;
  margin-top: 30px;
}

/* Make left section sticky */
.sticky-left {
  position: sticky;
  top: 290px;
  align-self: flex-start;
}

/* Disable all mouse interactions on left section */
.left-section {
  pointer-events: none;
}

/* Re-enable pointer events for buttons specifically */
.left-section .see-all-btn,
.left-section .see-all-btn2 {
  pointer-events: auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .box-section-card {
    margin-top: 30px;
    width: 100%;
    max-width: 350px;
  }

  /* Disable sticky on mobile */
  .sticky-left {
    position: relative;
    top: auto;
  }
}

/* =========================================success story style ends========================== */

/* mishal */
/* =====================================tiktok landing brands section starts ============================*/

.review-name {
  font-weight: 400;
  font-style: Regular;
  font-size: 26px;
  line-height: 36px;
  letter-spacing: 0.42px;
  vertical-align: middle;

  color: #ffffff33;
}

.review-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.review-card:hover .review-followers,
.review-card:hover .review-name {
  color: #ffffff;
}

.review-card-mbl .review-followers,
.review-card-mbl .review-name,
.review-card-mbl .review-text {
  color: #ffffff !important;
}

.review-followers {
  font-weight: 700;
  font-style: Bold;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0.42px;
  vertical-align: middle;

  color: #ffffff33;
  margin: 0;
}

.vector-mbl {
  position: absolute;
  width: 15px;
  height: 15px;
  /* opacity: 0; */
  transition: opacity 0.3s ease;
}

.famous-brands-main-sec {
  background-color: #000;
  padding-top: 150px;
}

.famous-brands-container .btn-who-we-are {
  padding: clamp(16px, 3vw, 31px) clamp(32px, 6vw, 29px);
  font-size: clamp(16px, 2vw, 29px);
}

.famous-brands-container {
  width: 40%;
  padding: 60px 20px;
  /* background-image: url(../images/famous-brand-img.png); */
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s ease-out forwards;
  animation-delay: 0.3s;
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.one-time {
  position: relative;
  z-index: 1;
}

.famous-brands-title::before,
.famous-brands-title::after {
  content: "";
  display: inline-block;
  width: 128px;
  /* adjust size */
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

/* .famous-brands-title::before {
  background-image: url("../images/arrowleft.png");
  margin-right: 8px;
} */

/* .famous-brands-title::after {
  background-image: url("../images/arrowright.png");
  margin-left: 8px;
} */

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.famous-brands-title-wrapper {
  display: flex;
  justify-content: center;
}

.famous-brands-heading {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-style: Extra Bold;
  font-size: 75px;
  line-height: 83.6px;
  letter-spacing: 0.42px;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(180deg, #d18815 54.93%, #1c1309 111.82%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.famous-brands-content-sec {
  margin-top: 32px;
}

/* .famous-brands-subtitle-wrapper {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.04) 0%,
    rgba(209, 136, 21, 0.16) 100%
  );
  border: 1px solid rgba(209, 136, 21, 0.19);
  border-radius: 80px;
  box-shadow: inset 0px 4px 8px 1px rgba(244, 244, 254, 0.25);
  padding: 6px 56px;
  max-width: 900px;
  text-align: center;
} */

.famous-brands-subtitle-text {
  font-size: 29px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 34px;
}

.famous-brands-content-text {
  width: 100%;
  text-align: center;
  font-size: 26px;
  font-weight: 400;
  margin-top: 0;
  animation: zoomIn 0.8s ease-out 2s forwards;
  opacity: 0;
  transform: scale(0.5);
  color: white;
}

.famous-brands-container .col-lg-10 {
  width: 100%;
}

/* Zoom-in animation */
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* review-sec */
.reviews-section {
  width: 100%;
  padding: 80px 20px;
  background-color: #000;
  /* background-image: url("../images/review-sec-img.png"); */
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.reviews-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  /* only top edge */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  filter: blur(8px);
  /* softness */
  pointer-events: none;
}

.custom-row {
  width: 100%;
  /* max-width: 1200px; */
  display: flex;
  justify-content: center;
  /* margin-bottom: 40px; */
  /* margin-left: 144px; */
  margin-left: 53px;
  margin-bottom: 66px;
}

.space-between {
  justify-content: space-between;
}

.row-1,
.row-3 {
  padding: 0px 173px;
}

.review-card {
  position: relative;
  /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%); */
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  border-radius: 16px;
  padding: 30px;
  width: 301px;
  /* width: 350px; */
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  filter: blur(2px);
}

.review-card:hover {
  filter: blur(0);
}

.vector {
  position: absolute;
  width: 15px;
  height: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-card:hover .vector {
  opacity: 1;
}

.review-card:hover .review-text {
  color: #ffffff;
}

.vector-top-left {
  top: 10px;
  left: 10px;
  transform: rotate(-1deg);
}

.vector-top-right {
  top: 10px;
  right: 10px;
  transform: rotate(0deg);
}

.vector-bottom-left {
  bottom: 10px;
  left: 10px;
  /* transform: rotate(-269deg); */
}

.vector-bottom-right {
  bottom: 10px;
  right: 10px;
  /* transform: rotate(270deg); */
}

.review-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: start;
  gap: 8px;
  animation: floatUpDown 3s ease-in-out infinite;
}

/* === Row 1 === */
.row-1 .col-auto:nth-of-type(1) .review-card .review-content {
  animation-duration: 2s;
  animation-delay: 0s;
}

.row-1 .col-auto:nth-of-type(2) .review-card .review-content {
  animation-duration: 5s;
  animation-delay: 1.5s;
}

/* === Row 2 === */
.row-2 .col-auto:nth-of-type(1) .review-card .review-content {
  animation-duration: 3s;
  animation-delay: 0.8s;
}

.row-2 .col-auto:nth-of-type(2) .review-card .review-content {
  animation-duration: 4.5s;
  animation-delay: 1.8s;
}

.row-2 .col-auto:nth-of-type(3) .review-card .review-content {
  animation-duration: 6s;
  animation-delay: 2.5s;
}

/* === Row 3 === */
.row-3 .col-auto:nth-of-type(1) .review-card .review-content {
  animation-duration: 2.7s;
  animation-delay: 0.4s;
}

.row-3 .col-auto:nth-of-type(2) .review-card .review-content {
  animation-duration: 5.5s;
  animation-delay: 1.2s;
}

.row-3 .col-auto:nth-of-type(3) .review-card .review-content {
  animation-duration: 3.8s;
  animation-delay: 2s;
}

.row-3 .col-auto:nth-of-type(4) .review-card .review-content {
  animation-duration: 6.2s;
  animation-delay: 2.7s;
}

.review-image {
  width: 48px;
  height: 50px;
  opacity: 0.44;
  border-radius: 682.5px;
  object-fit: cover;
  /* margin-bottom: 20px; */
}

.review-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 19px;
  line-height: 29px;
  /* letter-spacing: 0.42px; */
  vertical-align: middle;

  color: #ffffff33;
}

.review-content-card-1 {
  margin-left: -120px;
}

/* 
.review-content-card-3 {
  margin-left: 197px;
  margin-top: 23px;
} */

.review-card-mbl {
  position: relative;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tiktok-landing-mbl-section {
  display: none;
}

.review-mbl-slider {
  margin-top: 70px;
}

@media (max-width: 768px) {
  .tiktok-landing-mbl-section {
    display: block;
  }
}

@media (max-width: 500px) {
  .review-followers {
    font-size: 22px;
  }
}

/* ---- MEDIA QUERIES (unchanged) ---- */
@media only screen and (max-width: 1536px) {
  .famous-brands-heading {
    font-size: 70px;
  }

  /* review-sec */
  .review-card {
    width: 350px;
  }
}

@media (min-width: 1400px) and (max-width: 1535px) {
  .famous-brands-heading {
    font-size: 65px;
  }

  .famous-brands-subtitle-wrapper {
    padding: 18px 35px;
  }

  .famous-brands-subtitle-text {
    font-size: 22px;
  }

  /* review-sec */
  .custom-row {
    margin-bottom: 40px;
  }

  .review-card {
    width: 320px;
    padding: 25px;
    min-height: 180px;
  }

  .vector {
    width: 22px;
    height: 22px;
  }

  .review-image {
    width: 45px;
    height: 47px;
  }

  .review-text {
    font-size: 22px;
    line-height: 32px;
  }
}

@media only screen and (width: 1441px) {
  .famous-brands-heading {
    font-size: 72px;
  }

  /* review-sec */
  .review-card {
    width: 340px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
  .famous-brands-heading {
    font-size: 60px;
  }

  .famous-brands-subtitle-wrapper {
    padding: 18px 35px;
  }

  .famous-brands-subtitle-text {
    font-size: 20px;
  }

  /* review-sec */
  .custom-row {
    margin-bottom: 35px;
  }

  .review-card {
    width: 300px;
    padding: 25px;
    min-height: 170px;
  }

  .vector {
    width: 20px;
    height: 20px;
  }

  .review-image {
    width: 42px;
    height: 44px;
  }

  .review-text {
    font-size: 20px;
    line-height: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .famous-brands-heading {
    font-size: 50px;
    margin-bottom: 30px;
  }

  .famous-brands-subtitle-wrapper {
    padding: 15px 30px;
  }

  .famous-brands-subtitle-text {
    font-size: 18px;
  }

  /* review-sec */
  .reviews-section {
    padding: 60px 20px;
  }

  .custom-row {
    margin-bottom: 30px;
  }

  .review-card {
    width: 280px;
    padding: 20px;
    min-height: 160px;
  }

  .vector {
    width: 18px;
    height: 18px;
  }

  .review-image {
    width: 40px;
    height: 42px;
  }

  .review-text {
    font-size: 18px;
    line-height: 28px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .famous-brands-heading {
    font-size: 45px;
    margin-bottom: 25px;
  }

  .famous-brands-subtitle-wrapper {
    padding: 15px 25px;
  }

  .famous-brands-subtitle-text {
    font-size: 18px;
  }

  /* review-sec */
  .reviews-section {
    padding: 50px 20px;
  }

  .custom-row {
    margin-bottom: 25px;
  }

  .review-card {
    width: 260px;
    padding: 20px;
    min-height: 150px;
  }

  .vector {
    width: 18px;
    height: 18px;
  }

  .review-image {
    width: 38px;
    height: 40px;
  }

  .review-text {
    font-size: 17px;
    line-height: 26px;
  }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
  .famous-brands-heading {
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .famous-brands-subtitle-wrapper {
    padding: 12px 20px;
  }

  .famous-brands-subtitle-text {
    font-size: 16px;
  }

  /* review-sec */
  .reviews-section {
    padding: 40px 15px;
  }

  .custom-row {
    margin-bottom: 20px;
  }

  .review-card {
    width: 240px;
    padding: 15px;
    min-height: 140px;
  }

  .vector {
    width: 16px;
    height: 16px;
  }

  .review-image {
    width: 36px;
    height: 38px;
  }

  .review-text {
    font-size: 16px;
    line-height: 24px;
  }
}

@media only screen and (min-width: 350px) and (max-width: 480px) {
  .famous-brands-heading {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .famous-brands-subtitle-wrapper {
    padding: 10px 15px;
    border-radius: 50px;
  }

  .famous-brands-subtitle-text {
    font-size: 14px;
  }

  /* review-sec */
  .reviews-section {
    padding: 30px 15px;
  }

  .custom-row {
    margin-bottom: 15px;
  }

  .review-card {
    width: 220px;
    padding: 15px;
    min-height: 130px;
  }

  .vector {
    width: 14px;
    height: 14px;
  }

  .review-image {
    width: 34px;
    height: 36px;
  }

  .review-text {
    font-size: 15px;
    line-height: 22px;
  }
}

@media only screen and (width: 360px) {
  .famous-brands-heading {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .famous-brands-subtitle-wrapper {
    padding: 10px 15px;
    border-radius: 50px;
  }

  .famous-brands-subtitle-text {
    font-size: 14px;
  }

  /* review-sec */
  .review-card {
    width: 210px;
    padding: 13px;
    min-height: 125px;
  }

  .vector {
    width: 14px;
    height: 14px;
  }

  .review-image {
    width: 33px;
    height: 35px;
  }

  .review-text {
    font-size: 14px;
    line-height: 21px;
  }
}

@media only screen and (max-width: 320px) {
  .famous-brands-heading {
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.2;
  }

  .famous-brands-subtitle-wrapper {
    padding: 8px 12px;
    border-radius: 40px;
  }

  .famous-brands-subtitle-text {
    font-size: 13px;
  }

  /* review-sec */
  .reviews-section {
    padding: 20px 10px;
  }

  .custom-row {
    margin-bottom: 15px;
  }

  .review-card {
    width: 200px;
    padding: 12px;
    min-height: 120px;
  }

  .vector {
    width: 12px;
    height: 12px;
  }

  .review-image {
    width: 32px;
    height: 34px;
  }

  .review-text {
    font-size: 14px;
    line-height: 20px;
  }
}

/* mishal */

/* =======================================why tiktok shop section styles========================= */
.why-tiktok-shop-info-heading {
  font-weight: 800;
  font-size: 48px;
  line-height: 60px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  margin-bottom: 22px;
  /* padding: 0 60px; */
}

.why-tiktok-shop-section .container {
  padding: 100px 0;
  background-image: url("../images/why-tiktok-shop-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

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

.why-tiktok-shop-info-sub-heading {
  font-weight: 300;
  font-size: 20px;
  line-height: 31px;
  text-align: center;
  vertical-align: middle;

  color: #cccccc;
}

.why-shop-service-card {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 20px 0;
}

/* .why-shop-service-card p {
  background: linear-gradient(rgb(8 7 7)) padding-box,
    linear-gradient(180deg, #d18815, #1c1309) border-box;
  border-radius: 7px;
  border: 1px solid transparent;
  text-align: center;
  cursor: pointer;
  height: 100%;
  padding: 16px 8px;
  min-width: 390px;
  min-height: 43px;
} */

.why-shop-service-card p {
  background: linear-gradient(rgb(8 7 7)) padding-box,
    /* Changed to semi-transparent black */
      linear-gradient(180deg, #d18815, #1c1309) border-box;
  border-radius: 7px;
  border: 1px solid transparent;
  text-align: center;
  cursor: pointer;
  height: 100%;
  padding: 16px 8px;
  /* Changing */
  /* min-width: 490px; */
  width: 100%;
  min-height: 43px;
  font-size: 26px;
  margin-bottom: 0px;
}

@media (max-width: 930px) and (min-width: 768px) {
  .why-shop-service-card p {
    min-width: auto;
    min-height: auto;
  }
}

.service-content-text-company {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .service-content-cont {
  max-width: 1000px;
} */

.graph-area {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  justify-content: center;
  flex-direction: column;
  width: 40%;
}

.graph-area img {
  width: 100%;
}

/* shared style for white + yellow legends */
.graph-color .legend {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

/* small box */
.graph-color .legend span {
  display: inline-block;
  width: 10px;
  height: 10px;
}

/* white box */
.graph-color .white-color span {
  background-color: #fff;
  border: 1px solid #ccc;
  /* keeps it visible on white bg */
}

/* yellow box with gradient border */
.graph-color .yellow-color span {
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(180deg, #d18815 54.93%, #1c1309 111.82%);
  background: #d18815;
  /* fill inside */
}

.service-content-text-company p.service-text {
  font-weight: 300;
  font-size: 25px;
  line-height: 31px;
  letter-spacing: 0%;
  vertical-align: middle;

  text-align: left;
  width: 50%;
}

.content-wrapper .service-text {
  width: 100% !important;
}

.benefits-description {
  font-weight: 300;
  font-size: 27px;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

.benefits-agency-section .uni-container {
  width: clamp(200px, 60vw, 100%);
}

.famous-brands-container .uni-container {
  width: clamp(200px, 60vw, 100%);
}

.benefits-agency-section .benefits-agency-title {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 25px;
  line-height: 36px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.04) 0%,
    rgba(209, 136, 21, 0.16) 100%
  );
  border: 1px solid rgba(209, 136, 21, 0.19);
  border-radius: 80px;
  padding: 30px;
}

.timeline-agency-section .timeline-agency-title {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.04) 0%,
    rgba(209, 136, 21, 0.16) 100%
  );
  border: 1px solid rgba(209, 136, 21, 0.19);
  border-radius: 80px;
  padding: 30px;
}

.famous-brands-container .famous-brands-subtitle-text {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 25px;
  line-height: 36px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.04) 0%,
    rgba(209, 136, 21, 0.16) 100%
  );
  border: 1px solid rgba(209, 136, 21, 0.19);
  border-radius: 80px;
  padding: 30px;
}

.famous-brands-title-wrapper .uni-container {
  width: clamp(200px, 60vw, 100%);
}

/* =======================================why tiktok shop section style ends ========================= */
/* =======================================pipline section starts ========================= */

.pipline-bottom-cta-btn img {
  cursor: pointer;
}

.pipeline-mbl-section,
.pipeline-section {
  background: #000;
  padding: 60px 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* content vertically center hoga */
  min-height: 100vh;
  /* kam se kam screen jitna height */
  overflow: visible;
  /* neeche cut na ho */
}

.pillar {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  overflow: hidden;
  flex-direction: column;
}

.pillar-mbl-video,
.pillar-video {
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 2;
  margin-bottom: -66px;
}

.pillar-gif {
  width: 55%;
  height: auto;
  object-fit: contain;
  z-index: 1;
}

/* Info Box Base */

.info-box {
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.1) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  /* border: 2px solid hsl(32.6deg 63.5% 31.39%); */
  border: 2px solid rgba(191, 191, 191, 1);
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  /* min-height: 243px; */
  max-width: 175px;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}

.info-box-pipeline-company,
.info-box-pipeline-creator {
  /* min-height: 243px; */
  min-height: 215px;
}

.info-box-pipeline-company .info-box-title {
  min-height: 85px;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-box-pipeline-creator .info-box-title {
  min-height: 65px;
  padding: 0 16px;
  line-height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-mbl-box {
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.1) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  border: 2px solid hsl(32.6deg 63.5% 31.39%);
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  min-height: 180px;
  max-width: 150px;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}

.info-mbl-box .info-box-icon {
  width: 100px;
  height: 80px;
}

.info-mbl-box .info-box-sub-container {
  padding: 15px;
  min-height: 100px;
}

.pillar-gif-mobile {
  width: 100%;
  z-index: -1;
  background: #000;
  height: 268px;
}

.info-box {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.info-box.show {
  opacity: 1;
  transform: translateY(0);
}

.cards-wrapper {
  position: absolute;
  top: 0;
  /* left: 50%; */
  /* transform: translateX(-50%); */
  width: 100%;
  /* max-width: 360px; */
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: -2;
  overflow: hidden;
  gap: 30px;
}

/* Box positions for desktop (≥768px) */
@media (min-width: 768px) {
  .box1,
  .box4 {
    top: -10%;
  }

  .box2 {
    top: 18%;
    left: 16.5%;
  }

  .box5 {
    top: 18%;
    right: 16.5%;
  }

  .box3,
  .box6 {
    bottom: 30%;
  }

  .pipeline-mbl-section {
    display: none;
  }
}

@media (max-width: 768px) {
  .pipeline-section {
    display: none;
  }
}

.info-box-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  text-transform: uppercase;
  padding: 7px 16px;
}

.info-box-icon {
  background: linear-gradient(180deg, #d18815 54.93%, #1c1309 111.82%);
  border-radius: 20px;
  width: 130px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.info-box-icon img {
  width: 65px;
  height: 65px;
}

.info-box-sub-container {
  background: linear-gradient(
    180deg,
    rgba(209, 136, 21, 0.3) 54.93%,
    rgba(28, 19, 9, 0.3) 111.82%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 20px;
  min-height: 145px;
}

/* =======================================pipline section ends ========================= */

/* ========================================== empire word section ========================== */

.empire-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  margin: 10% 0 0 0;
}

.empire-section h1 {
  font-family: Inter;
  font-weight: 800;
  font-size: 262px;
  letter-spacing: 0.42px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
}

/* ======================================= stretch light section ================================ */

/* Stretch Section (Top) */
.stretch-section {
  height: 50vh;
  position: relative;
  background: #000000;
  z-index: 1;
}

.sticky-container {
  position: sticky;
  top: 0;
  height: 40vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}

.stretch-image-container {
  position: relative;
  width: 100%;
}

.stretch-inner {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  transform-origin: bottom;
  will-change: transform;
}

.stretch-inner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  pointer-events: none;
  display: block;
}

/* Shrink Section (Bottom) */
.shrinkSection {
  height: 50vh;
  position: relative;
  background: #000000;
  z-index: 2;
}

.sticky-container-shirink {
  position: sticky;
  top: 0;
  height: 40vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
}

.stretch-wrapper-bottom {
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  transform-origin: top;
  will-change: transform;
}

.stretch-wrapper-bottom img {
  width: 100%;
  height: auto;
  object-fit: cover;
  pointer-events: none;
  display: block;
}

/* Optional: Responsive adjustments */
@media (max-width: 767.98px) {
  .stretch-section,
  .shrinkSection {
    height: 50vh;
  }

  .sticky-container,
  .sticky-container-shirink {
    height: 50vh;
  }
}

.shrinkImage img {
  transform: rotate(180deg);
}

/* ======================================= creator flow text style for road map ===================== */

.btn-timeline {
  font-weight: 700;
  font-size: 40px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.04) 0%,
    rgba(209, 136, 21, 0.16) 100%
  );
  border: 1px solid #d1881530;
  color: var(--primary-gold);
  padding: 31px 67px;
  border-radius: 50px;
}

.timeline-title {
  font-weight: 600;
  font-size: 38px;
  line-height: 43px;
  letter-spacing: 0.42px;
  text-align: center;
  vertical-align: middle;
}

.timeline-description {
  font-weight: 300;
  font-size: 20px;
  line-height: 31px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;

  padding-top: 20px;
  color: #cccccc;
}

/* ======================================= roadmap section ====================================== */

.road-map-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
}

.road-map-bg {
  position: relative;
  width: 100%;
  /* max-width: 1200px; */
  padding: 0 100px;
  margin: auto;
}

.road-map-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Cards relative to image */
.road-map-card {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 600px;
  padding: 15px;
  text-align: right;
  z-index: 2;
}

.road-map-card1 {
  /* top: 7%;
  left: -1.1%; */
  top: 4%;
  left: 16%;
}

.road-map-card2 {
  /* top: 20%;
  right: 13%; */
  top: 20%;
  right: 8.5%;
}

.road-map-card3 {
  /* top: 44%;
  left: 10%; */
  top: 55%;
  left: 6%;
  text-align: left;
}

.road-map-card4 {
  /* top: 71%;
  right: 20%; */
  top: 82%;
  right: 21%;
}

/* Circle styling */
.roadmap-circle {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  border: 3px dashed #d18815;
  display: inline-block;
}

/* Step badge */
.step-badge {
  display: inline-block;
  background: linear-gradient(180deg, #2b2b2b, #000);
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  padding: 8px 18px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

/* Title */
.step-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  text-align: right;
  vertical-align: middle;
  text-transform: uppercase;
  color: #d18815;
  margin-bottom: 10px;
}

.road-map-text-section {
  position: relative;
  width: fit-content;
  padding: 50px;
}

.road-map-section-desk .road-map-text-section {
  /* left: 24%; */
  left: 0;
  right: 0;
  margin: 8% auto 0 auto;
}

.road-map-text-section .road-map-text {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.42px;
  text-align: center;
  vertical-align: middle;
}

.road-map-text {
  text-align: center;
}

/* Paragraph */
.step-text {
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  text-align: right;
  vertical-align: middle;

  color: #fff;
}

/* Step image */
.step-img {
  display: flex;
  align-items: center;
}

.road-map-bottom-section {
  /* background: url("../images/road-map-bottom-bg.png") no-repeat center center; */
  /* background-size: contain; */
  padding: 60px 0;
  position: relative;
}
.road-map-bottom-section::before {
  content: ""; /* required for ::before */
  position: absolute; /* usually needed */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: url("../images/roadmap-bottom-light.png") no-repeat;
  background-size: contain;
  z-index: -1; /* so it sits behind content */
  background-position-x: -20%;
}
.road-map-bottom-section::after {
  content: ""; /* required for ::before */
  position: absolute; /* usually needed */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: url("../images/roadmap-bottom-light.png") no-repeat;
  background-size: contain;
  z-index: -1; /* so it sits behind content */
  background-position-x: -20%;
  transform: scaleX(-1);
}

.road-map-bottom-section img {
  max-width: 100%;
  height: auto;
}
.road-map-bottom-section .bag-image,
.road-map-bottom-section .cart-image {
  width: 60%;
}

.road-map-pad-section {
  position: absolute;
  bottom: 5%;
  left: 21%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.arrowpad {
  /* width: 30%;
  height: auto;
  display: block;
  position: absolute;
  bottom: -3%;
  left: 8%;
  background: url("../images/roadmap-arrow.png");
  background-repeat: no-repeat;
  background-position: left; */
  width: 30%;
  height: auto;
  display: block;
  position: absolute;
  bottom: -11%;
  left: 0;
  background: url(../images/roadmap-arrow.png);
  background-repeat: no-repeat;
  background-position: 26% 58%;
  right: 0;
  margin: 0 auto;
}

.road-map-text-section .vector {
  opacity: 1;
}

/* responsive */

@media (min-width: 890px) and (max-width: 1200px) {
  .timeline-agency-section .timeline-agency-title {
    font-size: 26px;
  }

  .step-title,
  .step-text {
    font-size: 18px;
  }

  .road-map-card {
    max-width: 370px;
  }

  .road-map-card1 {
    left: 12%;
    top: 1.8%;
  }

  .road-map-card2 {
    right: 13.5%;
    top: 18%;
  }

  .road-map-card3 {
    left: 10.5%;
    top: 51%;
    max-width: 400px;
  }

  .road-map-card4 {
    right: 30%;
    top: 74%;
    max-width: 500px;
  }

  .step-img img {
    width: 100px;
  }

  .roadmap-circle {
    width: 24px;
    height: 24px;
  }
}

/* Tablets & below */
@media (max-width: 991px) {
  .road-map-card {
    max-width: 50%;
  }

  .road-map-card1 {
    top: 4%;
    left: 1.8%;
  }

  .road-map-card2 {
    right: 13.5%;
    top: 18%;
  }

  .road-map-card3 {
    left: 14%;
    top: 49%;
  }

  .road-map-card4 {
    right: 29%;
    top: 74%;
  }

  .step-title {
    font-size: 14px;
    line-height: 18px;
  }

  .step-text {
    font-size: 12px;
    line-height: 18px;
  }

  .step-img img {
    width: 100px;
  }

  .roadmap-circle {
    width: 24px;
    height: 24px;
  }
}

/* ✅ Smallest phones (max 320px) */
@media (max-width: 320px) {
  .road-map-bg {
    padding: 0 30px;
  }

  .road-map-card {
    max-width: 300px;
  }

  .road-map-card1 {
    top: 8%;
    left: 7%;
  }

  .road-map-card2 {
    top: 23%;
    left: -1%;
    text-align: left;
  }

  .road-map-card3 {
    top: 36%;
    left: 3%;
    text-align: right;
  }

  .road-map-card4 {
    top: 51%;
    right: 12%;
    text-align: left;
  }

  .arrowpad {
    width: 85%;
    top: -90px;
    position: relative;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

/* ✅ Small phones (321px – 375px) */
@media (min-width: 321px) and (max-width: 375px) {
  .road-map-bg {
    padding: 0 30px;
  }

  .road-map-card {
    max-width: 250px;
    padding: 0;
  }

  .road-map-card1 {
    left: 29%;
    top: 10%;
  }

  .road-map-card2 {
    left: 6%;
    top: 24%;
  }

  .road-map-card3 {
    left: 26%;
    top: 39%;
  }

  .road-map-card4 {
    right: 28%;
    top: 54%;
  }

  .road-map-card4,
  .road-map-card4 .step-title,
  .road-map-card2,
  .road-map-card2 .step-title {
    text-align: left;
  }

  .road-map-card3,
  .road-map-card3 .step-title,
  .road-map-card1,
  .road-map-card1 .step-title {
    text-align: right;
  }

  .road-map-text-section {
    padding: 15px;
  }

  .step-img img {
    width: 75px;
  }

  .arrowpad {
    width: 75%;
    top: -120px;
    position: relative;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-position: 0% 45%;
    background-size: 40%;
  }
}

@media (max-width: 375px) {
  .step-text {
    display: none;
  }
}

/* Covers only screens between 376px and 400px */
@media (min-width: 376px) and (max-width: 400px) {
  .road-map-bg {
    padding: 0 30px;
  }

  .road-map-card {
    max-width: 95%;
    min-width: 95%;
  }

  .road-map-card1 {
    left: 4%;
    top: 7%;
  }

  .road-map-card3 .step-details,
  .road-map-card3 .step-title,
  .road-map-card3 .step-text {
    text-align: right !important;
  }

  .step-badge,
  .step-details,
  .step-title,
  .step-text {
    font-size: 12px;
  }

  .road-map-card4 .step-details,
  .road-map-card4 .step-title,
  .road-map-card4 .step-text,
  .road-map-card2 .step-details,
  .road-map-card2 .step-title,
  .road-map-card2 .step-text {
    text-align: left;
  }

  .road-map-card2 {
    left: 1%;
    top: 21%;
  }

  .road-map-card3 {
    left: 3%;
    top: 34%;
  }

  .road-map-card4 {
    right: 4%;
    top: 48%;
  }

  .arrowpad {
    width: 70%;
    top: -130px;
    position: relative;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

/* ✅ Larger phones (376px – 425px) */
@media (min-width: 401px) and (max-width: 425px) {
  .road-map-bg {
    padding: 0 30px;
  }

  .road-map-card {
    max-width: 95%;
    min-width: 95%;
  }

  .road-map-card1 {
    left: 4%;
    top: 7%;
  }

  .road-map-card3 .step-details,
  .road-map-card3 .step-title,
  .road-map-card3 .step-text {
    text-align: right;
  }

  .road-map-card4 .step-details,
  .road-map-card4 .step-title,
  .road-map-card4 .step-text,
  .road-map-card2 .step-details,
  .road-map-card2 .step-title,
  .road-map-card2 .step-text {
    text-align: left;
  }

  .road-map-card2 {
    left: -1%;
    top: 22%;
  }

  .road-map-card3 {
    left: 5%;
    top: 36%;
  }

  .road-map-card4 {
    right: 5%;
    top: 51%;
  }

  .arrowpad {
    width: 70%;
    top: -130px;
    position: relative;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

/* ✅ Small tablets (426px – 600px) */
@media (min-width: 426px) and (max-width: 600px) {
  .road-map-bg {
    padding: 0 30px;
  }

  .road-map-card {
    max-width: 340px;
  }

  .road-map-card1 {
    left: 30%;
    top: 10%;
  }

  .road-map-card2 {
    left: 0%;
    top: 25%;
  }

  .road-map-card3 {
    left: 28%;
    top: 40%;
  }

  .road-map-card4 {
    right: 30%;
    top: 55%;
  }

  .arrowpad {
    width: 65%;
    top: -150px;
    position: relative;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

/* ✅ Tablets (601px – 767px) */
@media (min-width: 601px) and (max-width: 767px) {
  .road-map-bg {
    padding: 0 30px;
  }

  .road-map-card {
    max-width: 360px;
  }

  .road-map-card1 {
    left: 32%;
  }

  .road-map-card2 {
    left: 12%;
  }

  .road-map-card3 {
    left: 30%;
  }

  .road-map-card4 {
    right: 32%;
  }

  .arrowpad {
    width: 60%;
    top: -233px;
    position: relative;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

/* ======================================== faq section starts ================================ */

.faqs-section {
  margin-bottom: 100px;
}

/* .faq-container {
  box-shadow: 0px 0px 4px 0px #d18815;
  border-radius: 19px;
  padding: 40px 20px;
  margin: 20px 40px;
} */
.faq-container {
  box-shadow: 0px 0px 4px 0px #d18815;
  border-radius: 19px;
  padding: 77px 75px;
  margin: 60px 40px;
}

.faqs-section .uni-container {
  width: clamp(200px, 60vw, 100%);
}

.faqs-section-title {
  font-weight: 600;
  font-size: 35px;
  line-height: 75px;
  letter-spacing: 0.42px;
  text-align: center;
  vertical-align: middle;
}

.faq-item {
  padding: 15px 0;
}

.faq-title-container {
  text-align: center;
}

.faq-title {
  font-weight: 800;
  font-size: 35px;
  line-height: 75px;
  text-align: center;
  background: linear-gradient(
    180deg,
    #d3961f 46.43%,
    rgba(211, 150, 31, 0) 93.23%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

.faq-title::before,
.faq-title::after {
  content: "";
  display: inline-block;
  width: 128px;
  /* adjust size */
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.faq-title::before {
  background-image: url("../images/arrowleft.png");
  margin-right: 8px;
  /* space between arrow & text */
}

.faq-title::after {
  background-image: url("../images/arrowright.png");
  margin-left: 8px;
}

/* .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  border-bottom: 1px solid #ffffff80;
  padding: 20px 0px;
} */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  border-bottom: 1px solid #ffffff80;
  padding: 10px 0px;
}

.faq-answer {
  /* transition: max-height 0.4s ease, opacity 0.3s ease; */
  margin: 42px 0px 0;
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
}

.faq-toggle {
  font-size: 22px;
  font-weight: bold;
  width: 20px;
  display: inline-block;
  text-align: center;
  transition: transform 0.3s;
}

.faq-toggle::before {
  content: "+";
  transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] .faq-toggle::before {
  content: "-";
}

/* ===================================== faq section ends =============================== */

/* =================================== stats section =========================== */
.stats-banner {
  margin: 50px auto;
}

.stats-banner-mb {
  display: none !important;
}

.stars-section-content {
  /*background-image: url("../images/creatorbg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;*/
  border-radius: 16px;
  padding: 50px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: #fff;
  background: linear-gradient(180deg, #d18815, #1c1309);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.stat-icon {
  width: 70px;
    height: 70px;
    background: url(../images/starbg.png) no-repeat center / contain;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #d18815;
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    border-right: 3px solid #fff;
}

.stat-icon img {
  width: 36px;
  height: 36px;
}

.stat-info h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
}

.stat-info p {
  margin: 0;
  font-weight: 300;
  font-size: 16px;
  text-transform: uppercase;
}

/* Hide stats banner on non-mobile views */
.stats-banner {
  display: none;
}

/* Large mobile devices */
@media only screen and (min-width: 425px) and (max-width: 767px) {
  .stats-banner {
    display: block;
    margin: 20px auto;
  }

  .stats-banner .container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
  }

  .stars-section-content {
    padding: 22px 20px;
    margin-bottom: 10px;
    flex: 1;
  }

  .stat-item {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
  }

  .stat-icon {
    width: 80px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .stat-info h2 {
    font-size: 48px;
    line-height: 75px;
    margin: 0;
  }

  .stat-info p {
    font-size: 18px;
    margin: 0;
    line-height: 22px;
    font-weight: 400;
  }
}

/* Medium mobile devices */
@media only screen and (min-width: 375px) and (max-width: 424px) {
  .stats-banner {
    display: block;
    margin: 15px auto;
  }

  .stats-banner .container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
  }

  .stars-section-content {
    padding: 10px 12px;
    flex: 1;
  }

  .stat-item {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
  }

  .stat-icon {
    width: 80px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .stat-info h2 {
    font-size: 40px;
    line-height: 65px;
    margin: 0;
  }

  .stat-info p {
    font-size: 12px;
    margin: 0;
  }
}

/* Small mobile devices */
@media only screen and (max-width: 320px) {
  .stats-banner {
    display: block;
    margin: 10px auto;
  }

  .stats-banner .container {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .stars-section-content {
    padding: 20px 10px;
    margin-bottom: 20px;
  }

  .stat-item {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }

  .stat-icon {
    width: 80px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .stat-info h2 {
    font-size: 40px;
    line-height: 55px;
    margin: 0;
  }

  .stat-info p {
    font-size: 12px;
    margin: 0;
  }
}

/* ===================================== contact form section ================================ */
.network-section {
  padding: 100px 20px;
  text-align: center;
}

.network-section .uni-container {
  width: clamp(200px, 60vw, 100%);
}

.network-section h2 {
  font-size: 35px;
  line-height: 41px;
  font-weight: 600;
  padding: 0px;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(180deg, #d18815 54.93%, #1c1309 111.82%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.network-section p {
  font-size: 18px;
  color: #ccc;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 29px;
}

.form-box {
  background: linear-gradient(rgb(6 6 6)) padding-box,
    linear-gradient(180deg, #d18815, #1c1309) border-box;
  border-radius: 12px;
  border: 1.5px solid transparent;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.form-control {
  background: linear-gradient(rgb(8 7 7)) padding-box,
    linear-gradient(180deg, #d18815, #1c1309) border-box;
  border-radius: 8px;
  border: 1px solid transparent;
  color: #fff;
}

.form-control:focus {
  border-color: #ffb84d;
  box-shadow: 0 0 8px rgba(245, 166, 35, 0.5);
  background: transparent;
  color: #fff;
}

.btn-submit {
  background: linear-gradient(180deg, #d18815, #1c1309);
  /* border: 2px solid #D18815; */
  border: none;
  color: #fff;
  padding: 8px 82px;
  border-radius: 60px;
  font-weight: 400;
  font-size: 18px;
  line-height: 31px;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: linear-gradient(90deg, #d18815, #f5a623);
  color: #212529 !important;
}

label {
  font-weight: 300;
  color: #fff;
  margin-bottom: 5px;
  text-align: left;
  display: block;
}

#ModelcontacthomeFormMessage,
#ModelcompanyFormMessage,
#ModelcreatorFormMessage,
#companyFormMessage,
#creatorFormMessage {
  background: none;
  color: #fff;
  border-radius: 10px;
  border: 2px solid #d18815;
  margin-top: 20px;
}

.modal-body .form-box {
  background: none !important;
}

.modal-header {
  border-bottom: none;
  justify-content: right !important;
}

.modal-content {
    background: linear-gradient(rgb(6 6 6)) padding-box,
        linear-gradient(180deg, #d18815, #1c1309) border-box;
    border-radius: 12px;
    border: 1.5px solid transparent;
}

/* Override Bootstrap spinner color */
#companySubmitBtn .spinner-border {
  border-width: 0.2em;
  color: #d18815; /* fallback if needed */
  border-right-color: transparent !important; /* keep spinner effect */
  border-top-color: #d18815 !important;
  border-left-color: #d18815 !important;
  border-bottom-color: #d18815 !important;
}

.invalid-feedback {
  color: red;
  text-align: left;
}

/* .form-control.is-invalid {
    border-color: #d18815;
} */

/* ======================================= contact form section ends =================================== */
/* ======================================================== footer =================================== */

.footer {
  /* background: linear-gradient(180deg, #d18815 54.93%, #1c1309 111.82%); */
  color: #ffffff;
  /* White text color */
  /* padding: 0px 20px; */
  width: 100%;
}

.footer-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 50px 150px;
  background: url("../images/footer-bg.png") no-repeat bottom / cover;

  border: 1px solid #d18815;
  border-bottom: none;
  border-radius: 100px 100px 0 0;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-brand {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}

.footer-brand img {
  width: 60px;
}

.footer-brand h2 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex: 2;
}

.footer-column {
  flex: 1;
  min-width: 150px;
  margin-bottom: 20px;
  padding: 0 15px;
}

.footer-column h3 {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column ul {
  list-style: none;
  padding-left: 0px;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  font-family: "Inter", sans-serif;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
  opacity: 0.8;
}

.footer-bottom {
  border-top: 2px solid rgb(255 255 255 / 65%);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-weight: 400;
  font-size: 14.5px;
  font-family: "Inter", sans-serif;
  opacity: 0.8;
}

.footer-bottom .footer-designed-by a {
  color: #fff;
  text-decoration: none;
}

.footer-brand .creator-content {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  width: 67%;
}

/* Media Queries for different screen sizes */

/* Extra large screens (2560px and above) */
@media (min-width: 2560px) {
  /* .footer-container {
    max-width: 1600px;
    padding: 0 40px;
  } */

  .footer-brand h2 {
    font-size: 32px;
  }

  .footer-column h3 {
    font-size: 18px;
  }

  .footer-column ul li a {
    font-size: 16px;
  }

  .footer-bottom p {
    font-size: 16px;
  }
}

/* Large screens (1920px to 2559.98px) */
@media (min-width: 1920px) and (max-width: 2559.98px) {
  /* .footer-container {
    max-width: 1400px;
    padding: 0 30px;
  } */

  .footer-brand h2 {
    font-size: 28px;
  }

  .footer-column h3 {
    font-size: 17px;
  }

  .footer-column ul li a {
    font-size: 15px;
  }

  .footer-bottom p {
    font-size: 15px;
  }
}

/* Medium-large screens (up to 1536px) */
@media only screen and (max-width: 1536px) {
  /* .footer-container {
    max-width: 1200px;
  } */
}

/* Medium screens (1400px to 1535px) */
@media (min-width: 1400px) and (max-width: 1535px) {
  /* .footer-container {
    max-width: 1100px;
  } */

  .footer-column {
    padding: 0 10px;
  }
}

/* Special case for 1441px width */
@media only screen and (width: 1441px) {
  /* .footer-container {
    max-width: 1150px;
  } */
}

/* Small-medium screens (1200px to 1439px) */
@media only screen and (min-width: 1200px) and (max-width: 1439px) {
  /* .footer-container {
    max-width: 1000px;
  } */

  .footer-column {
    padding: 0 8px;
  }

  .footer-brand h2 {
    font-size: 22px;
  }
}

/* Tablet landscape (992px to 1199px) */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  /* .footer-container {
    max-width: 900px;
  } */

  .footer-container {
    background-size: 109%;
    padding: 50px;
  }

  .footer-brand .creator-content {
    width: auto;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-brand {
    margin-bottom: 30px;
    text-align: center;
  }

  .footer-links {
    justify-content: space-around;
  }

  .footer-column {
    padding: 0 15px;
  }
}

/* Tablet portrait (768px to 991px) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-container {
    /* max-width: 700px; */
    padding: 50px 20px 20px 20px;
    background-size: 117%;
  }

  .footer-brand .creator-content {
    width: auto;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-brand {
    margin-bottom: 30px;
    text-align: center;
  }

  .footer-links {
    justify-content: space-between;
  }

  .footer-column {
    flex-basis: 30%;
    padding: 0 10px;
  }
}

/* Mobile landscape (481px to 767px) */
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .footer-container {
    max-width: 100%;
    padding: 0 20px;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-brand {
    margin-bottom: 30px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
  }

  .footer-column {
    margin-bottom: 25px;
    text-align: center;
  }
}

/* Mobile portrait (350px to 480px) */
@media only screen and (min-width: 350px) and (max-width: 480px) {
  .footer-container {
    max-width: 100%;
    padding: 0 15px;
  }

  /* .footer {
    padding: 30px 0 15px;
  } */

  .footer-top {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .footer-brand {
    margin-bottom: 25px;
    text-align: center;
  }

  .footer-brand h2 {
    font-size: 20px;
  }

  .footer-links {
    flex-direction: row-reverse;

    gap: 13px;
  }

  .footer-column {
    margin-bottom: 20px;
    text-align: center;
  }

  .footer-column h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footer-column ul li a {
    font-size: 13px;
  }

  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    margin-bottom: 30px;
  }

  .footer-column {
    text-align: start;
  }
}

/* Special case for 360px width */
@media only screen and (width: 360px) {
  .footer-container {
    padding: 0 15px;
  }

  /* .footer {
    padding: 30px 0 15px;
  } */

  .footer-brand h2 {
    font-size: 20px;
  }

  .footer-column h3 {
    font-size: 14px;
  }

  .footer-column ul li a {
    font-size: 13px;
  }

  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    margin-bottom: 30px;
  }

  .footer-column {
    text-align: start;
  }
}

/* Small mobile (up to 320px) */
@media only screen and (max-width: 320px) {
  .footer-container {
    max-width: 100%;
    padding: 0 10px;
  }

  /* .footer {
    padding: 25px 0 15px;
  } */

  .footer-top {
    flex-direction: column;
    margin-bottom: 15px;
  }

  .footer-brand {
    margin-bottom: 20px;
    text-align: center;
  }

  .footer-brand h2 {
    font-size: 18px;
  }

  .footer-links {
    flex-direction: column;
  }

  .footer-column {
    margin-bottom: 15px;
    text-align: center;
  }

  .footer-column h3 {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .footer-column ul li a {
    font-size: 12px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    margin-bottom: 30px;
  }

  .footer-column {
    text-align: start;
  }
}

/* ================================================ agency service cards ======================= */

.agency-steps-container {
  width: 100%;
}

.agency-sub-container {
  background: linear-gradient(
    180deg,
    rgba(209, 136, 21, 0.3) 54.93%,
    rgba(28, 19, 9, 0.3) 111.82%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 20px 40px;
  min-height: 145px;
}

.agency-service-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px;
  padding: 0;
  margin-bottom: 100px;
  margin-top: 100px;
}

.agency-step-row {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: flex-start;
  gap: 150px;
  height: 820px;
}

.agency-step-row:first-of-type {
  margin-top: -70px;
}

.agency-card-left-cont,
.agency-card-right-cont {
  position: relative;
}

/* shared glow layer */
.agency-card-left-cont::before,
.agency-card-right-cont::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  /* smooth fade */
  pointer-events: none;
}

/* left glow */
.agency-card-left-cont::before {
  background-image: url("../images/agaency-right-light.png");
  background-position: left center;
}

/* right glow */
.agency-card-right-cont::before {
  background-image: url("../images/agency-left-light.png");
  background-position: right center;
}

.agency-card-left-cont:hover::before,
.agency-card-right-cont:hover::before {
  opacity: 1;
  /* fades in smoothly */
}

.agencystep-card .agencyMain-title {
  font-weight: 800;
  font-size: 50px;
  line-height: 110px;
  letter-spacing: 0.42px;
}

span.gradient-text-style,
.agencystep-card .agencyMain-title span {
  background: linear-gradient(180deg, #d18815 54.93%, #1c1309 111.82%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.agencycard-title {
  font-weight: 600;
  font-size: 28px;
  line-height: 44px;
  letter-spacing: 0.42px;
  text-align: center;
  vertical-align: middle;

  color: #fff;
}

.agency-card-text {
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.42px;
  text-align: center;
  vertical-align: middle;
}

/* connector SVG */
.agency-connector {
  height: 470px;
  width: auto;
  position: absolute;
}

.agency-connector-right {
  top: 50%;
  left: 40%;
}

.agency-connector-left {
  top: 50%;
  right: 40%;
}

/* left row = card then line */
.agency-step-row.agency-card-left {
  flex-direction: row;
}

/* right row = line then card */
.agency-step-row.agency-card-right {
  flex-direction: row-reverse;
}

.agencystep-card {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.1) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  height: fit-content;
  width: 500px;
  overflow: hidden;
  /* border: 2px solid hsl(32.6deg 63.5% 31.39%); */
}

.agency-connector path {
  filter: drop-shadow(0 0 8px #d18815);
  transition: filter 0.4s ease;
}

/* .agency-connector:hover path {
  filter: drop-shadow(0 0 14px #ffb84d);
} */

.agencystep-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  border-radius: 20px;
  z-index: 2;
  transform: translateY(0%);
  transition: transform 0.9s ease-in-out;
}

.agency-card-borderd {
  border: 2px solid hsl(32.6deg 63.5% 31.39%);
  border-radius: 20px;
}

.agencystep-card.reveal::before {
  transform: translateY(100%);
}

.agency-connector path {
  stroke: #d18815;
  stroke-width: 2;
  /* fill: none; */
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  opacity: 0;
  transition: opacity 0.3s;
}

@media (min-width: 768px) {
  .agency-card-left .agencystep-card {
    left: 10%;
  }

  .agency-card-right .agencystep-card {
    right: 10%;
  }
}

/* =========================================== creators why tiktok shop ======================== */

/* service Features */
.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  text-align: left;
}

.service-features .icon {
  font-size: 15px;
  margin-right: 8px;
  color: #ffffff;
  width: 50px;
}

.service-content-text-company {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.service-content-cont-home {
  width: 50%;
}

.service-content-cont-home img {
  width: 100%;
}

/* .service-content-cont {
  max-width: 1000px;
} */

.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 60%;
}

.service-features {
  width: 100%;
}

.graph-area {
  display: flex;
  align-items: flex-start;
  gap: 0px;
  justify-content: center;
  flex-direction: column;
  width: 40%;
}

.graph-area img {
  width: 100%;
}

/* legend container */
.graph-color {
  display: flex;
  gap: 10px;
  flex-direction: row;
  margin-left: 24px;
}

/* shared style for white + yellow legends */
.graph-color .legend {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}

/* small box */
.graph-color .legend span {
  display: inline-block;
  width: 20px;
  height: 18px;
}

/* white box */
.graph-color .white-color span {
  background-color: #fff;
  border: 1px solid #ccc;
}

/* yellow box with gradient border */
.graph-color .yellow-color span {
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(180deg, #d18815 54.93%, #1c1309 111.82%);
  background: #d18815;
}

/*.service-content-text-company p.service-text {*/
/*  font-weight: 300;*/
/*  font-size: 20px;*/
/*  line-height: 31px;*/
/*  letter-spacing: 0;*/
/*  vertical-align: middle;*/
/*  */
/*  text-align: left;*/
/*  width: 100%;*/
/*  margin-bottom: 20px;*/
/*  padding: 0px;*/
/*}*/

.benefits-description {
  font-size: 27px;
  font-weight: 300;
  line-height: 40px;
  text-align: center;
  vertical-align: middle;
}

/* ========================================= styles for slide left, right, bottom ================ */
.slide-from-left,
.slide-from-right,
.slide-from-bottom,
.fade-in,
.zoom-in {
  opacity: 0;
}

.slide-from-left {
  transform: translateX(-20%);
}

.slide-from-right {
  transform: translateX(20%);
}

.slide-from-bottom {
  transform: translateY(20%);
}

.fade-in {
  transform: none;
}

.zoom-in {
  transform: scale(0.8);
}

/* ============================================ responsive code ============================= */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* team-section */
  .team-content {
    padding: 126px !important;
    width: 670px;
    margin-top: 170px;
  }

  /* .team-name {
    line-height: 35px;
  } */

  .team-right {
    margin-right: 25px;
  }

  .wasim-rohel-text {
    padding: 0px !important;
  }

  /* about */
  #about .col-lg-12 {
    margin-top: -152px;
  }

  /* service-section-main */
  .service-title {
    font-size: 39px;
  }

  /* tiktok-shop-section */
  .tiktok-shop-title {
    font-size: 20px;
  }

  .tiktok-shop-buttons {
    padding: 4px;
  }

  /* info-service-cards-section */
  .info-service-cards-section .col-md-4 {
    width: 50%;
  }

  /* steps-section-main */
  .steps-section-main .step-content h1 {
    font-size: 172px;
  }

  .steps-section-main .step-content p {
    font-size: 24px;
  }

  .steps-section-main .step-content p,
  .step-bottom-p {
    line-height: 42px;
  }
}

/* ========================================================================= */

/* ========================================================================= */

/* new */

#companyContentArea,
#creatorContentArea {
  display: none;
  opacity: 0;
  transition: opacity 300ms ease;
}

#companyContentArea.active,
#creatorContentArea.active {
  display: block;
  opacity: 1;
}

#homepage {
  opacity: 1;
  overflow-x: hidden;
  position: relative;
  /* z-index: 999; */
}

#companyContentArea,
#creatorContentArea {
  overflow-x: hidden;
}

/* new */
.right-side-team {
  margin-right: 63px;
}

.left-side-team {
  margin-left: 37px;
}

.tiktok-shop-buttons {
  padding: 11px;
  border-radius: 125px;
}

.who-title {
  padding: 30px 110px;
  margin-top: -10px;
}

.tiktok-shop-wrapper {
  margin-top: 135px;
}

.tiktok-shop-icon img {
  margin-top: -98px;
}

.choice-title {
  font-size: 29px;
}

/* ================================= brand slider ===================================== */

.heading-for-brands {
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 42px;
  line-height: 44px;
  letter-spacing: 0.42px;
  text-align: center;
  vertical-align: middle;
}

.brand-logo-slider .brand-logo-item {
  width: 100%;
  /*height: 200px;*/
  /*padding: 15px 0;*/
  background: rgba(0, 0, 0, 0.6);
  /* semi-transparent background */
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  backdrop-filter: blur(2px);
  /* apply blur to background */
  -webkit-backdrop-filter: blur(2px);
  /* Safari support */
}

.brand-logo-slider .brand-logo-item::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  /* border thickness */
  border-radius: 12px;
  background: linear-gradient(180deg, #d18815 54.93%, #1c1309 111.82%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.brand-logo-slider .brand-logo-item img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.brand-logo-slider .slick-list.draggable .slick-track {
  display: flex;
  gap: 30px;
}

/* ================================= tiktok shop video slider============================ */

/* line 5078 */
.tiktok-shop-wrapper {
  margin-top: 135px;
  margin-bottom: 50px;
}

/* line 1049 */
.tiktok-shop-content {
  padding: 50px 0 0 0;
}

/* line 1012 */
.tiktok-shop-section {
  background: #000;
  background: url(images/bbb1.png);
  background-size: 75%;
  background-position: center;
  background-repeat: no-repeat;
}

.tiktokslider-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1920px;
  height: 125vh;
  /*height: 35%;*/
  /* ✅ exact full screen height */
  gap: 40px;
  padding: 0 20px;
  box-sizing: border-box;
  /* background: url('images/tiktoksliderbg.png') no-repeat center center / cover; */
  overflow: hidden;
  /* ✅ scrollbars hide */
  position: relative;
}

.tiktokslider-section .fadestrip-bottom {
  background: url(../images/bothfade.png);
  background-repeat: repeat;
  position: absolute;
  bottom: -57px;
  width: 100%;
  z-index: 99;
  height: 135px;
  background-size: contain;
}

.tiktokslider-text {
  text-align: justify;
  padding: 0 6%;
  margin-top: 12%;
}

.tiktokslider-text .uni-container {
  width: 100%;
  margin-bottom: 20px;
}

.tiktokslider-text .uni-container .btn-who-we-are {
  padding: 20px 40px;
}

.tiktokslider-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: Inter, sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 31px;

  color: #fff;
  text-align: center;
  gap: 20px;
}

.tiktokslider-left img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.tiktokslider-slider-wrapper {
  flex: 1;
  display: flex;
  gap: 20px;
  height: 150%;
  overflow: hidden;
  transform: rotate(25deg);
  transform-origin: center;
  justify-content: end;
}

.tiktokslider-slider-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  justify-content: center;
  align-items: center;
}

.tiktokslider-card {
  width: 180px;
  /*height: 300px;*/
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.tiktokslider-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .tiktokslider-section {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    /*height: 160vh;*/
    height: 300vh;
    /* ✅ still 100vh */
  }

  .tiktokslider-left {
    order: 1;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 50px;
  }

  .tiktokslider-left img {
    order: 2;
    max-width: 200px;
  }

  .tiktokslider-slider-wrapper {
    order: 3;
    transform: rotate(0deg);
    /* ✅ no tilt */
    gap: 15px;
  }

  .tiktokslider-slider-wrapper .tiktok-slider-track:nth-child(3) {
    display: none;
    /* ✅ hide 3rd column */
  }

  .tiktokslider-card {
    width: 140px;
    height: 220px;
  }

  .stats-banner-mb {
    display: block !important;
  }

  .tiktokslider-text p {
    text-align: center;
  }

  .road-map-bottom-section .fadestrip {
    top: -50px;
  }
}

/* ================================= partners video section ==================================== */

.partner-video-section {
  position: relative;
  padding: 40px 20px;
}

/* Decorative Images */
.partner-decor {
  position: absolute;
  z-index: 1;
}

.decor-left-top {
  width: 150px;
  top: -15%;
  left: 15%;
}

.decor-right-bottom {
  width: 120px;
  bottom: 0;
  right: 10%;
}

.decor-right-top {
  width: 100px;
  top: 0;
  right: 10%;
}

/* Video Grid */
.partner-video-grid {
  display: flex;
  flex-wrap: wrap;
  /* ✅ allow wrapping */
  justify-content: center;
  gap: 0px;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

.partner-video-box {
  flex: 0 0 25%;
  /* ✅ 4 per row by default */
  max-width: 25%;
}

.partner-video-box video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* ✅ Tablets (2 per row) */
@media (max-width: 992px) {
  .partner-video-box {
    flex: 0 0 45%;
    max-width: 45%;
  }
}

/* ✅ Mobile (1 per row) */
@media (max-width: 576px) {
  .partner-video-box {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ========================================= team video ============================= */

.service-video-cont {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  /* overflow: hidden; */
  max-width: 100%;
  margin-bottom: 30px;
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

/*.play-button:hover svg circle {*/
/*    fill-opacity: 1;*/
/*    transform: scale(1.05);*/
/*}*/

.video-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}
