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

:root {
    /* Base colors */
    --color-white: #ffffff;
    --color-black: #000000;

    /* Grays */
    --color-gray-light: #f5f5f5;
    --color-gray-medium: #cccccc;

    /* Accent colors */
    --color-neon-green: #34c759;
    --color-neon-green-hover: #2faf4f;

    /* Text colors */
    --color-text-primary: #000000;
    --color-text-secondary: #333333;

    /* Links */
    --color-link: var(--color-neon-green);
    --color-link-hover: var(--color-neon-green-hover);
}

/* CUSTOM STYLING FOR AOS SLIDES  */
html, body {
  overflow-x: hidden;  
}

[data-aos] {
  will-change: transform;
  backface-visibility: hidden;
}

[data-aos] {
  max-width: 100%;
}


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

body {
    width: 100%;
    font-family: "Poppins", sans-serif;
    /* font-family: 'Luckiest Guy', cursive; */
    background-color: var(--color-white);
    color: var(--color-black);
    font-size: 14px;
    padding: 1rem 10rem;
    cursor:  crosshair;
}




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

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



/* ALL ABOUT HEADER  */
.big{
    display: block;
}
.small{
    display: none;
}


.big {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    width: 100%;
}

.logo {
    width: 20%;
}

nav {
    display: flex;
    gap: 50px;
}

nav a {
    text-decoration: none;
    color: var(--color-black);
    font-size: 1.20rem;
    /* font-weight: bold; */
    font-family: 'Luckiest Guy', cursive;
    columns: var(--color-black);
    transition: 0.3s;
}

nav a:hover{
    color: var(--color-text-secondary);
    text-decoration: underline;
}

.btn {
    display: flex;
    gap: 20px;
}

.btn button {
    padding: 15px 16px;
    border: 1px solid var(--color-gray-medium);
    background: var(--color-white);
    cursor: pointer;
    border-radius: 10px;
    font-size: 1rem;
    /* font-weight: bold; */
}

.btn .register-btn {
    background: var(--color-black);
    color: var(--color-gray-light);
}




/* ALL ABOUT MAIN CONTENT */
main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.content {
    display: flex;
    justify-content: space-between;
    gap: 20rem;
    width: 100%;
}

.content h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    font-family: 'Luckiest Guy', cursive;
}

.content p {
    font-size: 17px;
    /* font-weight: bolder; */
    margin-bottom: 20px;
    color: var(--color-text-secondary);
}

.consult-btn {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 15px 20px;
    border: 1px solid var(--color-text-secondary);
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.4s;
    /* font-weight: bolder; */
}

.consult-btn:hover {
    background: var(--color-white);
    color: var(--color-black);
    border: 1px solid var(--color-text-secondary);
}



/* ALL ABOUT BOUCCING ANIMATION AND CHART  */
.visual {
    min-width: 300px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    right: 5rem;
}


@keyframes melonFloat {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.visual img {
    width: 130%;
  animation: melonFloat 3s ease-in-out infinite;
}



/* CHART SYSTEM  */
/* Bubbles common style */
.bubble {
  position: absolute;
  background: var(--color-white);
  color: var(--color-text-secondary);
  border-radius: 20px;
  padding: 8px 15px;
  font-size: 15px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.5);
  animation: floaty 3s ease-in-out infinite alternate;
  max-width: 250px;
  text-align: center;
}

/* Specific positions */
.top-left {
  top: 30px;
  left: -140px;
}
.top-right {
  top: 90px;
  right: -150px;
}
.bottom-left {
  bottom: 90px;
  left: -150px;
}
.bottom-right {
  bottom: 20px;
  right: -150px;
}
.center-right {
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
}
.center-left{
  top: 30%;
  left: -90px;
  transform: translateY(-50%);
}

/* Shake animation (soft, floaty) */
@keyframes floaty {
  0%   { transform: translate(0px, 0px) rotate(0deg); }
  25%  { transform: translate(-5px, 3px) rotate(-1deg); }
  50%  { transform: translate(5px, -3px) rotate(1deg); }
  75%  { transform: translate(-3px, -5px) rotate(-0.5deg); }
  100% { transform: translate(3px, 5px) rotate(0.5deg); }
}







/* ALL ABOUT SLIDING SOCIAL MEDIA   */
.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(1px);
}

.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);
    }
}





/* GENERAL CSS  */
.head-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-content: center;
}

.highlight {
    font-size: 2.50rem;
    margin-bottom: 10px;
    background: var(--color-neon-green);
    padding: 0.2em 0.6em;
    font-family: 'Luckiest Guy', cursive;
}

.paragraph {
    font-size: 1.10rem;
    color: var(--color-text-secondary);
    width: 60%;
    /* font-weight: bolder; */
    margin-bottom: 3rem;
}



/* ALL ABOUT NEED NO  */
.services-section {
    width: 100%;
    margin: auto;
    text-align: center;
    margin-top: 7rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.nft-card {
  background: linear-gradient(135deg,  #ff4b4b 30%, #43c94c 110%);
  border-radius: 3rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
  max-width: 365px;
  color: #fff;
  height: 100%;
  cursor: pointer;
}

.nft-image {
  position: relative;
}

.nft-card .handle {
  position: absolute;
  left: 5px;              /* a bit outside or adjust as needed */
  top: 97%;
  transform: translateY(-50%);
  width: 18%;
  border-radius: 50%;
  /* border: 4px solid rgb(224, 222, 222); */
  box-shadow: 0 0 6px rgba(0,0,0,0.3); /* optional: subtle shadow */
  background: #fff; /* optional: white bg behind circular image */
  z-index: 1000;
}


.nft-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.nft-badge {
  position: absolute;
  top: 2rem;       /* distance from top */
  left: 0.75rem;      /* distance from left */
  background: rgba(0, 0, 0, 0.5); /* semi-transparent black background */
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 0.5rem;
  font-size: 0.90rem;
  font-weight: 600;
  z-index: 2;
  backdrop-filter: blur(2px);    /* optional: add glassy look */
}


.nft-image {
  position: relative;
}

.nft-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.nft-info {
  padding: 1rem;
  background: rgba(0,0,0,0.3); /* semi-transparent to pop over background */
  backdrop-filter: blur(8px);   /* adds modern glassy look */
}

.nft-info h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.nft-info p {
  margin: 0.5rem 0 1rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.nft-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 0.90rem;
  transition: background 0.3s ease;
}

.nft-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}







/* ALL ABOUT MAKING THINGS HAPPEN  */
.cta-section {
    background: var(--color-gray-medium);
    padding: 3rem 3rem;
    border-radius: 2rem;
    width: 100%;
    /* margin: 2rem auto; */
    margin-top: 7rem;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cta-text {
    max-width: 50%;
}

.cta-text h2 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.60rem;
    margin-bottom: 0.5rem;
}

.cta-text p {
    color: #555;
    font-size: 1.10rem;
    /* font-weight: bolder; */
    margin-bottom: 1.5rem;
}

.cta-button {
    background: #111;
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    /* font-weight: bold; */
    font-size: 1rem;
    transition: 0.4s;
    border: 1px solid var(--color-text-secondary);
}

.cta-button:hover {
    background: var(--color-white);
    color: var(--color-black);
    border: 1px solid var(--color-text-secondary);
}

.cta-graphic {
  position: relative;
  width: 200px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-graphic img{
    width: 150%;
}









/*  ALL ABOUT Join D Fun */
.case-study-section {
    width: 100%;
    margin-top: 7rem;
    /* text-align: center; */
}

.case-study-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.case-study-header p {
    color: #666;
    font-size: 1.05rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.case-study-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.case-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-medium);
    color: var(--color-text-secondary);
    padding: 1.5rem;
    border-radius: 40px;
    max-width: 500px;
    flex: 1 1 250px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 4px 4px var(--color-black);
}

.case-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.case-card a {
    color: var(--color-black);
    text-decoration: none;
    font-weight: bolder;
    font-size: 1rem;
}

.arrow {
    font-size: 1rem;
    margin-left: 0.25rem;
}




/* FLOATING whatsapp   */
.whatsapp-float {
    position: fixed;
    font-family: 'Luckiest Guy', cursive;
    bottom: 30px;
    right: 20px;
    background: #25D366;
    color: var(--color-white);
    font-size: 30px;
    padding: 8px 11px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1000;
    box-shadow: 4px 4px var(--color-black);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: var(--color-neon-green);
    transform: scale(1.1);
}








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

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

.banner button {
    background: var(--color-black);
    border: none;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 20px;
    font-size: 1rem;
    transition: 0.4s;
    border: 1px solid var(--color-text-secondary);
}

.banner button:hover {
    background: var(--color-white);
    color: var(--color-black);
    border: 1px solid var(--color-text-secondary);

}

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

.paper-plane.left {
    top: 30px;
    left: 20px;
    width: 20%;
    height: 70%;
    filter: brightness(0);
}

.paper-plane.right {
    bottom: 20px;
    right: 20px;
    width: 20%;
    height: 70%;
    filter: brightness(0);
}





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

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

.footer__logo img {
    width: 60%;
    margin-bottom: 1rem;
}

.footer__col p {
    margin-bottom: 2rem;
    color: var(--color-text-secondary);
    font-size: 1.05rem;
}

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

.footer__socials a {
    padding: 8px 10px;
    font-size: 25px;
    background: transparent;
    color: var(--color-black);
    border: 2px solid var(--color-black);
    border-radius: 100%;
    transition: 0.4s;
    text-decoration: none;
}

.footer__socials a:hover {
    color: var(--color-neon-green);
    border: 2px solid var(--color-neon-green);
    background: transparent;
}

.footer__col h4 {
    font-family: 'Luckiest Guy', cursive;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
}

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

.footer__col>a:hover {
    text-decoration: underline;
    color: var(--color-black);
}

.footer__bar {
    max-width: var(--max-width);
    margin: auto;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-family: 'Luckiest Guy', cursive;
}







/* MY RESPONSIVNESS  */
@media (max-width: 768px) {
body {
    padding: 1rem 20px;
}


/* ALL ABOUT HEADER  */
.big{
    display: none;
}
.small{
    display: block;
}

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

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

  .nav__logo img {
    max-width: 50%;
  }

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

.hamburger i{
    font-weight: bolder;
  }

/* Close icon inside the menu */
.hold3 .hamburger {
    position: absolute;
    top: 3rem;
    right: 2.50rem;
    color: var(--color-black);
  }

  /* Slide-down menu container */
  .hold3 {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--color-gray-medium);
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-content: space-around;
    z-index: 1200;
    padding: 2rem 2rem;
  }

  .nav{
    display: flex;
    gap: 3rem;
    flex-direction: column;
  }
  .nav a{
    color: var(--color-black);
  }

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

  .btn {
    display: flex;
    flex-direction: column;
    gap: 20px;

}

  .btn button {
    padding: 15px 16px;
    border: 1px solid var(--color-gray-medium);
    background: var(--color-white);
    cursor: pointer;
    border-radius: 10px;
    font-size: 1.20rem;
    font-weight: bold;
    /* font-weight: bold; */
    border: none;
    width: 100%;
}

.btn .register-btn {
    background: var(--color-black);
    color: var(--color-gray-light);
}



  
/* ALL ABOUT MAIN CONTENT */
.content {
    flex-direction: column;
    gap: 4rem;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.content p {
    font-size: 17px;
    margin-bottom: 20px;
}

.consult-btn {
    padding: 18px 20px;
    font-size: 1.10rem;
}

.visual {
    right: 0rem;
}

.visual img {
    width: 90%;
  animation: melonFloat 3s ease-in-out infinite;
}

/* ALL ABOUT BOUCCING ANIMATION AND CHART  */
 .megaphone {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  top: 100px;
}

/* Bubbles common style */
.bubble {
  position: absolute;
  border-radius: 20px;
  padding: 8px 15px;
  font-size: 15px;
  max-width: 220px;
  text-align: center;
}

/* Specific positions */
.top-left {
  top: 0px;
  left: 0px;
}
.top-right {
  top: 70px;
  right: 0px;
}
.bottom-left {
  bottom: 110px;
  left: 0px;
}
.bottom-right {
  bottom: 20px;
  right: 0px;
}
.center-right {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.center-left{
  top: 30%;
  left: 0px;
  transform: translateY(-50%);
}




/* GENERAL CSS  */
.highlight {
    font-size: 2rem;
}

.paragraph {
    width: 100%;
    margin-bottom: 2rem;
}



/* ALL ABOUT SLIDING SOCIAL MEDIA   */
  .crypto-slide-container {
    width: 100%;
    margin: 0rem;
  }

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

  .crypto-slide img {
    width: 40%;
    border-radius: 15px;
  }

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

  .crypto-img {
    display: none;
  }




/* ALL ABOUT MAKING THINGS HAPPEN */
.cta-section {
    padding: 1rem 2rem;
    border-radius: 3rem;
    margin-top: 5rem;
}

.cta-text {
    max-width: 100%;
}

.cta-text h2 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.60rem;
    margin-bottom: 0.5rem;
}

.cta-text p {
    font-size: 1.10rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    background: #111;
    color: #fff;
    padding: 18px 15px;
    border-radius: 10px;
    text-decoration: none;
    /* font-weight: bold; */
    font-size: 1.10rem;
}

.cta-graphic {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

.cta-graphic img{
    width: 90%;
}





/* ALL ABOUT NEED NO  */
.case-card p {
    font-size: 1.08rem;
}

.case-card a, .card a {
    font-size: 1.08rem;
}

.case-study-header{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.case-study-header p {
    text-align: center;
}

.card {
    border-radius: 3rem;
    padding: 1.5rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 100%;
    cursor: pointer;
}

.card h2 {
    font-size: 1.07rem;
    font-weight: lighter;
    line-height: 1.50rem;
    /* font-weight: bolder; */
}



/* FLOATING whatsapp   */
.whatsapp-float {
    /* position: fixed; */
    bottom: 20px;
    right: 10px;
    font-size: 30px;
    padding: 8px 11px;
    box-shadow: 4px 4px var(--color-black);
}


/* ALL ABOUT TELEGRAM GROUP */
.banner h1 {
    font-size: 2em;
}

.banner button {
    background: var(--color-black);
    border: none;
    color: white;
    padding: 18px 20px;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 20px;
    font-size: 1.10rem;
}

.paper-plane.left {
    display: none;
}

.paper-plane.right {
    bottom: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
}
 
    
  /* ALL ABOUT FOOTER SECTION  */
  .review__footer {
    flex-direction: column;
  }

  .footer__logo img {
    width: 40%;
    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 {
    padding: 8px 10px;
    font-size: 20px;
  font-size: 25px;

}

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

  .footer__socials {
    margin-bottom: 2rem;
  }


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

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

  .cool {
    margin: 0px;
  }

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