@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --red-color: #D31520;
  --gray-color: #8992a4;
  --black-color: #000000;
  --black-700-color: #303030;
  --black-600-color: #6d6d6d;
  --black-500-color: #7e7e7e;
  --white-color: #ffffff;
  --white-700-color: #dddddd;
  --white-600-color: #adadad;
  --red-hover-color: #e8213c;
  --blue-color: #152960;
  --navy-color: #02243f;
  --dark-gray-color: #2b2a3e;
  --dark-navy-color: #011a2e;
  --blue-hover-color: #12344f;
  --navy-hover-color: #0f1722;


  --first-color: #d31520;
  --second-color: #e8213c;
  --third-color: #152960;
  --forth-color: #02243f;
  --fifth-color: #2b2a3e;
  --sixth-color: #011a2e;
  --seventh-color: #8992a4;
  --eighth-color: #e7e8ec;
  --ningth-color: #272F3A;
  --tenth-color: #12344f;
  --eleventh-color: #0f1823;


  --gap: 3rem;
  --duration: 20s;
  --scroll-start: 0;
  --scroll-end: -100%;

}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none !important;
}

ul {
  list-style-type: none;
}

body {
  background-image: url(../images/background/Group\ 9.jpg);
  background-size: 100% 100%;
  background-repeat: repeat;
}

html {
  scroll-behavior: smooth;
}

/* ----- CHANGE THE SCROLL BAR DESIGN ----- */
::-webkit-scrollbar {
    width: 10px;
    border-radius: 25px;
}

::-webkit-scrollbar-track {
    background: var(--eleventh-color);
}

::-webkit-scrollbar-thumb {
    background: var(--black-700-color);
    border-radius: 30px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--black-500-color);
}


/*-----------------
 Banner container 
 ------------------*/

.banner {
  padding-top: 100px;
  min-height: 750px;
  position: relative;
  color: var(--white-color);
}

.banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 0;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.banner .text-area h1 {
  font-weight: 900;
  font-size: 74px;
  line-height: 4.5rem;
  position: relative;
  z-index: 1;
}

.banner .text-area h1::after {
  content: "";
  position: absolute;
  height: 200px;
  width: 150px;
  top: -66px;
  left: -72px;
  z-index: -1;
  background-color: var(--red-color);
  clip-path: polygon(0 0, 43% 0, 100% 100%, 58% 100%);
}

.banner .text-area p {
  color: var(--white-600-color);
  line-height: 1.6rem;
  margin-top: 25px;
}

.banner .text-area .description-btn {
  width: auto;
  display: inline-block;
  background-color: var(--red-color);
  color: var(--white-color);
  text-align: center;
  font-size: 18px;
  transform: skew(35deg);
  padding: 12px 30px;
  margin-top: 25px;
  transition: all 0.3s;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.banner .text-area .description-btn .btn-icon {
  background-color: var(--gray-color);
  width: 20px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s;
  z-index: 1;
}

.banner .text-area .description-btn .name-description {
  position: relative;
  z-index: 2;
  transform: skew(-35deg);
  display: inline-block;
  width: 100%;
  text-align: center;
}

.banner .text-area .description-btn:hover .btn-icon {
  width: 92%;
}

.banner .image-area img {
  max-width: 100%;
  height: auto;
  filter: saturate(2);
  animation: upDownMotion 3s ease-in-out infinite;
}

@keyframes upDownMotion {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

.social-sidebar {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: linear-gradient(to left, rgba(173, 216, 230, 0.03), rgba(255, 0, 0, 0.09));
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 0, 0, 0.1);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.social-sidebar a {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-sidebar a:hover {
  background: #ddd;
}

.social-sidebar i {
  font-size: 18px;
  color: black;
}

@media (max-width: 992px) {
  .banner {
    padding-top: 60px;
    min-height: auto;
    text-align: center;
  }

  .banner .container {
    flex-direction: column;
    padding: 50px 15px;
  }

  .banner .text-area h1 {
    font-size: 48px;
    line-height: 3.2rem;
  }

  .banner .text-area h1::after {
    height: 100px;
    width: 90px;
    top: -6px;
    left: 190px !important;
  }

  .banner .text-area p {
    font-size: 16px;
  }

  .banner .image-area {
    padding-left: 0;
    margin-top: 30px;
  }
}

@media (max-width: 766px) {
  .banner .text-area h1::after {
    left: 100px !important;
  }

  .banner .image-area img {
    max-width: 50%;
  }
}

@media (max-width: 576px) {
  .banner .text-area h1 {
    font-size: 34px;
    line-height: 2.5rem;
  }

  .banner .text-area p {
    font-size: 14px;
  }

  .banner .text-area .description-btn {
    font-size: 16px;
    padding: 10px 20px;
  }

  .social-sidebar {
    right: 10px;
    padding: 6px;
  }

  .social-sidebar a {
    width: 32px;
    height: 32px;
    margin: 6px 0;
  }

  .social-sidebar i {
    font-size: 14px;
  }

  .banner .text-area h1::after {
    height: 70px;
    width: 70px;
    top: 2px;
    left: 140px;
  }

}

@media (max-width: 395px) {
  .banner .text-area h1::after {
    left: 63px !important;
  }
}


/*--------------
 About Section 
 ---------------*/

.about-section {
  border-radius: 20px !important;
  padding: 0px 30px !important;
}

.about-section .about-text h2 {
  font-size: 2.5rem;
  color: var(--white-color);
}

.about-section .about-text p {
  color: var(--white-color);
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-section .about-text .highlight {
  color: var(--first-color);
  font-weight: 600;
}

.about-section .about-image img {
  max-width: 80%;
}

.about-section {
  display: none;
}

@media (min-width: 992px) {
  .about-section {
    display: block;
  }
}

/*--------------
 Coins Section 
---------------*/
.crypto-prices {
  position: relative;
  margin-top: 140px;
  z-index: 1;
  overflow-x: hidden;
}

.crypto-prices::before {
  content: "";
  background-color: var(--red-color);
  position: absolute;
  width: 100%;
  top: 45%;
  opacity: .5;
  height: 10px;
  z-index: -1;
}

.crypto-prices .container {
  display: flex;
  justify-content: center;
  background-color: var(--blue-hover-color);
  transform: skew(30deg);
  flex-wrap: wrap;
  gap: 20px;
}

.crypto-prices .container .pick {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10px;
  color: var(--white-color);
  flex: 1 1 calc(33.33% - 40px);
  max-width: calc(33.33% - 40px);
  transform: skew(-30deg);
  box-sizing: border-box;
}

.crypto-prices .container .pick .name {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.crypto-prices .container .pick .name img {
  width: 32px;
  height: 32px;
  margin-top: -5px;
}

.crypto-prices .container .pick .name .info {
  display: flex;
  flex-direction: column;
}

.crypto-prices .container .pick .name .info h4 {
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}

.crypto-prices .container .pick .name .info span {
  font-size: 12px;
  color: var(--black-600-color);
  margin-top: 2px;
}

.crypto-prices .container .pick .price {
  margin-top: 10px;
  padding-left: 40px;
  display: flex;
  align-items: baseline;
}

.crypto-prices .container .pick .price h2 {
  font-size: 27px;
  margin: 0;
}

.crypto-prices .container .pick .price p {
  margin: 0 0 0 10px;
  font-size: 14px;
}

.green {
  color: green !important;
}

.red {
  color: red !important;
}

@media (max-width: 991px) {
  .crypto-prices .container .pick {
    flex: 1 1 calc(50% - 40px);
    max-width: calc(50% - 40px);
  }
}

@media (max-width: 600px) {
  .crypto-prices .container .pick {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .crypto-prices .container {
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to left, rgba(173, 216, 230, 0.03), rgba(31, 30, 88, 0.09));
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 0, 0, 0.1);
    transform: skew(0deg);
    border-radius: 20px;
    width: 80%;
  }

  .crypto-prices {
    margin-top: 50px;
  }

  .crypto-prices::before {
    display: none;
  }

  .crypto-prices .container .pick {
    transform: skew(0deg);
  }

  .crypto-prices .container .pick {
    flex: 1 1 100%;
    max-width: 600px;
  }
}

/*----------------
 Services Section
------------------*/

.services {
  margin-top: 140px;
}

@media (max-width: 992px) {
  .services {
    margin-top: 50px;
  }
}

/*----------------
 Join Us Section
------------------*/

.free-card {
  clip-path: polygon(0 0, 80% 0, 100% 23%, 100% 100%, 0 100%, 0% 50%);
  background: linear-gradient(to left, rgba(75, 88, 92, 0.1), rgba(41, 39, 136, 0.09)) !important;
  backdrop-filter: blur(6px) !important;
  backdrop-filter: blur(8px);
}

.free-card ul li {
  margin-bottom: 10px;
  font-size: 19px;
}

.free-card ul li span {
  color: #00ff7f;
  font-weight: 600;
  text-shadow: 0 0 5px #00ff7f, 0 0 10px #00ff7f, 0 0 20px #33ff99;
  animation: greenPulse .50s infinite alternate;
}

@keyframes greenPulse {
  from {
    text-shadow: 0 0 5px #00ff7f, 0 0 10px #00ff7f, 0 0 20px #33ff99;
  }

  to {
    text-shadow: 0 0 10px #00ff7f, 0 0 20px #33ff99, 0 0 40px #66ffcc;
  }
}

.subscription .container .row h3 {
  color: var(--red-color);
  text-shadow:
    0 0 50px var(--first-color),
    0 0 30px var(--first-color),
    0 0 13px var(--first-color),
    0 0 25px var(--first-color),
    0 0 80px var(--first-color);
  font-size: 32px;
  animation: redPulse 1s infinite alternate;
}

@keyframes redPulse {
  from {
    text-shadow: 0 0 5px var(--first-color), 0 0 10px var(--first-color), 0 0 20px var(--first-color);
  }

  to {
    text-shadow: 0 0 10px var(--first-color), 0 0 20px var(--first-color), 0 0 40px var(--first-color);
  }
}

.description-btn {
  width: auto;
  display: inline-block;
  background-color: var(--gray-color);
  color: var(--blue-color);
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  transform: skew(35deg);
  padding: 12px 30px;
  margin-top: 25px;
  transition: all 0.3s;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.description-btn .btn-icon {
  background-color: var(--red-color);
  width: 20px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s;
  z-index: 1;
}

.description-btn .name-description {
  position: relative;
  z-index: 2;
  transform: skew(-35deg);
  display: inline-block;
  width: 100%;
  text-align: center;
}

.description-btn:hover .btn-icon {
  width: 92%;
}

@media (max-width: 992px) {
  .free-card ul li {
    margin-bottom: 10px;
    font-size: 14px;
  }
}

/*----------------
Youtube Section
------------------*/

#youtube .btn-danger {
  border-radius: 50px;
  box-shadow: 0 0 15px rgba(255, 50, 50, 0.6);
  transition: all 0.3s ease;
}

#youtube .btn-danger:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 25px rgba(255, 50, 50, 0.9);
}

#youtube .video-frame {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#youtube .video-frame:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
}

/*----------------
Testimonials Section
------------------*/

#testimonial_area {
  margin-top: 140px;
}

@media (max-width: 992px) {
  #testimonial_area {
    margin-top: 50px;
  }
}

#testimonial_area h1 {
  font-size: 52px;
}

.testimonial-img {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/*----------------
Collabrations Section
------------------*/

#collaborations {
  margin-top: 140px;
}

@media (max-width: 992px) {
  #collaborations {
    margin-top: 50px;
  }
}

.marquee {
  display: flex;
  overflow: hidden;
  gap: var(--gap);
  max-width: 100%;
  position: relative;
}

.marquee_group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }

  to {
    transform: translateX(var(--scroll-end));
  }
}

.logo-box {
  background: linear-gradient(to left, rgba(173, 216, 230, 0.03), rgba(31, 30, 88, 0.09));
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 0, 0, 0.1);
  border-radius: 12px;
  padding: 15px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.logo-box img {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

/*----------------
Contact Section
------------------*/

.contact-glass {
  background: linear-gradient(135deg, rgba(88, 30, 30, 0.05), rgba(28, 34, 71, 0.6));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-glass input::placeholder,
.contact-glass textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-glass img {
  filter: brightness(60%);
}

.contact-glass .btn-danger {
  border-radius: 50px;
  box-shadow: 0 0 15px rgba(255, 50, 50, 0.6);
  transition: all 0.3s ease;
}

.contact-glass .btn-danger:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 25px rgba(255, 50, 50, 0.9);
}

