@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 {
  /* Background / neutrals */
  --bg-900: #001020;
  --bg-800: #101a28;
  --bg-700: #182432;
  --bg-600: #223043;

  /* Primary neon blue highlights (for glows, links, active states) */
  --primary: #384078;
  --primary-bright: rgb(58, 160, 255);
  --primary-bright-opacity: rgb(69, 168, 210, 6%);
  --primary-strong: #2e3f88;

  /* Accent red (glowing red areas in image) */
  --accent-red: #a02020;
  --accent-red-opacity: #a0202052;
  --accent-red-deep: #982020;

  /* Soft supportive colors */
  --muted-blue: #203040;
  --muted-gray: #94a0b0;
  --glass: rgba(255, 255, 255, 0.04);

  /* Text */
  --text-high: #e9f2ff;
  --text-med: #b8c6d8;
  --text-faint: #93a3b5;

  /* Shadows / glows */
  --glow-blue: 0 6px 30px rgba(58, 160, 255, 0.14);
  --glow-red: 0 6px 30px rgba(160, 32, 32, 0.14);

  --coin-size: 80px;
  --orbit-radius: 180px;
  --duration: 14s;

  --gap: 3rem;
  --duration-a: 20s;
  --scroll-start: 0;
  --scroll-end: -100%;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: var(--bg-900);
}

a {
  text-decoration: none !important;
}

ul {
  list-style-type: none;
}

::-webkit-scrollbar {
  width: 4px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-900);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-red-opacity);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-red);
}

html {
  scroll-behavior: smooth;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/*------------
 Header Section 
 --------------*/

.header-section {
  position: fixed;
  z-index: 1000;
  top: 25px;
  width: 100%;
}

.header-section .container .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px 15px 40px;
  border-radius: 50px;
  height: 70px;
  backdrop-filter: blur(4px);
  background-color: var(--primary-bright-opacity);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--accent-red-opacity);
}

.header-section .container .head.scrolled {
  background: var(--bg-900);
  animation: slideDown 2s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-section .container .head .nav-item ul {
  display: flex;
  gap: 0px 30px;
  margin-bottom: 0 !important;
}

.header-section .container .head .nav-item ul li a {
  color: var(--text-high);
  font-weight: 600;
  transition: all 0.5s ease;
}

.header-section .container .head .nav-item ul li a:hover,
.header-section .container .head .nav-item ul li a.active {
  color: var(--accent-red);
  font-weight: 600;
}

.header-section .container .head .btns .btn {
  color: var(--text-high);
  text-decoration: none;
  font-weight: 600;
  margin-left: 10px;
  transition: all 0.5s ease;
  border: 2px solid var(--text-high);
  padding: 12px 25px;
  border-radius: 50px;
}

.header-section .container .head .btns .btn:hover {
  background-color: var(--accent-red);
  border: 2px solid var(--accent-red);
}

.header-section .container .head .btns .btn.second {
  background-color: var(--accent-red);
  color: var(--text-high);
  border: 2px solid var(--accent-red);
}

.header-section .container .head .btns .btn.second:hover {
  background: transparent;
}

.header-section .container .head .menu_toggler i {
  font-size: 29px;
  margin-top: 7px;
}

.header-section .container .head .menu_toggler:focus {
  outline: none;
}

.offcanvas {
  backdrop-filter: blur(30px);
  background-color: var(--primary-bright-opacity);
  padding: 20px 0px;
}

.offcanvas .nav-link {
  color: var(--text-high);
  font-weight: 600;
  padding: 10px 0;
}

.offcanvas .nav-link:hover,
.offcanvas .nav-link.active {
  color: var(--accent-red);
}

.offcanvas .offcanvas-header .btn-close:focus {
  outline: none;
  box-shadow: none;
}

.offcanvas .offcanvas-body .buttons .btn {
  color: var(--text-high);
  font-weight: 600;
  transition: all 0.5s ease;
  border: 2px solid var(--text-high);
  border-radius: 50px;
}

.offcanvas .offcanvas-body .buttons .btn:hover {
  background-color: var(--accent-red);
  border: 2px solid var(--accent-red);
}

.offcanvas .offcanvas-body .buttons .btn.btn-danger {
  background-color: var(--accent-red);
  color: var(--text-high);
  border: 2px solid var(--accent-red);
}

.offcanvas .offcanvas-body .buttons .btn.btn-danger:hover {
  background: transparent;
}

/*------------
 Hero Section 
 -------------*/

.hero_section {
  position: relative;
  width: 100%;
}

.hero_section .candlestict {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../Images/Afters/candlestict.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 110vh;
  z-index: -1;
  opacity: 0.3;
}

.hero_section .blue_vector {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: url("../Images/Afters/blue_vector.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
}

.hero_section .container {
  padding-top: 8%;
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero_section .container .row {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
}

/* Hero Section */
.hero_section .container .row .main_heading {
  grid-column: span 4 / span 4;
  grid-row: span 3 / span 3;
  gap: 20px 0px;
}

.hero_section .container .row .main_heading h1 {
  color: var(--text-high);
  white-space: nowrap;
  font-weight: 900;
  font-family: sans-serif;
  z-index: 3;
  position: relative;
  font-size: 50px;
  margin-top: 20px;
}

.hero_section .container .row .main_heading p {
  color: var(--text-med);
  font-size: 17px;
  position: relative;
  z-index: 3;
  white-space: nowrap;
}

.hero_section .container .row .main_heading p br {
  display: block !important;
}

.hero_section .container .row .main_heading .buttons .first {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  padding-bottom: 15px;
}

.hero_section .container .row .main_heading .buttons .first .button {
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 0px 8px;
  cursor: pointer;
  background-color: var(--clr);
  color: var(--text-high);
  border-radius: 10rem;
  font-weight: 600;
  padding: 9px;
  transition: all 1s ease !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero_section
  .container
  .row
  .main_heading
  .buttons
  .first
  .button
  .button__icon-wrapper {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #fff;
  color: var(--bg-900);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: all 1s ease;
}

.hero_section
  .container
  .row
  .main_heading
  .buttons
  .first
  .button
  .button__icon-wrapper
  i {
  font-size: 20px;
  font-weight: 500;
}

.hero_section .container .row .main_heading .buttons .first .button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -102%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.111);
  transform: skewX(-25deg);
  transition: 2s;
  z-index: 0;
}

.hero_section
  .container
  .row
  .main_heading
  .buttons
  .first
  .button:hover::before {
  left: 150%;
}

.hero_section .container .row .main_heading .buttons .first .button:hover {
  background-color: var(--clr);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.hero_section
  .container
  .row
  .main_heading
  .buttons
  .first
  .button:hover
  .button__icon-wrapper {
  transform: rotate(15deg);
}

.hero_section .container .row .main_heading .trust {
  color: var(--text-high);
  font-size: 12px;
}

/* Social Links */
.hero_section .container .row .social_links {
  grid-column: span 4 / span 4;
  grid-row: span 2 / span 2;
  grid-column-start: 1;
  grid-row-start: 4;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 0px 26px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  background-color: var(--primary-bright-opacity);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--accent-red-opacity);
}

.hero_section .container .row .social_links span,
.hero_section .container .row .social_links strong {
  font-size: 16px;
  color: #979797;
  line-height: 0px;
}

.hero_section .container .row .social_links .social-bar {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: 20px;
}

.hero_section .container .row .social_links .social-bar a {
  color: #e4e4e4;
  font-size: 35px;
  text-decoration: none;
  transition: 0.25s ease;
  background-color: #0088cc30;
  display: grid;
  justify-content: center;
  padding: 8px;
  border-radius: 100px;
}

.hero_section .container .row .social_links .social-bar a:hover {
  background-color: #0088cc60;
}

.hero_section .container .row .copy_trading {
  grid-column: span 4 / span 4;
  grid-row: span 2 / span 2;
  grid-column-start: 6;
  grid-row-start: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero_section .container .row .copy_trading .card {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #0088cc30;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  transform-style: preserve-3d;
}

.hero_section .container .row .copy_trading::before {
  content: "";
  position: absolute;
  background-image: url(../Images/Afters/robot.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  top: 0%;
  left: 91%;
  filter: brightness(0.9);
  z-index: 1;
  height: 100%;
  width: 25%;
}

.hero_section .container .row .copy_trading .card .rooot {
  display: none;
}

.hero_section .container .row .copy_trading .card::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 250%;
  height: 250%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 40%,
    transparent 80%
  );
  transform: rotate(25deg);
  transition: 0.8s;
  opacity: 0;
  pointer-events: none;
}

.hero_section .container .row .copy_trading .card .card-details {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 80%;
}

.hero_section .container .row .copy_trading .card .card-details .text-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-high);
}

.hero_section .container .row .copy_trading .card .card-details .text-parah {
  color: var(--text-med);
  font-size: 0.9rem;
  margin-top: 10px;
}

.hero_section .container .row .copy_trading .card:hover::after {
  opacity: 1;
  top: 0;
  left: 0;
}

.hero_section .container .row .copy_trading .card .card-button {
  width: 70%;
  border-radius: 20px;
  border: none;
  background: linear-gradient(90deg, #203040, #a02020);
  color: white;
  font-size: 1rem;
  padding: 0.6rem 1rem;
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%) scale(0.9);
  opacity: 0;
  transition: all 0.4s ease;
  font-family: "Poppins", sans-serif;
}

.hero_section .container .row .main_heading .buttons .first .button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -102%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.111);
  transform: skewX(-25deg);
  transition: 2s;
  z-index: 0;
}

.hero_section
  .container
  .row
  .main_heading
  .buttons
  .first
  .button:hover::before {
  left: 150%;
}

.hero_section .container .row .copy_trading .card:hover .card-button {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.hero_section .container .row .youtube_box {
  grid-column: span 6 / span 6;
  grid-row: span 3 / span 3;
  grid-column-start: 5;
  grid-row-start: 3;
  background-image: url(../Images/Banners/hero_main.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  position: relative;
  padding: 40px 20px;
  overflow: hidden;
  align-items: center;
  text-align: center;
}

.hero_section .container .row .youtube_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 0;
  transition: all 0.5s ease;
}

.hero_section .container .row .youtube_box:hover::before {
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.65);
}

.hero_section .container .row .youtube_box * {
  position: relative;
  z-index: 1;
}

.youtube_box .yt-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  z-index: 1;
}

.youtube_box .yt-profile {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #fff;
}

.youtube_box .yt-info h3 {
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
}

.youtube_box h2{
  color: var(--text-high);
}

.youtube_box p{
  color: var(--text-med);
} 

.youtube_box .yt-info p {
  margin: 0;
  color: #ddd;
  font-size: 0.8rem;
}
.youtube_box .yt-subscribe {
  margin-left: auto;
  background: var(--accent-red);
  border: none;
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.youtube_box .yt-subscribe:hover {
  background: #cc0000;
}
.youtube_box .yt-watch {
  width: 70%;
  border: none;
  border-radius: 50px;
  background: linear-gradient(90deg, #203040, #a02020);
  color: var(--text-high);
  padding: 0.7rem 1rem;
  font-size: 1rem;
  margin-top: 10px;
  font-weight: 600;
  cursor: pointer;
}

@media screen and (max-width: 1399px) {
  .hero_section .container .row {
    gap: 10px;
  }

  .hero_section .container .row .main_heading h1 {
    font-size: 43px;
  }

  .hero_section .container .row .main_heading p {
    font-size: 13px;
  }

  .hero_section .container .row .social_links .social-bar a {
    font-size: 22px;
  }
}

@media screen and (max-width: 1200px) {
  .hero_section .container {
    padding-top: 12%;
  }
}

@media screen and (max-width: 1199px) {
  .hero_section .container .row {
    grid-template-rows: repeat(4, 1fr);
  }

  .hero_section .container .row .main_heading {
    grid-column: span 4 / span 4;
    grid-row: span 3 / span 3;
  }

  .hero_section .container .row .social_links {
    grid-row: span 1 / span 1;
    grid-row-start: 4;
  }

  .hero_section .container .row .social_links .social-bar {
    gap: 0px;
  }

  .hero_section .container .row .social_links .social-bar a {
    font-size: 17px;
  }

  .hero_section .container .row .copy_trading::before {
    left: 90%;
  }

  .hero_section .container .row .copy_trading {
    grid-column: span 5 / span 5;
    grid-row: span 2 / span 2;
    grid-column-start: 6;
    grid-row-start: 1;
  }

  .hero_section .container .row .youtube_box {
    grid-row: span 2 / span 2;
    grid-row-start: 3;
  }

  .hero_section .container .row .main_heading .buttons .first .button {
    align-items: center;
    gap: 0px 8px;
    font-size: 13px;
  }
}

@media screen and (max-width: 1199px) {
  .hero_section .container .row .copy_trading::before {
    left: 89%;
    top: -17%;
  }
}

@media screen and (max-width: 992px) {
  .hero_section .container .row {
    grid-template-rows: repeat(9, 1fr);
  }

  .hero_section .container .row .main_heading {
    grid-column: span 10 / span 10;
    grid-row: span 4 / span 4;
    text-align: center;
  }

  .hero_section .container .row .main_heading .buttons .first {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-bottom: 15px;
  }

  .hero_section .container .row .social_links {
    grid-row: span 1 / span 1;
    grid-column: span 10 / span 10;
    grid-row-start: 5;
    grid-column-start: 1;
    justify-content: center;
  }

  .hero_section .container .row .social_links .text {
    display: none;
  }

  .hero_section .container .row .social_links .social-bar {
    gap: 0px;
    margin-top: 0px;
    justify-content: space-evenly;
  }

  .hero_section .container .row .copy_trading {
    grid-column: span 4 / span 4;
    grid-row: span 4 / span 4;
    grid-row-start: 6;
    grid-column-start: 1;
  }

  .hero_section .container .row .copy_trading::before {
    left: 89%;
  }

  .hero_section .container .row .youtube_box {
    grid-row: span 4 / span 4;
    grid-column: span 5 / span 5;
    grid-row-start: 6;
    grid-column-start: 6;
  }

  .hero_section .container .row .main_image {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .hero_section .container .row .copy_trading .card .card-details .text-title {
    font-size: 15px;
  }

  .hero_section .container .row .copy_trading .card .card-details .text-parah {
    font-size: 10px;
  }

  .hero_section .container .row .youtube_box h2 {
    font-size: 15px;
  }

  .hero_section .container .row .youtube_box p {
    font-size: 10px;
  }

  .hero_section .container .row .copy_trading .card .card-button {
    opacity: 1 !important;
  }

  .hero_section .container .row .copy_trading::before {
    left: 88%;
  }

  .hero_section .container .row .main_heading h1 {
    white-space: normal;
    font-size: 40px;
  }

  .hero_section .container .row .main_heading h1 span img {
    display: none;
  }

  .hero_section .container .row .main_heading p {
    font-size: 13px;
    width: 100%;
    white-space: normal;
  }

  .hero_section .container .row .main_heading p br {
    display: none !important;
  }
}

@media screen and (max-width: 500px) {
  .hero_section .container {
    padding-top: 15%;
  }

  .hero_section .container .row {
    grid-template-rows: repeat(12, 1fr);
  }

  .hero_section .container .row .copy_trading {
    grid-column: span 10 / span 10;
    grid-row: span 2 / span 2;
    grid-row-start: 6;
    grid-column-start: 1;
  }

  .hero_section .container .row .youtube_box {
    grid-row: span 3 / span 3;
    grid-column: span 10 / span 10;
    grid-row-start: 8;
    grid-column-start: 1;
  }

  .hero_section .container .row .copy_trading::before {
    display: none;
  }
  
  .hero_section .container .row .copy_trading .card .rooot {
    display: block;
    width: 127px;
    position: absolute;
    top: 130px;
    right: -7px;
  }
}

@media screen and (max-width: 470px) {
  .hero_section .container {
    padding-top: 25%;
  }

  .hero_section .container .row .main_heading h1 {
    font-size: 25px;
  }
}

/*-------------- 
Founder Message 
----------------*/

.message {
  position: relative;
  margin-top: 60px;
}

.message::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 130%;
  background: radial-gradient(circle, #982020, transparent 70%);
  top: -100px;
  left: 17%;
  filter: blur(420px);
  opacity: 0.8;
}

.message .container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 0, 82, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  padding: 60px;
  width: 90%;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.owner-message span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}

.owner-message h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.owner-message p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .owner-message {
    text-align: center !important;
    margin-top: 30px;
  }

  .owner-message p {
    font-size: 0.8rem;
  }

  .message {
    margin-top: -150px;
  }

  .crypto-symbol {
    font-size: 0.5rem !important;
  }

  .message .container {
    padding: 10px;
  }
}

/*-------------- 
Coin Price 
----------------*/

#crypto {
  position: relative;
}

#crypto .candlestict {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../Images/Afters/candlestict.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 110vh;
  z-index: -1;
  opacity: 0.3;
}

#crypto .blue_vector {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: url("../Images/Afters/blue_vector.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  opacity: 0.4;
}

.crypto-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  padding: 22px;
  transition: all 0.3s ease;
}

.crypto-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.crypto-header img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.namesss {
  text-align: start;
}

.crypto-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-high);
}

.crypto-symbol {
  font-size: 0.9rem;
  opacity: 0.7;
  color: var(--text-faint);
}

.crypto-price {
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--text-high);
  transition: color 0.3s ease;
}

.crypto-change {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 8px;
}

.up {
  background-color: rgba(0, 255, 100, 0.3);
  color: #00ff88;
}

.down {
  background-color: rgba(255, 0, 0, 0.3);
  color: #ff6b6b;
}

.neutral {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ddd;
}

.highlow {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #aaa;
}

.chart-container {
  margin-top: 12px;
  height: 45px;
}

/*-------------- 
Services 
----------------*/

#trading-services {
  background: transparent;
  position: relative;
  z-index: 10;
}

.text-gradient {
  color: var(--text-high);
  font-size: 45px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
  min-height: 250px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 0, 0, 0.2);
}

.card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card:hover .card-bg {
  opacity: 0.45;
}

.service-content {
  position: relative;
  z-index: 2;
  padding: 25px 20px;
  color: #fff;
}

.service-content h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.service-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/*-------------- 
Join Us 
----------------*/

#what-you-get {
  background: transparent;
  position: relative;
  color: #ffff;
}

#what-you-get .candlestict {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../Images/Afters/candlestict.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 110vh;
  z-index: -1;
  opacity: 0.4;
}

#what-you-get .blue_vector {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: url("../Images/Afters/blue_vector.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  opacity: 0.4;
}

.glass-card {
  border-radius: 30px;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 0, 82, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  box-shadow: 0 0 80px rgba(0, 255, 255, 0.05);
  z-index: 10;
}

.section-title {
  font-weight: 700;
  font-size: 2.8rem;
  background: linear-gradient(90deg, #982020, #ff0202);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px 20px;
  margin-top: 25px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(0, 255, 255, 0.3),
    rgba(255, 0, 255, 0.3)
  );
  opacity: 0;
  transition: 0.5s;
}

.feature-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-red-opacity);
  background: var(--accent-red-opacity);
}

.feature-item:hover::before {
  left: 0;
  opacity: 0.2;
}

.cta-btn {
  position: relative;
  display: inline-block;
  padding: 14px 34px;
  border-radius: 12px;
  background: linear-gradient(90deg, #982020, #d40202);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 1;
  text-align: center;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(255, 0, 0, 0.151);
}

.visual-wrapper {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  transition: 0.5s ease;
}

.visual-img {
  border-radius: 25px;
  transition: 0.6s ease;
}

.visual-wrapper:hover .visual-img {
  transform: scale(1.05);
}

.visual-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(0, 255, 255, 0.25),
    transparent 70%
  );
  opacity: 0;
  transition: 0.5s;
}

.visual-wrapper:hover .visual-glow {
  opacity: 1;
}

@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .glass-card {
    text-align: center;
  }
}

/*---------------
 Youtube Section 
 -----------------*/

.main-video-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.main-video-card iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 25px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.mini-video-item {
  width: 20%;
  height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mini-video-scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 0;
  cursor: grab;
  border-radius: 20px;
  backdrop-filter: blur(15px);
}

.mini-video-scroll-wrapper:active {
  cursor: grabbing;
}

.mini-video-scroll {
  display: flex;
  gap: 15px;
}

.mini-video-item {
  min-width: 150px;
  flex: 0 0 auto;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.mini-video-item img {
  width: 100%;
  display: block;
  border-radius: 15px;
}

.mini-video-item:hover {
  transform: scale(1.1);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 255, 0.05),
    rgba(255, 0, 255, 0.05)
  );
  pointer-events: none;
}

@media (max-width: 992px) {
  .main-video-card iframe {
    height: 250px;
  }

  .mini-video-item {
    min-width: 120px;
  }

  .text-center p {
    width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .main-video-card iframe {
    height: 200px;
  }

  .mini-video-item {
    min-width: 100px;
  }

  .text-center h2 {
    font-size: 1.8rem;
  }

  .text-center p {
    font-size: 0.9rem;
    width: 95%;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .main-video-card iframe {
    height: 180px;
  }

  .mini-video-item {
    min-width: 90px;
  }

  .text-center h2 {
    font-size: 1.5rem;
  }

  .text-center p {
    font-size: 0.8rem;
  }
}

.testimonial-section {
  position: relative;
}

/* Glassy Card Styling */
.testimonial-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.25);
}

.testimonial-img {
  height: 110px;
  width: 250px;
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.stars {
  color: #ffd700;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-shadow: 0 0 5px #ffcc00, 0 0 10px rgba(255, 221, 100, 0.4);
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Remove left padding for middle-left card */
@media (min-width: 768px) {
  .ps-md-0 {
    padding-left: 0 !important;
  }
}

/* Responsive Center Alignment */
@media (max-width: 768px) {
  .col-md-8.offset-md-4 {
    margin-left: 0 !important;
  }

  .testimonial-card {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-img {
    margin-bottom: 1rem;
  }
}

/*----------------
Collabrations Section
------------------*/

#collaborations {
  margin-top: 40px;
  position: relative;
}

#collaborations .candlestict {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../Images/Afters/candlestict.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 110vh;
  z-index: -1;
  opacity: 0.4;
}

#collaborations .blue_vector {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: url("../Images/Afters/blue_vector.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  opacity: 0.4;
}

@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-a) linear infinite;
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }

  to {
    transform: translateX(var(--scroll-end));
  }
}

.logo-box {
  backdrop-filter: blur(2px);
  background: var(--primary-bright-opacity);
  border: 1px solid rgba(95, 95, 95, 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 {
  backdrop-filter: blur(2px);
  background: var(--primary-bright-opacity);
  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 textarea {
  min-height: 180px;
  max-height: 400px;
}

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

#disclaimerModal.modal-open {
  overflow: hidden; /* prevents modal scroll issues without touching body */
}

/* Modal content */
#disclaimerModal .modal-content {
  background: rgba(25, 25, 35, 0.85) !important; /* dark glassy background */
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Modal header */
#disclaimerModal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Close button */
#disclaimerModal .btn-close {
  filter: invert(1);
  transition: transform 0.2s ease;
}
#disclaimerModal .btn-close:hover {
  transform: scale(1.2);
}

/* Headings */
#disclaimerModal h5,
#disclaimerModal h6 {
  color: #fff;
}

/* Modal body */
#disclaimerModal .modal-body {
  line-height: 1.6;
  text-align: justify;
}

/* Modal footer buttons */
#disclaimerModal .modal-footer .btn {
  border-radius: 50px;
  padding: 0.6rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

#disclaimerModal .btn-success {
  background: rgba(0, 200, 83, 0.5);
  border: none;
  color: #ffff;
  box-shadow: 0 4px 15px rgba(0, 200, 83, 0.5);
}
#disclaimerModal .btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 200, 83, 0.6);
}

/* Links inside modal ONLY */
#disclaimerModal a {
  color: #00e5ff;
  text-decoration: underline;
}
#disclaimerModal a:hover {
  color: #00b8d4;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  #disclaimerModal .modal-body {
    text-align: left;
    padding: 1rem 0;
  }
  #disclaimerModal .modal-content {
    padding: 1.5rem;
  }
}

/* Optional: backdrop customization */
#disclaimerModal.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: none;
}
