* {
  font-family: "Inter", sans-serif;
}
@font-face {
  font-family: myFirstFont;
  src: url(./fonts/headingfonter.otf);
}

.headerfont {
   font-family: myFirstFont;
    background: -webkit-linear-gradient(#D16BA5, #6C5B7B, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* -webkit-text-stroke: 2px #000; */
    text-shadow: 
        2px 2px 0px #FF61D2,   /* neon pink glow */
        4px 4px 0px #6B48FF,   /* purple-blue aura */
        6px 6px 0px #00D4FF,   /* cosmic teal */
        9px 8px 0px #000000;   /* deep black shadow */
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 5px 60px;
}
.fonternewer{
  font-size: 65px !important;
}
.mainHeading {
  text-align: center;
  font-size: 120px;
  color: white;
  font-family: "cloud";
  text-shadow: 2px 2px black;
  font-weight: 900;
}
.newimagesare{
  height: 70% !important;
  width: 50% !important;
  border-radius: 20px !important;
  border: 3px solid #fff;
  margin: 25px 10px;
}
.newimagesare321{
  height: 97% !important;
  width: 95% !important;
  border-radius: 20px !important;
  border: 3px solid #fff;
  /* margin: 25px 10px; */
}
/* .input-group-text {
      cursor: pointer;
    } */
/* .input-group .copy-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
} */
.copy-icon{
  color: #fff;
font-size: 26px;
cursor: pointer;
}
.custom-input-container {
  display: flex;
  align-items: center;
}
.custom-input {
  padding: 10px 15px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 50px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.733); /* Subtle shadow */
  transition: box-shadow 0.3s ease-in-out;
  width: 100%;
  max-width: 100%;
}
.custom-input::placeholder{
  color: #6b6b6be0;
  font-weight: 800;
}
.custom-input:focus {
  outline: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Slightly darker shadow on focus */
}

.subheading {
  text-align: center;
  font-size: 40px;
  color: white;
  text-shadow: 1px 1px black;
}
/* Style the scrollbar */
::-webkit-scrollbar {
  width: 12px; /* Width of the scrollbar */
}

/* Style the track (background of the scrollbar) */
::-webkit-scrollbar-track {
  background: #2f2f2f; /* Light gray */ /* Rounded corners */
}

/* Style the thumb (scrollbar handle) */
::-webkit-scrollbar-thumb {
  background: #141414; /* Dark gray */
  border-radius: 10px;
  border: 1px solid white;
}

/* Hover effect on the thumb */
::-webkit-scrollbar-thumb:hover {
  background: #ff3bd4; /* Darker gray */
}

.navbar-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  margin-bottom: 0;
  font-weight: 900;
  color: #ff3bd4;
}
.navbar-brand:hover {
  color: #ff3bd4;
}
.navbar-brand img {
  width: 90px;
  height: auto;
}
.nav-link {
  color: white;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
}
.nav-link:hover {
  color: #ff3bd4;
}
.menu {
  backdrop-filter: blur(5px);
  background-color: rgba(39, 14, 110, 0.8);
  box-shadow: 0 0 7px white;
  border-radius: 16px;
  padding: 8px 16px;
}
.buyBtn {
  background-color: #141414;
  box-shadow: 0 0 7px white;
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
  padding: 14px 24px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 16px;
  display: inline-block;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease-in-out;
}
.buyBtn:hover {
  background: linear-gradient(90deg, #6dc6c3, #00afa9);
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  transform: scale(1.05);
  box-shadow: 0px 4px 15px #6dc6c397;
}
.buyBtn22:hover {
  background: linear-gradient(90deg, #8ec66d, #23af00) !important;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  transform: scale(1.05);
  box-shadow: 0px 4px 15px #6dc6c397;
}
#hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.49), rgba(0, 0, 0, 0.49)),
    url("./images/mainBg.png");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}
.heroContent {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 130px;
}
.heroContent h4 {
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  /*color: white;*/
  line-height: 3rem;
  
   color: #E0D7FF; /* soft lavender-white */
    text-shadow: 
        0px 0px 6px #8A2BE2,   /* purple glow */
        0px 0px 12px #FF6EC7;  /* pink glow */
    /*line-height: 1.8;*/
    /*font-size: 16px;*/
  
  
}

.heroContent p {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  color: white;
}
.heroImg {
  animation: upDown 3s infinite ease-in-out;
  filter: drop-shadow(0 0 50px gray);
}

@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0);
  }
}

.heroContent h1 span {
  color: #e869cd;
}
.buttonWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.fullBtn {
  width: 50% !important;
  display: flex;
  justify-content: center;
  background-color: #088da1;
  border: 2px solid #088da1;
  align-items: center;
}
.fullBtn:hover {
  background-color: #025461;
}
.fullBtn2 {
  width: 50% !important;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  font-weight: bold;
  height: 70px !important;
  align-items: center;
  background-color: #141414;
  box-shadow: 0 0 7px white;
  transition: all 0.3s ease-in-out;
}
.fullBtn2:hover {
  background: linear-gradient(90deg, #ff3bd4, #ff8bd4);
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  transform: scale(1.05);
  box-shadow: 0px 4px 15px rgba(255, 59, 212, 0.4);
}
#raydium:hover {
  background: linear-gradient(90deg, #001cab, #8e01cf);
  box-shadow: 0px 4px 15px #8e01cf6a;
}
#raydium2:hover {
  background: linear-gradient(90deg, #43cfe8, #b546e8);
  box-shadow: 0px 4px 15px #8e01cf6a;
}
#twitter:hover {
  background: linear-gradient(90deg, #000000, #323232);
  box-shadow: 0px 4px 15px #5c5c5c7c;
}
#telegram:hover {
  background: linear-gradient(90deg, #00d9ff, #419cac);
  box-shadow: 0px 4px 15px #008ba47c;
}

.sectionHeading {
  font-family: myFirstFont !important;
  background: -webkit-linear-gradient(#D16BA5, #6C5B7B, #000000) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 
    2px 2px 0px #FF61D2,
    4px 4px 0px #6B48FF,
    6px 6px 0px #00D4FF,
    9px 8px 0px #000000 !important;
    letter-spacing:1.2px;
}

.customCol {
  color: white;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid white;
  height: 100%;
  background-color: #211420c3;
  transition: all 0.3s ease-in-out;
}
.customCol:hover {
  background-color: #1c101b;
  transform: scale(1.1);
}

/* .fullBtn2 {
  background: #ff3bd4;
  transition: all 0.3s ease-in-out;
}

.fullBtn2:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
} */

.btnIcon {
  width: 45px;
  margin-right: 5px;
}
.listWrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.listItem span {
  color: white;
  font-size: 16px;
  font-weight: 700;
}
.mainBox {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid white;
  background-image: url("https://chillbull.xyz/666770799250cfb1a3a7dda8_glossy-big-bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 0 5px rgb(255, 255, 255), inset 0 0 5px white;
  background-position: 0 0;
  margin-bottom: 40px;
}
.box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex: 1;
}
.box h6 {
  color: white;
  opacity: 0.6;
  margin: 10px 0;
  font-size: 16px;
}
.box h5 {
  font-size: 30px;
  font-weight: 700;
  background: linear-gradient(90deg, rgb(254, 2, 233), white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#cards {
  padding: 100px 0;
  /*background-image: linear-gradient(rgba(0, 0, 0, 0.49), rgba(0, 0, 0, 0.49)),*/
  /*  url("./images/bg2.png");*/
  /*background-position: center;*/
  /*background-size: cover;*/
  /*background-repeat: no-repeat;*/
  
  background-image: url("./images/galaxy-1.jpg"); /* only image */
  background-size: cover;       /* fill full width & height */
  background-position: center;  /* keep it centered */
  background-repeat: no-repeat; /* avoid tiling */
}
#htb {
  padding: 70px 0;
  /*background-image: linear-gradient(rgba(0, 0, 0, 0.69), rgba(0, 0, 0, 0.69)),*/
  /*  url("./images/bg5.png");*/
  /*background-position: center;*/
  /*background-size: cover;*/
  /*background-repeat: no-repeat;*/
  /*position: relative;*/
  background-image: url("./images/galaxy-2.jpg"); /* only image */
  background-size: cover;       /* fill full width & height */
  background-position: center;  /* keep it centered */
  background-repeat: no-repeat; /* avoid tiling */
}

#htb::after,
#htb::before {
  content: "";
  width: 100%;
  height: 80px;
  background-color: transparent;
  backdrop-filter: blur(4px);
  position: absolute;
  z-index: 900;
}

#htb::after {
  /*top: -40px;*/
  left: 0;
}

#htb::before {
  bottom: -40px;
  left: 0;
}

marquee {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: #0c040c;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  height: 85px;
  width: 100%;
  cursor: grab;
  /* padding: 20px 0 !important; */
}
marquee img {
  width: 250px;
  height: auto;
}
.CardsTitle {
  font-size: 80px;
  font-weight: 900;
  text-align: center;
  color: white;
  margin-bottom: 70px;
}
.cardItem2 {
  margin-top: 20px;
  padding: 10px;
  border: 1px solid grey;
  background-color: rgba(19, 19, 19, 0.9);
  box-shadow: 0 0 10px gray;
  backdrop-filter: blur(1px); /* Corrected backdrop-filter syntax */
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}
.cardItem2:hover {
  background-color: #2f2f2f;
}
.cardItem2 h3 {
  margin-top: 15px;
  font-size: 40px;
  color: #ff3bd4;
  font-weight: 900;
  text-align: center;
}
.cardItem2 p {
  color: white;
  font-size: 28px;
  text-align: center;
  font-weight: 600;
}
.cardItem {
  /* margin: 40px; */
  padding: 10px;
  border: 1px solid grey;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(1px); /* Corrected backdrop-filter syntax */
  height: 100%;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}
.cardItem:hover {
  background-color: #2f2f2f;
}
.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cardItem img {
  width: 100%;
  height: auto;
  padding: 20px;
}
.cardItem img:hover {
  animation: zooming 5s infinite ease-in-out;
}
@keyframes zooming {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.cardItem h3 {
  font-size: 25px;
  color: white;
  font-weight: 700;
  text-align: center;
}
.cardItem p {
  color: white;
  text-align: center;
  font-weight: 400;
}
.title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.title img {
  width: 50%;
}
.logoTitle {
  width: 230px !important;
  height: auto;
}
.logoTitle2 {
  width: 430px !important;
  height: auto;
}
footer {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("./images/faq2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #141414;
  text-align: center;
  color: white;
  padding: 2px 100px;
}
footer .company {
  border-top: 1px solid #ffffff;
  font-weight: bold;
  text-decoration: none;
  color: white;
  padding: 10px 0;
}
footer .company img {
  height: 40px;
  width: auto;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.join {
  /*background-image: linear-gradient(rgba(0, 0, 0, 0.49), rgba(0, 0, 0, 0.49)),*/
  /*  url("./images/spaceforceGIF.gif");*/
  background-image: url("./images/spaceforceGIF.gif");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 50px 0;
}
.joinText {
  color: white;
  text-align: center;
  font-size: 20px;
}
.tokenImg {
  width: 100%;
  height: auto;
  box-shadow: 0 0 10px white;
  border-radius: 10px;
}
.tokenItem {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 35px 5px;
  margin-bottom: 30px;
  color: white;
  border-radius: 10px;
  background-color: #382136;
  box-shadow: 0 0 10px white;
  width: 100%;
  box-sizing: border-box !important;
  transition: all 0.3s ease-in-out;
}
.tokenItem:hover {
  transform: translateY(-5px);
}
.tokenItem h1 {
  font-size: 30px;
  color: white;
  text-align: center;
  font-weight: bold;
  margin-bottom: 0;
}
.tokenItem h4 {
  font-size: 30px;
  margin-left: 7px;
  color: white;
  text-align: center;
  font-weight: normal;
  margin-bottom: 0;
}
.tokenItem h5 {
  font-size: 20px;
  margin-left: 7px;
  color: white;
  text-align: center;
  font-weight: normal;
  margin-bottom: 0;
}
.tokenItem .copyIcon {
  font-size: 20px;
  margin-left: 7px;
  color: white;
  text-align: center;
  font-weight: normal;
  cursor: pointer;
}
.tokenItem2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 25px 5px;
  color: white;
  border-radius: 10px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  nav {
    padding: 2px 3px;
  }
  .navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
  }
  .buyBtn {
    padding: 7px 14px;
  }
  .heroContent h1 {
    font-size: 19px;
    line-height: none;
  }
  .heroContent p {
    font-size: 16px;
    line-height: 1.3rem;
  }
  .buttonWrapper {
    gap: 15px;
    flex-wrap: wrap;
  }
  .fullBtn {
    width: 90% !important;
  }
  .listWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  .title img {
    width: 100% !important;
  }
  .mainBox {
    padding: 10px;
    margin-bottom: 40px;
  }
  .CardsTitle {
    font-size: 50px;
  }
 
  }
  .cardItem {
    transform: rotate(0) !important;
  }
  .cardItem img {
    padding: 30px;
  }
  .fullBtn2 {
    width: 90% !important;
  }
  footer {
    padding: 2px 5px;
  }
  .cardItem2 {
    transform: rotate(0) !important;
  }
  footer .company img {
    height: 30px;
    width: auto;
  }
  .logoTitle {
    width: 170px !important;
    height: auto;
  }
  .logoTitle2 {
    width: 100% !important;
  }
  .newimagesare321{
    height: 100% !important;
    width: 100% !important;
   
  }
  .newimagesare{
    height: 90% !important;
    width: 90% !important;
    border-radius: 20px !important;
    border: 3px solid #fff;
    margin: 25px 10px;
  }
  /*#hero {*/
  /*  background-image: linear-gradient(#240b4594, #240b459a),*/
  /*    url("./images/new-bg-1.jpg");*/
  /*}*/
  
  #hero {
  background-image: url("./images/new-bg-1.jpg"); /* only image */
  background-size: cover;       /* fill full width & height */
  background-position: center;  /* keep it centered */
  background-repeat: no-repeat; /* avoid tiling */
}
  #htb {
    /*background-image: linear-gradient(rgba(0, 0, 0, 0.69), rgba(0, 0, 0, 0.69)),*/
    /*  url("./images/m5.png");*/
      
      background-image: url("./images/galaxy-1.jpg"); /* only image */
  background-size: cover;       /* fill full width & height */
  background-position: center;  /* keep it centered */
  background-repeat: no-repeat; /* avoid tiling */
  }
  #cards {
    padding: 100px 0;
    /*background-image: url("./images/m2.png");*/
    
    background-image: url("./images/galaxy-2.jpg"); /* only image */
  background-size: cover;       /* fill full width & height */
  background-position: center;  /* keep it centered */
  background-repeat: no-repeat; /* avoid tiling */
  }
  marquee {
    gap: 10px;
    height: 50px;
    width: 100%;
    cursor: grab;
    /* padding: 20px 0 !important; */
  }
  marquee img {
    width: 130px;
    height: auto;
  }
  footer {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
      url("./images/mblFaq.png");
  }

  .customCol:hover {
    transform: scale(1.01);
  }
  .box h5 {
    font-size: 23px;
  }
  .tokenItem h1 {
    font-size: 23px;
  }
  .tokenItem h4 {
    font-size: 23px;
  }
  .tokenItem h5 {
    font-size: 13px;
    margin-left: 3px;
  }
  .tokenItem .copyIcon {
    font-size: 20px;
    margin-left: 7px;
    color: white;
    text-align: center;
    font-weight: normal;
    cursor: pointer;
  }
  .join {
    /*background-image: linear-gradient(rgba(0, 0, 0, 0.49), rgba(0, 0, 0, 0.49)),*/
    /*  url("./images/m4.png");*/
      
       background-image: url("./images/14237502_5438849.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 50px 0;
  }
}

