@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");


:root {
  --primary-color: #0d0d0d;
  --primary-color-light: #1f2125;
  --primary-color-extra-light: #35373b;
  --secondary-color: #696fdd;
  --secondary-color-dark: #a3a8f0;
  --text-light: #ccc;
  --white: #fff;
  --background-gradient: linear-gradient(135deg, rgb(186, 190, 253) 0%, rgb(66, 71, 158) 100%);
  --background1: linear-gradient(113.36deg, #000002 -12.22%, #9685de 179.61%);
  --background2: linear-gradient(180deg, #d6d9fa, rgb(149, 154, 243));
  --max-width: 1300px;
}



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

html {
  scroll-behavior: smooth;
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Poppins", sans-serif;
  /* font-family: 'Luckiest Guy', cursive; */
  background-color: var(--primary-color);
  font-size: 14px;
}


/* ALL ABOUT NAV AND HAMBURGER */
.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 2rem 1rem;
}



.hide1 {
  display: none;
}

.hide {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  padding: 1rem 1rem;
  margin-bottom: 2rem;
}


.section__header {
  margin-bottom: 1rem;
  font-size: 2.25rem;
  font-weight: 600;
  text-align: center;
  color: var(--white);
  font-family: 'Luckiest Guy', cursive;
}

.section__subheader {
  max-width: 900px;
  margin: auto;
  font-size: 15px;
  text-align: center;
  color: #a8a8b3;
}


.nav__logo img {
  width: 100%;
  display: flex;
}

a {
  text-decoration: none;
}

nav {
  max-width: var(--max-width);
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}


.nav__logo {
  max-width: 150px;
}

.nav-hold {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  /* margin-left: 5rem; */
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.link a {
  position: relative;
  padding-bottom: 0.75rem;
  color: var(--white);
}

.link a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  left: 0;
  bottom: 0;
  background-color: var(--secondary-color);
  transition: 0.3s;
}

.link a:hover::after {
  width: 50%;
}

.btn {
  background: var(--white);
  color: var(--secondary-color);
  transition: all 0.5s ease-in-out;
  padding: 13px 40px;
  border: none;
  border-radius: 10px;
  font-size: 1.10rem;
  cursor: pointer;
  font-weight: 600;
  z-index: 1000;
}

.btn:hover {
  /* transform: scale(1.1); */
  color: var(--secondary-color);
  opacity: 0.70;
  background: var(--white);
}

.transparent {
  background-color: transparent;
  border: .1px solid var(--secondary-color-dark);
  color: var(--white);
  cursor: pointer;
}

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







/* ALL ABOUT THE BLUR IN THE BACKGROUND  */
.bg__blur {
  position: absolute;
  position: fixed;
  box-shadow: 0 0 1000px 100px var(--secondary-color);
  z-index: -1;
  top: 0;
  left: 0;
}

.footer__blur {
  position: absolute;
  position: fixed;
  z-index: -1;
  box-shadow: 0 0 1000px 100px var(--secondary-color);
  bottom: 0;
  right: 0;
}





/* ALL MAIN ABOUT HEADER  */
.header__container {
  position: relative;
  padding-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 2rem;
}

/* GOOGLE TRANSLATOR  */
#google_translate_element {
  margin-top: 1rem;
  display: inline-block;
  border: 1px solid #52536a;
  padding: 5px 10PX;
  background-color: #1f1f2e;
  margin-bottom: 10px;
}



.header__blur {
  bottom: 5rem;
  right: 0;
}

.header__content h4 {
  /* margin-bottom: 1.30rem; */
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
}

.header__content h1 {
  margin-bottom: 1rem;
  font-size: 5rem;
  font-weight: 1000;
  line-height: 5rem;
  color: var(--white);
}

.header__content h1 span {
  font-size: 5rem;
  color: var(--secondary-color);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--white);
}


.header__content p {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 15PX;
}

.header__content .line{
  width: 45%;
}

.features {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  color: var(--white);
}

.header__image {
  position: relative;
}

.header__image::before {
  content: "O";
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 40rem;
  font-weight: 400;
  line-height: 20rem;
  color: var(--secondary-color);
  opacity: 0.1;
  z-index: -1;
}

.mackup-smallscreen{
  display: none;
}

.header__image img {
  width: 50%;
  display: flex;
  align-items: center;
  margin: auto;
  animation: floating 5s infinite ease-in-out;
}


@keyframes floating {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(20px, -20px);
  }

  50% {
    transform: translate(-20px, 20px);
  }

  75% {
    transform: translate(20px, 20px);
  }

  100% {
    transform: translate(0, 0);
  }
}







/* ALL ABOUT SMM reseller panel */
.steps-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
}

.step-card {
  background-color: #2c2d3f;
  padding: 20px 10px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  width: 21%;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

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

.number {
  position: absolute;
  top: 10px;
  right: 10px;
  font-weight: bold;
  color: #6c6c8e;
  font-size: 1rem;
  opacity: 0.6;
}

.step-icon {
  background-color: #52536a;
  width: 20px;
  height: 5px;
  margin: 0 auto 16px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b5a7d1;
  padding: 50px;
}


.title {
  font-size: 1rem;
  color: #b9aecd;
}





/* ALL ABOUT WHY CHOOSE US  */
.explore__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.explore__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.explore__card {
  padding: 1rem;
  background: #2c2d3f;
  border: 1px solid transparent;
  border-radius: 30px;
  transition: 0.3s;
  cursor: pointer;
}

.explore__card:hover {
  background: #34354a;
  border: 1px solid var(--secondary-color-dark);
}

.act {
  background: #34354a;
  border:1px solid var(--secondary-color-dark);
}

.explore__card span {
  display: inline-block;
  padding: 2px 9px;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  color: var(--white);
  background: var(--background-gradient);
  border-radius: 5px;
}

.explore__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}

.explore__card p {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 14px;
}

.explore__card a {
  color: var(--white);
  transition: 0.3s;
}

.explore__card a:hover {
  color: var(--secondary-color);
}







/* ALL ABOUT Top Selling SMM Services */
.container {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-top: 1rem;
}

.platforms {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 25%;
}

.tab {
  background-color: #2c2d3f;
  /* background-color: #1e1f31; */
  color: #ccc;
  /* padding: 16px 20px; */
  border: none;
  border-radius: 12px;
  text-align: left;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
    padding: 9px 12px;
    transition: background 0.35s ease, color 0.3s ease;
}

.tab:hover {
  background-color: #1e1f31;
}

.tab.active {
  background: var(--background-gradient);
  color: white;
}

/* .icon {
  font-size: 20px;
  color: #b9aecd;
} */

button .btn-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.content {
  flex: 1;
  background-color: #2c2d3f;
  padding: 50px 30px;
  border-radius: 16px;
  min-height: 300px;
  width: 85%;
  border: 1px solid var(--secondary-color-dark);
}

.platform-content {
  display: none;
  position: relative;
}

.platform-content .social-media{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10%;
  filter: blur(1px);
}

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

.content h2 {
  color: var(--white);
  margin-top: 0;
  font-size: 25px;
  padding-bottom: 10px;
}

.content .subheader{
font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
}

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

ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  color: var(--text-light);
  font-size: 16px;
}

.check-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--background-gradient); 
  color: var(--primary-color-extra-light);
  border-radius: 50%;
  width: 23px;
  height: 23px;
  font-size: 14px;
  font-weight: bold;
}







/* ALL ABOUT LOGING AND REGISTER */
.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--background-gradient);
  border-radius: 30px;
  padding: 10px 60px;
  color: #fff;
  width: 100%;
  margin: 40px auto;
  gap: 50px;
}

.cta-text {
  flex: 1;
}

.cta-text p {
  font-size: 1.10rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
}

.cta-text strong {
  font-weight: 700;
}

.cta-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.cta-container .btn {
  padding: 15px 50px;
  border: none;
  border-radius: 10px;
  font-size: 1.10rem;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}






.cta-container .primary {
  background-color: #fff;
  color: var(--secondary-color);
}

.cta-container .secondary {
  background-color: transparent;
  border: 1.5px solid #fff;
  color: #fff;  
}

.primary:hover {
  background-color: #fff;
  color: var(--secondary-color);
}

.secondary:hover {
  background-color: transparent;
  color: #fff;
}

.cta-image img {
  max-width: 300px;
  width: 100%;
}









/* ALL ABOUT WHAT WE BUY */
.crypto-slide-container {
  width: 100%;
  overflow: hidden;
}

.crypto-slide {
  gap: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slide-animation 15s linear infinite;
}

.crypto-slide img {
  width: 15%;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 20px;
  /* filter: blur(2px); */
}

.gift-card-img {
  display: block;
}

.crypto-img {
  display: block;
}

.gift-card-img {
  border-radius: 10px;
}

.crypto-img {
  border-radius: 10%;
}

/* Animation */
@keyframes slide-animation {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-50%);
  }

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












/* ALL ABOUT Frequently asked questions */
.faq-container {
  display: flex;
  flex-direction: row-reverse;
  gap: 50px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.faq-detail {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.faq-detail .confused {
  width: 45%;
  margin-top: 1rem;
}

.faq-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 60%;
}

.faq-detail p{
font-size: 1rem;
  line-height: 1.8;
  color: #a8a8b3;
  margin-bottom: 1.2rem;
}

.faq-item {
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  background: var(--background-gradient);
  padding: 15px;
  font-weight: 500;
  cursor: pointer;
  font-size: 15px;
  position: relative;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--background2);
}

.faq-question::after {
  font-weight: bolder;
  font-size: 15px;
  position: absolute;
  right: 15px;
  color: var(--primary-color-extra-light);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  background-color: var(--text-light);
  font-size: 14px;
  color: var(--primary-color-extra-light);
  line-height: 1.5;
  transition: max-height 0.5s ease-in-out, padding 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px;
}






/* ALL ABOUT Our advantages */
.advantage-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
}

.advantage-container .card {
  background-color: #2c2d3f;
  padding: 30px 20px;
  padding-top: 80px;
  border-radius: 12px;
  border: 1px solid var(--secondary-color-dark);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 120%;
  position: relative;
  width: 30%;
}

.advantage-container .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
  background-color: #34354a;
}

.advantage-container .icon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background-color: #52536a;
  width: 70px;
  height: 70px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}


.advantage-container h3 {
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.advantage-container p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #b8b8d0;
  flex-grow: 1;
}






/* Social Media Marketing */
.ads-container {
  display: flex;
  gap: 4rem;
  border-radius: 20px;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  color: #ddd;
}

.ads-image{
  width: 40%;
}

.ads-image img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.ads-text{
  width: 60%;
}

.ads-text .section__header{
  text-align: start;
}

.ads-text h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.ads-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #a8a8b3;
  margin-bottom: 1.2rem;
}









/* Styling for Scroll to Top Button */
.scroll-to-top-btn {
  font-family: 'Luckiest Guy', cursive;
  position: fixed;
  bottom: 30px;
  left: 20px;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.50rem;
  padding: 5px 8px;
  cursor: pointer;
  display: none;
  z-index: 1000;
  background: var(--background-gradient);
  box-shadow: 4px 4px var(--primary-color-light);
  transition: opacity 0.3s ease-in-out;
}

.scroll-to-top-btn.show {
  display: block;
}






/* ALL ABOUT TELEGRAM GROUP */
.banner {
  background: var(--background-gradient);
  color: white;
  text-align: center;
  padding: 40px 20px;
  border-radius: 20px;
  position: relative;
  width: 100%;
}

.banner h1 {
  font-size: 2.50em;
  margin: 0;
  font-family: 'Luckiest Guy', cursive;
}

.banner button {
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 20px;
  font-size: 17px;
}

.banner button:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.paper-plane {
  position: absolute;
  width: 100px;
  height: 100px;
  opacity: 0.1;
}

.paper-plane.left {
  top: 0px;
  left: 20px;
  width: 20%;
  height: 100%;
}

.paper-plane.right {
  bottom: 0px;
  right: 20px;
  width: 20%;
  height: 100%;
}









/* ALL ABOUT FOOTER SECTION  */
.footer__container {
  position: relative;
  display: grid;
  grid-template-columns: 400px repeat(3, 1fr);
  gap: 10rem;
}

.footer__blur {
  bottom: 0;
  right: 0;
}

.footer__logo img {
  width: 50%;
  margin-bottom: 2rem;
}

.footer__col p {
  margin-bottom: 2rem;
  color: var(--text-light);
  font-size: 15px;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__socials a {
  padding: 5px 10px;
  font-size: 20px;
  color: var(--secondary-color-dark);
  border: 2px solid var(--secondary-color-dark);
  border-radius: 100%;
  transition: 0.3s;
  text-decoration: none;
}

.footer__socials a:hover {
  color: var(--white);
  background-color: var(--secondary-color);
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
}

.footer__col>a {
  display: block;
  margin-bottom: 1rem;
  color: var(--text-light);
  transition: 0.3s;
  text-decoration: none;
}

.footer__col>a:hover {
  color: var(--secondary-color);
}

.footer__bar {
  max-width: var(--max-width);
  margin: auto;
  padding: 1rem;
  font-size: 0.8rem;
  color: var(--white);
}







/* MY RESPONSIVNESS  */
@media (max-width: 768px) {
  body {
    font-size: 12px;
    width: 100%;
  }

  .hide {
    display: none;
  }

  /* ALL ABOUT HAMBURGER  */
  nav {
    padding: 0rem 0rem;
  }

  /* Main mobile nav wrapper */
  .mobile-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem;
    background-color: var(--primary-color-dark);
    z-index: 1200;
  }

  /* Logo */
  .nav__logo img {
    max-width: 80%;
  }

  /* Hamburger styles */
  .hamburger {
    font-size: 1.50rem;
    cursor: pointer;
    color: var(--white);
    z-index: 1000;
  }

  /* Slide-down menu container */
  .hold3 {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-color-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: left 0.4s ease;
    z-index: 1200;
    padding: 2rem 1rem;
  }

  /* When the menu is open */
  .hold3.open {
    left: 0;
  }


  /* Close icon inside the menu */
  .hold3 .hamburger {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }

  /* Nav links */
  .nav__links {
    display: flex;
    flex-direction: column;
    gap: 0rem;
    margin-bottom: 5rem;
  }

  .link a {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
  }

  .link a i {
    font-size: 20px;
    /* color: var(--secondary-color); */
  }

  .link a:hover {
    color: var(--secondary-color);
  }

  /* Auth buttons */
  .btn-hold {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .btn.join__now {
    padding: 12px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    background: var(--background-gradient);
    color: var(--white);
    cursor: pointer;
    width: 100%;
    font-size: 16px;
  }
.btn.join__now:hover{
  background: var(--secondary-color);
}





  /* ALL MAIN ABOUT HEADER  */
  .section__container {
    width: 100%;
    margin: 0;
    padding: 3rem 15px;
  }

  .section__subheader {
    width: 100%;
    font-size: 15px;
    /* text-align: start; */
}

.mackup-bigscreen{
  display: none;
}
.mackup-smallscreen{
  display: block;
}

  .header__image::before {
    content: none;
  }

  .header__image img {
    width: 80%;
    display: flex;
    align-items: center;
    padding-top: 1rem;
  }



  .header__container {
    display: flex;
    padding-top: 0rem;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .header__content {
    width: 100%;
  }

#google_translate_element {
    margin-top: 1rem;
    display: inline-block;
    padding: 5px 5px;
    margin-bottom: 0;
}

  .header__content h4 {
    font-size: 13px;
    color: var(--secondary-color-dark);
    margin-top: 1rem;
  }

  .header__content .line {
    display: none;
}

  .header__content h1 {
    margin-bottom: 1rem;
    font-size: 3.50rem;
    line-height: 3.50rem;
  }

  .header__content h1 span {
    font-size: 3.50rem;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--white);
  }

  .header__content p {
    font-size: 13.50px;
    margin-bottom: 1rem;
  }

  .features {
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    gap: 1rem;
    display: none;
  }

  ul li {
    font-size: 13px;
}

  .section__header {
    margin-bottom: 5px;
    font-size: 1.50rem;
    text-align: center;
    font-weight: 600;
    text-align: center;
    color: var(--white);
    padding: 0;
  }




/* ALL ABOUT SMM reseller panel */
.steps-container {
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping */
  overflow-x: auto; /* Horizontal scroll */
  gap: 20px;
  padding: 1rem 0;
  justify-content: start;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  margin-top: 0rem;
}

/* Scrollbar styling (like .price__grid) */
.steps-container::-webkit-scrollbar {
  height: 2px;
}

.step-card {
  width: 100%; /* Each card takes full width of viewport */
  flex: 0 0 auto;
  background-color: #2c2d3f;
  padding: 20px 0px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.steps-container::-webkit-scrollbar-thumb {
  background: var(--secondary-color-dark); /* or pick a custom color */
  border-radius: 4px;
}

.steps-container::-webkit-scrollbar-track {
  background: transparent;
}







 /* ALL ABOUT Top Selling SMM Services */
.container {
  display: flex;
  flex-direction: column;
}

.platforms {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.tab {
  padding: 10px;
  border-radius: 8px;
  font-size: 16px;
  gap: 10px;
}




.content h2 {
    font-size: 20px;
}
.content .subheader {
    font-size: 14px;
}
    .content {
        padding: 30px 10px;
        border-radius: 15px;
        width: 100%;
    }

.platform-content .social-media {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25%;
    filter: blur(1px);
}




  /* ALL ABOUT WHY CHOOSE US  */
  .explore__card {
    padding: 5px;
    background-color: var(--primary-color-light);
    border: 2px solid transparent;
    border-radius: 15px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .explore__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 1rem;
  }

  .act {
    background-color: var(--primary-color-extra-light);
    border: 1px solid var(--secondary-color-dark);
  }

  .explore__card h4 {
    font-size: 15px;
  }

  .explore__card p {
    font-size: 13px;
  }

  .explore__card span {
    font-size: 1.50rem;
  }





  /* ALL ABOUT Our advantages */
.advantage-container {
  display: flex;
  flex-wrap: nowrap; /* No wrapping */
  overflow-x: auto; /* Enable horizontal scroll */
  gap: 20px;
  padding: 1.50rem 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.advantage-container .card {
  flex: 0 0 auto; /* Prevent shrinking */
  min-width: 100%; /* Take full screen width */
  background-color: #2c2d3f;
  padding: 30px 10px;
  padding-top: 80px;
  border-radius: 12px;
  border: 1px solid var(--secondary-color-dark);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.advantage-container .icon {
    border: none;
    width: 70px;
  height: 70px;
}
.advantage-container .icon img{
    width: 60%;
}

.advantage-container .card:hover {
  transform: translateY(0px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
  background-color: #34354a;
}

.advantage-container h3 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 1rem;
}

/* Custom horizontal scrollbar */
.advantage-container::-webkit-scrollbar {
  height: 2px;
}

.advantage-container::-webkit-scrollbar-thumb {
  background: var(--secondary-color-dark);
  border-radius: 4px;
}

.advantage-container::-webkit-scrollbar-track {
  background: transparent;
}








  /* ALL ABOUT WHAT WE BUY  */
  .crypto-slide-container {
    width: 100%;
    margin: 0rem;
  }

  .crypto-slide {
    gap: 10px;
    animation: slide-animation 5s linear infinite;
  }



  .crypto-slide img {
    filter: grayscale(0%);
    width: 40%;
    border-radius: 15px;
  }

  .gift-card-img {
    display: block;
  }

  .crypto-img {
    display: none;
  }



/* ALL ABOUT LOGING AND REGISTER */
.cta-container {
  display: flex;
  flex-direction: column-reverse;
  padding: 30px 20px;
  gap: 30px;
}


.cta-text p {
  font-size: 15px;
}

.cta-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.cta-container .btn {
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 1.10rem;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s ease;
  border: 1px solid var(--white);
  width: 100%;
}








  /* ALL ABOUT Frequently asked questions */
  .faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
.faq-detail p {
    font-size: 14px;
}

  .faq-detail {
    width: 100%;
  }

  .faq-detail .confused {
    width: 60%;
    margin-top: 0rem;
  }

  .faq-details {
    width: 100%;
  }
  .faq-question {
    font-size: 14px;
}

  .faq-question::after {
    font-weight: bolder;
    font-size: 10px;
    position: absolute;
    right: 15px;
    transition: transform 0.3s ease;
  }




/* Social Media Marketing */
.ads-container {
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.ads-image{
  width: 100%;
}


.ads-text .section__header {
  font-size: 1.50rem;
    text-align: center;
}

.ads-text{
  width: 100%;
}

.ads-text p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 0rem;
}



  /* ALL ABOUT FOOTER SECTION  */
  .review__footer {
    flex-direction: column;
  }

  .footer__logo img {
    width: 50%;
    margin-bottom: 0rem;
  }

  .footer__container {
    grid-template-columns: 1fr 500px;
    display: flex;
    gap: 4rem;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }

  .footer__socials a {
    border: 1px solid var(--secondary-color-dark);
}

  .footer__col p {
    font-size: 14px;
}

  .footer__socials {
    margin-bottom: 2rem;
  }

  .footer__socials a {
  font-size: 20px;
}


  .footer__col h4 {
    margin-bottom: 10px;
    font-size: 17px;
  }

.footer__col>a {
  font-size: 15px;
}


  .cool {
    margin: 0px;
  }

  .footer__bar {
    text-align: center;
    font-size: 14px;
    margin: 0;
    padding: 0 10px;
    margin-bottom: 2rem;
  }

  
}