body {
  background: #000;
  color: #fff;
  font-family:Exo, sans-serif;
}
/* @font-face {
  font-family: 'Curv';
  src: url('fonts/curv.ttf') format('truetype');
} */
/* LOGO */
.logo-img {
  height:100%;
}

/* BUTTONS */
.btn-join {
  background: #ff007b;
  color: #ffffff;
  border-radius: 20px;
  padding: 0px 45px;
  border: none;
  font-weight: 700;
  font-size: 22px;
  text-decoration: none;
}

.btn-login {
  border: 1px solid #ff007b;
  color: #fff;
  border-radius: 20px;
  padding: 0px 45px;
  background: transparent;
  font-weight: 700;
  font-size: 22px;
  text-decoration: none;
}

/* HAMBURGER */
.hamburger {
  font-size: 27px;
  cursor: pointer;
  margin-left: 20px;
}

/* CUSTOM HAMBURGER MENU */
.hamburger-menu {
  display: none;
  position: absolute;
  right: 20px;
  top: 70px;
  background: #111;
  width: 170px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1000;
}

.hamburger-menu a {
  display: block;
  padding: 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.hamburger-menu a:hover {
  background: #ff007b;
}

/* HERO */
.hero {
  background: linear-gradient(rgba(255,43,106,0.8), rgba(0,0,0,0.9)),
              url('hero.jpg') center/cover no-repeat;
  text-align: center;
  padding: 80px 20px;
}
/* Main Banner Carousel Styles */
.main-banner-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.main-banner-carousel .carousel {
  width: 100%;
}

.main-banner-carousel .carousel-inner {
  width: 100%;
}

.main-banner-carousel .carousel-item {
  position: relative;
  width: 100%;
}

.main-banner-carousel .banner-img {
  width: 100%;
  display: block;
  object-position: top center;
}

/* Mobile: Show mobile-banner, Hide desktop-banner */
.main-banner-carousel .desktop-banner {
  display: none !important;
}

.main-banner-carousel .mobile-banner {
  display: block !important;
  height: auto;
  min-height: 200px;
}


.fans-section {
  background: #000;
  color: #fff;
  min-height: 35vh;
}

/* Left stacked text */
.fans-text{
  float: left;
  margin-left: 5%;
}
.fans-text h1 {
  font-size: 40px;
    font-weight: 700;
    line-height: 25px;
    float: left;
    margin-bottom: 0px;
}

.fans-text span {
  display: block;
  color: #444;
}

.fans-text span:nth-child(2) {
  color: #fff;
}

.fans-text span:nth-child(1),
.fans-text span:nth-child(3) {
  opacity: 0.3;
}

/* Count badge */
.fans-count {
  background: #ff007b;
  padding: 1px 0px;
  border-radius: 0px 50px 50px 0px;
  font-size: 39px;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  margin-left:24%;
  width: 50%
}

/* Promotions button */
.promo-btn {
  border: 2px solid #ff007b;
  color: #ff007b;
  padding: 0px 19px;
  font-size: 49px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

.promo-btn:hover {
  background: #ff007b;
  color: #fff;
}

.licensed-section {
  padding: 30px 0;
}

/* Keep row in one line */
.licensed-section .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* RIGHT IMAGE */
.licensed-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* TEXT */

.licensed-section {
  background: #ff007b;
  padding: 0px;
  color: #fff;
}

/* Layout alignment */
.licensed-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

/* Text */
.licensed-text {
  font-size: 48px;
  font-weight: 900;
  margin: 0 auto;
  line-height: 1.2;
}

/* Image */
.licensed-img {
  max-height: 124px;
  width: auto;
  margin: 0 auto;
}

.features-text {
  font-size: 70px;
  font-weight: 700;
}

.features-section {
  background: #000;
  color: #fff;
  padding: 50px 0;
}

/* .features-title {
  font-size: 48px;
  font-weight: 700;
} */

/* ROW */
.feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

/* TEXT */
.feature-text h4 {
  color: #ff007b;
  font-size: 43px;
  font-weight: 800;
  margin-bottom: 0px;
}

.feature-text p {
  color: #fff;
  font-size: 35px;
  font-family: 'Playfair Display', serif;
}

.features-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}


/* Text */
.features-heading h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  margin: 0;
}

/* ICON IMAGE */
.feature-icon img {
  width: 100%;
  height: 90%;
  object-fit: contain;
}

.feature-link {
  justify-content: space-between;
  text-decoration: none;   /* remove underline */
  color: inherit;          /* keep original colors */
}
/* ANIMATION */
.feature-icon {
  opacity: 0;
  transform: translateX(40px);
  animation: iconFade 0.6s ease forwards;
  width: 150px;
  height:120px;
}

.feature-text {
  opacity: 0;
  transform: translateX(-40px);
  animation: textFade 0.6s ease forwards;
  animation-delay: 0.3s;
}

@keyframes iconFade {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes textFade {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.carousel-control-prev,
.carousel-control-next {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 2;
  display: none;
}


.logo-marquee {
  overflow: hidden;
  background: #ff007b; /* match your design */
  padding: 10px 0;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.logo-track img {
  height: 55px;
  margin: 0 30px;
}

.footer-disclaimer {
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  padding: 60px 15px;
  max-width: 900px;
  margin: auto;
}

.footer-disclaimer a {
  color: #fff;
  text-decoration: underline;
}


/* INFINITE SMOOTH LOOP */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
} 


.footer {
  background: #ff007b;
  color: #fff;
  padding: 20px 15px;
  margin-top: 50px;
}

/* .footer-top {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 15px;
} */

.logo {
  font-size: 32px;
  font-weight: bold;
  font-style: italic;
}

/* .social-icons {
  display: flex;
  gap: 12px;
} */
/* .social-icon-img {
  width: 100%;
  height: 100%;
} */

/* .social-icons a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
} */

/* 🔥 18+ IMAGE */
.age-img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

/* .footer-links {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 26px;
  font-family: 'Playfair Display', serif;
} */
/* .footer-brand-logo{
  height:38px; 
  width:auto; 
  display:block;
} */
.licence_html_view h5 {
  color: #fff;
  padding: 12px;
  text-align: center;
}
.licence_html_view img{
  width:100%;
  height:auto;
}
.operator_licence {
  width: 60%;
  margin: 10px auto;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .licensed-text {
    font-size: 40px;
  }

  .licensed-img {
    max-height: 124px;
  }
}


/* Desktop: Show desktop-banner, Hide mobile-banner */
@media (min-width: 769px) {
  .main-banner-carousel .desktop-banner {
    display: block !important;
  }
  
  .main-banner-carousel .mobile-banner {
    display: none !important;
  }

  .fans-text h1 {
    font-size: 50px;
    line-height: 45px;
    text-align: center;
  }

  .fans-count {
    font-size: 46px;
    padding: 4px 0px;
    margin-top: 29px;
    width: 50%;
    text-align: center;
  }

  .promo-btn {
    font-size: 60px;
    padding: 0px 23px;
  }
  .mobile-mt-5 {
    margin-top: 3rem; /* same as Bootstrap mt-5 */
  }
  .mobile-mb-5 {
    margin-bottom: 4rem; /* same as Bootstrap mt-5 */
  }
  .features-heading h2 {
    font-size: 54px;
  }
}

/* Tablet adjustments */
@media (min-width: 577px) and (max-width: 768px) {
  .main-banner-carousel .mobile-banner {
    min-height: 300px;
  }
  .licensed-text {
    font-size: 18px;
  }

  .feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  .mobile-mb-5 {
    margin-bottom: 3rem;
  }

}

/* Mobile adjustments */
@media (max-width: 576px) {
  .main-banner-carousel .mobile-banner {
    min-height: 250px;
  }
  .mobile-mt-5 {
    margin-top: 3rem; /* same as Bootstrap mt-5 */
  }
}

@media (max-width: 400px) {
  .main-banner-carousel .mobile-banner {
    min-height: 200px;
  }
  .mobile-mt-5 {
    margin-top: 2rem; /* same as Bootstrap mt-5 */
  }
  
}
/* MOBILE */
@media (max-width: 768px) {
  
  .logo-img {
    height: 32px;
  }

  .btn-join, .btn-login {
    padding: 0px 32px;
    font-size: 20px;
  }
  .mobile-mt-5 {
    margin-top: 3rem;
  }
  
  .licensed-text {
    font-size: 28px;
    font-weight: 900;
  }

  .licensed-img {
    max-height: 100px;
  }
  /* .features-title {
    font-size: 32px;
  } */

  .feature-row {
    /* flex-direction: column; */
    /* text-align: center; */
    gap: 15px;
  }
  .feature-text p {
    font-size: 27px;
  }
  .feature-text h4 {
    font-size: 33px;
    font-weight: 800;
  }

  .feature-icon {
    text-align:right;
  }

  .feature-icon img {
    width: 90%;
  }
  

  /* .footer-links a {
    font-size: 22px;
  } */
  
}
@media (max-width: 635px){
  /* .footer-links a {
    font-size: 20px;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  } */
}
@media (max-width: 576px){
  .logo-img {
    height: 30px;
  }

  .btn-join, .btn-login {
    padding: 0px 25px;
    font-size: 16px;
  }
  .hamburger{
    margin-left: 13px;
  }

  .licensed-img {
    max-height: 90px;
  }
  .mobile-mb-5 {
    margin-bottom: 3rem;
  }

  /* .footer-links a {
    font-size: 22px;
  } */
}

@media (max-width: 500px){
  .logo-img {
    height: 27px;
  }

  .btn-join, .btn-login {
    padding: 0px 22px;
    font-size: 14px;
    font-weight: 600;
  }
  .hamburger{
    margin-left: 10px;
    font-size: 18px;
  }
  .hamburger-menu a {
    padding: 4px;
    font-size: 12px;
  }
  .hamburger-menu {
    width:130px;
  }
  .mobile-mt-5 {
    margin-top: 3rem;
  }
  .licensed-text {
    font-size: 23px;
  }

  .licensed-img {
    max-height: 80px;
  }
  .feature-text h4 {
    font-size: 28px;
    font-weight: 800;
  }
  .feature-text p {
    font-size: 23px;
  }
  .feature-icon {
    text-align: center;
  }
  .feature-icon img {
    width: 60%;
  }
  .feature-row {
    gap: 10px;
    margin-bottom: 6px;
  }
  .mobile-mb-5 {
    margin-bottom: 3rem;
  }

  .fans-count {
    background: #ff007b;
    padding: 1px 0px;
    border-radius: 0px 50px 50px 0px;
    margin-top: 14px;
    margin-left: 17%;
    width: 50%;
    font-size: 31px;
  }

  /* .footer-links a {
    font-size: 22px;
  } */

}


@media (max-width: 428px){
  .logo-img {
    height: 21px;
  }

  .btn-join, .btn-login {
    padding: 0px 20px;
    font-size: 11px;
  }
  .btn-join {
    padding-top: 1px;
  }
  .hamburger{
    margin-left: 9px;
  }
  .hamburger-menu a {
    padding: 4px;
    font-size: 9px;
  }
  .hamburger-menu {
    width:100px;
  }
  
  .licensed-text {
    font-size: 25px;
  }

  .licensed-img {
    max-height: 70px;
  }
  /* .footer-links a {
    font-size: 22px;
  }
  .footer-links {
    grid-template-columns: repeat(1, 1fr);
  } */
}

@media (max-width: 396px){
  .logo-img {
    height: 22px;
  }

  .btn-join, .btn-login {
    padding: 0px 17px;
    font-size: 9px;
  }
  .btn-join{
    padding-top: 1px;
  }
  
  .hamburger{
    margin-left: 8px;
    font-size: 12px;
  }
  .hamburger-menu a {
    padding: 4px;
    font-size: 9px;
  }
  .hamburger-menu {
    width:100px;
  }
  .fans-count {
    padding: 1px 0px;
    margin-top:11px;
    font-size:32px;
    width: 56%;
    margin-left: 10%;
  }

  .licensed-text {
    font-size: 19px;
  }

  .licensed-img {
    max-height: 70px;
  }

  .content p{
    font-size:12px;
  }
  .fans-text h1 {
    font-size: 32px;
  }
  /* .footer-links a {
    font-size: 22px;
  } */
}


@media (max-width: 366px){
  .logo-img {
    height: 21px;
  }
  .btn-join, .btn-login {
    padding: 0px 17px;
    font-size: 8px;
  }
  .btn-join{
    padding-top: 1px;
  }
  .licensed-text {
    font-size: 16px;
  }
  .licensed-img {
    max-height: 63px;
  }
  /* .footer-links a {
    font-size: 20px;
  } */
}





/* ===== SLIDER WRAPPER ===== */
.testimonial-section {
  margin-bottom: 50px;
}
.ts-owl {
  padding: 0px 0;
}

/* ===== CARD ===== */
.ts-card {
  padding: 10px;
}

/* ===== BACKGROUND IMAGE ===== */
.ts-bg {
  background: url('images/testimonial-shape.webp') no-repeat center;
  background-size: cover;
  height: 350px;
  border-radius: 25px;
  position: relative;
}

/* ===== TEXT CENTER ===== */
.ts-text {
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  text-align: center;
  color: #fff;
}

/* ===== ICON ===== */
.ts-icon {
  font-size: 30px;
  margin-bottom: 10px;
  width: 38px;
  margin: 0 auto;
}

/* ===== TITLE ===== */
.ts-text h3 {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin: 10px 0px;
}

/* ===== DESCRIPTION ===== */
.ts-text p {
  font-size: 14px;
  height: 82px;
  width: 100%;
}

/* ===== STARS ===== */
.ts-stars {
  margin-top: 10px;
  font-size: 16px;
}
.ts-bg {
  height: 30vw;
  width: 30vw;
}
.ts-card {
  width: 32vw;
  margin: 0 auto;
}
/* ===== RESPONSIVE ===== */
 
@media (max-width:949px) {
  .ts-bg {
    height: 45vw;
    width: 45vw;
  }
   .ts-card {
    width: 50vw;
    margin: 0 auto;
  }
}

@media (max-width:575px) {
  .ts-bg {
    height: 72vw;
    width: 72vw;
  }
   .ts-card {
    width: 72vw;
    margin: 0 auto;
  }
  .ts-text p {
    font-size: 14px;
    height: 100px;
    width: 100%;
  }
}

@media (max-width:430px) {
  .ts-text p {
    font-size: 11px;
    line-height: 1.2;
    height: 44px;
    width: 100%;
  }
  /* .footer-links a {
    font-size: 22px;
  } */

  .ts-text {
    top: 49%;
    left: 50%;
    width: 80%;
  }
  .ts-bg {
    height: 77vw;
    width: 77vw;
  }
  .ts-card {
    width: 81vw;
    margin: 0 auto;
  }
}




.footer {
  background: #ff007b;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 30px;
  margin-top: 50px;
}

/* TOP SECTION */
.footer-top {
  margin-bottom: 30px;
}

.footer-logo img {
  height: 40px;
}

.footer-social a {
  margin: 0 8px;
  display: inline-block;
}

.footer-social img {
  width: 50px;
  height: 50px;
}

.footer-age img {
  height: 56px;
}

/* MAIN LINKS */
.footer-main {
  margin-top: 20px;
}
.footer-col{
  text-align:center;
}

.footer-col a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col a:hover {
  opacity: 0.8;
}

/* CONTACT */
/* CONTACT SECTION */
.footer-contact {
  color: #fff;
}

/* EACH ROW */
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 18px;
}

/* ADDRESS ALIGN TOP */
.contact-item.align-start {
  align-items: flex-start;
}

/* ICON STYLE */
.contact-item .icon {
  width: 28px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 3px;
}

/* TEXT */
.contact-item span {
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .contact-item .icon {
    width: 16px;
    height: 16px;
  }

  .footer-social img {
    width: 40px;
    height: 40px;
  }
  .footer-social a {
    margin: 0 5px;
  }

  /* TOP SECTION STACK */
  /* .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  } */

  /* MAIN ROW STACK */
  /* .footer-main {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 25px;
  } */

  /* EACH COLUMN FULL WIDTH */
  .footer-col,
  .footer-contact {
    width: 100%;
    text-align: left;
  }

  /* LINKS CENTER */
  .footer-col a {
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
  }

  /* CONTACT ALIGN CENTER */
   .contact-item {
    margin-bottom: 7px;
    font-size: 16px;
  } 

  /* ADDRESS CENTER */
  .contact-item.align-start {
    align-items: center;
    text-align:left;
  }
}
.footer-main .col-sm-4 {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 656px) {
  .contact-item {
      margin-bottom: 7px;
      font-size: 13px;
  }
  .footer-col a {
    font-size: 13px;
  }
  .footer-social img {
    width: 32px;
    height: 32px;
  }
  .footer-social a {
    margin: 0 3px;
  }
  .footer-logo img {
    height: 35px;
  }
}
@media (max-width: 566px) {
  .footer-col a {
    font-size: 13px;
  }
  .contact-item {
      margin-bottom: 7px;
      font-size: 13px;
  }
  .footer-social img {
    width: 30px;
    height: 30px;
  }
  .footer-social a {
    margin: 0 2px;
  }
  .footer-logo img {
    height: 30px;
  }
  .footer-age img {
    height: 46px;
  }
  .footer-col a {
    margin-bottom: 8px;
  }
}
@media (max-width: 500px) {
  .footer-col a {
    font-size: 10px;
  }
  
  .contact-item {
      margin-bottom: 7px;
      font-size: 10px;
  }
  .footer-social img {
    width: 27px;
    height: 27px;
  }
  .footer-social a {
    margin: 0 2px;
  }
  .footer-logo img {
    height: 30px;
  }
  .footer-age img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .footer-col a {
    font-size: 9px;
  }
  .contact-item {
      margin-bottom: 7px;
      font-size: 9px;
  }
  .footer-social img {
    width: 24px;
    height: 24px;
  }
  .footer-social a {
    margin: 0 1px;
  }
  .footer-logo img {
    height: 25px;
  }
  .footer-age img {
    height: 30px;
  }
}
@media (max-width: 420px) {
  .footer-col a {
    font-size: 7px;
  }
  .contact-item {
      margin-bottom: 3px;
      font-size: 7px;
  }
  .contact-item .icon {
    width: 14px;
    height: 14px;
  }
  .footer-social img {
    width: 20px;
    height: 20px;
  }
  .footer-social a {
    margin: 0 1px;
  }
  .footer-logo img {
    height: 20px;
  }
  .footer-age img {
    height: 25px;
  }
}
@media (max-width: 376px) {
  .footer-col a {
    font-size: 5px;
  }
  .contact-item {
      margin-bottom: 3px;
      font-size: 5px;
  }
  .footer-social img {
    width: 15px;
    height: 15px;
  }
  .footer-social a {
    margin: 0 1px;
  }
  .footer-logo img {
    height: 15px;
  }
  .footer-age img {
    height: 20px;
  }
}

/* ≥500px → 3 columns */
@media (min-width: 300px) {
  .footer-main .col-sm-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}




/* FAQ page css */

.faq-ui {
  background: #000;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

.faq-wrapper {
  max-width: 800px;
  margin: auto;
}

/* Tabs */
.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 25px;
  border-radius: 30px;
  border: 1px solid #ff007b;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
}

.tab-btn.active {
  background: #ff007b;
  border: none;
}

/* Content */
.tab-content {
  display: none;
  margin-left: 42px;
}

.tab-content.active {
  display: block;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid #333;
  padding: 18px 0;
}

.faq-q {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.faq-q span {
  font-size: 30px;
  margin-right: 20px;
  transition: 0.3s;
}

.faq-q p {
  margin: 0;
  font-size: 21px;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  padding-left: 35px;
  color: #ccc;
}

/* Active FAQ */
.faq-item.active .faq-a {
  max-height: 150px;
  margin-top: 10px;
}

.faq-item.active .faq-q span {
  transform: rotate(45deg);
}

.faq-a a {
  color: #ff007b;
  text-decoration: none;
}
/* Responsive */
@media (max-width: 600px) {
  .faq-q p {
    font-size: 15px;
  }

  .tab-btn {
    font-size: 13px;
    padding: 8px 15px;
  }
}

/** promotion page **/

/* Wrapper */
.promo-ui {
  background: #111;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

/* Container */
.promo-ui .promo-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* Card */
.promo-ui .promo-card {
  background: #1c1c1c;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  display: block;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;

}


.promo-ui .promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1px 29px rgb(255 0 123), 0 0 13px rgba(254, 214, 0, 0.2)
  
}

/* Image */
.promo-ui .promo-img {
  position: relative;
}

.promo-ui .promo-img img {
  width: 100%;
  display: block;
  border-radius: 12px 12px 0 0;
}

/* Badge */
.promo-ui .promo-badge {
  position: absolute;
  top: 10px;
  right: -40px;
  background: #ff0033;
  color: #fff;
  padding: 5px 40px;
  font-size: 12px;
  transform: rotate(45deg);
}

.promo-ui .promo-badge.yellow {
  background: #ffc107;
  color: #000;
  border-radius: 20px;
  transform: none;
  right: 10px;
  padding: 5px 12px;
}

/* Content */
.promo-ui .promo-content {
  padding: 20px;
  color: #fff;
}

.promo-ui .promo-content h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.promo-ui .promo-content p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 20px;
}

/* Button */
.promo-ui .promotions-btn-more {
  display: block;
  text-align: center;
  background: #ff007b;
  color: #fff;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  font-size: 19px;
}

.promo-ui .promotions-btn-more:hover {
  background: #ff007b;
}

/* Responsive */
@media (max-width: 768px) {
  .promo-ui .promo-container {
    grid-template-columns: 1fr;
  }
}


.promotion-details {
  background: #000;
  padding: 40px 0;
  font-family: 'Poppins', sans-serif;
}

/* CENTER BOX */
.promotion-details-wrapper {
  max-width: 80%;
  margin: auto;
  background: #2a2a2a;
  border-radius: 25px;
  overflow: hidden;
  color: #fff;
}

/* HERO */
.promotion-details-hero {
  position: relative;
}

.promotion-details-hero img {
  width: 100%;
  object-fit: cover;
}


/* TIME BOX */
.promotion_details_bg {
  background: #2a2a2a;
  border-radius: 17px;
  padding: 50px;
  margin-top: -10px;
  position: relative;
}
.promotion-details-timebox {
  margin: 30px;
  padding: 20px;
  background: #333;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 15px rgba(255,0,0,0.4);
}

.promotion-details-timebox h3 {
  color: #ff007b;
}

.promotion-details-timebox h1 {
  font-size: 32px;
}

.promotion-details-timebox h2 {
  color: #ff007f;
}

/* STEPS */
.promotion-details-steps {
  padding: 15px;
  margin:20px;
}

.promotion-details-steps h4 {
  margin-bottom: 10px;
}

.promotion-details-steps .step {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.promotion-details-steps span {
  min-width: 35px;
  height: 35px;
  border: 2px solid #ff007b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff007b;
}

/* FAQ */
.promotion-details-faq {
  padding: 15px;
  margin:20px;
}

.faq-item {
  border-bottom: 1px solid #444;
  padding: 10px 0;
}

.faq-q {
  display: flex;
  cursor: pointer;
}

/* .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.faq-item.active .faq-a {
  max-height: 80px;
  margin-top: 8px;
} */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.faq-item.active .faq-a {
  max-height: 1000px; /* large enough for all content */
  margin-top: 8px;
}

/* CTA */
.promotion-details-cta {
  padding: 20px;
}

.promotion-details-cta-link {
  display: block;
  text-align: center;
  text-decoration: none;
  background: #ff007b;
  border: none;
  padding: 12px;
  border-radius: 25px;
  color: #fff;
  font-size: 16px;
}
.pink-color{
  color: #ff007b;
}



/* MAIN WRAPPER */
.promotion-details-faq {
  padding: 15px;
  margin: 20px;
}

/* ITEM */
.promotion-details-faq .faq-item {
  border-bottom: 1px solid #444;
  padding: 10px 0;
}

/* QUESTION */
.promotion-details-faq .faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.promotion-details-faq .faq-q p {
  margin: 0;
  font-size: 18px;
}

/* ICON */
.promotion-details-faq .faq-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* ANSWER */
.promotion-details-faq .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

/* ACTIVE STATE */
.promotion-details-faq .faq-item.active .faq-a {
  max-height: 500px;
  margin-top: 8px;
}

.promotion-details-faq .faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* MOBILE PERFECT */
@media (max-width: 480px) {
  .promotion-details-wrapper {
    border-radius: 0;
  }
}
@media (max-width: 500px) {
  .promotion_details_bg {
    padding: 10px;
    margin-top: -10px;
  }
}