/* Navbar */
    .navbar {
      background: transparent;
      z-index: 1000;
    }

    /* Hero */
    .hero {
      height: 100vh;
      position: relative;
      overflow: hidden;
    }

    /* Video */
    .bg-video {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      top: 0;
      left: 0;
      z-index: -2;
    }

    /* Overlay */
    .overlay {
      position: absolute;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      top: 0;
      left: 0;
      z-index: -1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      top: 50%;
      transform: translateY(-50%);
    }

    .hero-content h1 {
      font-size: 60px;
      font-weight: bold;
      text-align: center;
      justify-content: center;
    }
   .hero-content h1 span {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

    .hero-content p {
      font-size: 20px;
    }

    
.hero-title {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1s ease forwards;
}


.hero-subtitle {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.4s;
}

.hero-btn {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.8s;
}

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

    .btn-gradient {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(90deg, #00c6ff, #ff00cc);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}


.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 247, 6, 0.3);
  color: #fff;
}


.custom-navbar {
  transition: all 0.3s ease;
  padding: 15px 0;
}


.logo {
  width: 80px;
}


.custom-navbar .nav-link,
.custom-navbar .navbar-brand span {
  color: white;
  transition: 0.3s;
}
.nav-link:hover{
  color:#06f7f3 ;
}

.custom-navbar.scrolled {
  background: #000000;
  box-shadow: 0 10px 10px rgba(252, 247, 150, 0.1);
  border-bottom: solid 1px #fff;
}


.custom-navbar.scrolled .nav-link,
.custom-navbar.scrolled .navbar-brand span {
  color: #fff;
}

.custom-navbar.scrolled .nav-link:hover{
  color:#06f7f3
}

/* Buttons fix on scroll */
.custom-navbar.scrolled .login-btn {
  border-color: #000000;
background: linear-gradient(45deg, #00fffb, #2231ff);
  color: #ffffff;
}

.custom-navbar.scrolled .register-btn {
  background: #000;
  border: 2px solid #06f7f3;
  color: #fff;
}




.login-btn {
  border: 2px solid #06f7f3;
  color: #fff;
  padding: 6px 18px;
  border-radius: 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}


.login-btn:hover {
  background:linear-gradient(90deg, #00c6ff, #ff00cc);
  color: #000;
  transform: scale(1.05);
}

.register-btn {
  position: relative;
overflow: hidden;
  background: linear-gradient(45deg, #00fffb, #2231ff);
  color: #fff;
  padding: 6px 18px;
  border-radius: 30px;
  border: none;
  transition: all 0.4s ease;
}

.register-btn:hover {
  background: linear-gradient(45deg, #22f4ff, #ff00ea);
  color: #000;
  transform: scale(1.08);
  box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
}

.register-btn::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.3);
  transition: 0.4s;
}

.register-btn:hover::before {
  width: 100%;
}

/* home about section */
.about-premium {
  background: #0c1223;
  color: #fff;
}

.about-heading {
  font-size: 42px;
  font-weight: bold;
}

.about-heading span {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-sub {
  color: #aaa;
}


.glass-card {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}

.glass-card:hover {
  transform: translateY(-5px);
}


.image-wrapper {
  overflow: hidden;
  border-radius: 20px;
}

.image-wrapper img {
  transition: 0.5s;
}

.image-wrapper:hover img {
  transform: scale(1.1);
}

.stats h3 {
  font-size: 28px;
  font-weight: bold;
}

.stats p {
  font-size: 15px;
  color: #aaa;
}
.stat-number {
  font-size: 32px;
  font-weight: bold;
}

.plus {
  color: #00c6ff;
  margin-left: 3px;
  font-size: 26px;
  animation: glow 1.5s infinite alternate;
}


@keyframes glow {
  from {
    text-shadow: 0 0 5px #00c6ff;
  }
  to {
    text-shadow: 0 0 15px #ff00cc;
  }
}

/* home choose section */

.why-section {
  background: #0b0f1a;
  color: #fff;
}

.why-heading {
  font-size: 42px;
  font-weight: bold;
  
}

.why-heading span {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.why-card {
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(248, 247, 247, 0.5);
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(90deg, #00c6ff, #ff00cc);
  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: 0.4s;
}

.why-card:hover::before {
  opacity: 1;
}

.icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}

.bg-blue { background: linear-gradient(45deg, #00c6ff, #0072ff) !important; }
.bg-green { background: linear-gradient(45deg, #00ff99, #00cc66) !important; }
.bg-pink { background: linear-gradient(45deg, #ff00cc, #ff4d6d) !important; }
.bg-orange { background: linear-gradient(45deg, #ff7b00, #ff3d00) !important; }
.bg-purple { background: linear-gradient(45deg, #7b2ff7, #f107a3) !important; }
.bg-teal { background: linear-gradient(45deg, #00f2fe, #4facfe) !important; }


.why-card h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  color: #aaa;
}

.why-card {
  opacity: 0;
  transform: translateY(40px);
}

.why-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: 0.6s ease;
}

/* Home Approch section */
.approach-section {
  position: relative;
  background: #0f1423;
  color: #fff;
}


.approach-heading {
  font-size: 42px;
  font-weight: bold;
}

.approach-heading span {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.approach-sub {
  color: #aaa;
}

.step-card {
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  padding: 25px;
  position: relative;
  text-align: center;
  transition: 0.4s;
  border: 1px solid rgba(255,255,255,0.05);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.5);
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(90deg, #00c6ff, #ff00cc);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.icon {
  font-size: 30px;
  margin-bottom: 15px;
}

.step-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.step-card p {
  color: #aaa;
}

.step-card {
  opacity: 0;
  transform: translateY(40px);
}

.step-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: 0.6s ease;
}

.approach-section {
  position: relative;
  overflow: hidden;
}

.candlestick-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.2;
}

.chart {
  position: absolute;
  width: 100%;
  height: 100%;
}

.chart-left .candle,
.chart-left .wick {
  animation: moveLeft 8s linear infinite;
}

.chart-right .candle,
.chart-right .wick {
  animation: moveRight 8s linear infinite;
}

@keyframes moveLeft {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  20% { opacity: 1; }
  100% {
    transform: translateX(-300px);
    opacity: 0;
  }
}

@keyframes moveRight {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  20% { opacity: 1; }
  100% {
    transform: translateX(300px);
    opacity: 0;
  }
}

.green {
  fill: #00ff88;
  stroke: #00ff88;
}

.red {
  fill: #ff3d3d;
  stroke: #ff3d3d;
}

.approach-section .container {
  position: relative;
  z-index: 2;
}

/* Home testimonial section */
.testimonial-section {
  background: #0b0f1a;
  color: #fff;
  overflow: hidden;
}

.testimonial-heading {
  font-size: 42px;
  font-weight: bold;
  
}
.testimonial-heading span {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-sub {
  color: #aaa;
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 20s linear infinite;
}


.testimonial-card {
  min-width: 300px;
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 20px;
  transition: 0.4s;
  border: 1px solid rgba(255,255,255,0.08);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 10px rgba(23, 23, 23, 0.5);
}

.user {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

.user span {
  color: #aaa;
  font-size: 13px;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-40%);
  }
}



/* Our Partners */

.partners-slider {
  background: #0e1320;
  color: #fff;
  overflow: hidden;
}


.section-title {
  font-size: 42px;
  font-weight: bold;
}

.section-title span {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  color: #aaa;
}

.slider {
  overflow: hidden;
  position: relative;
}

.slide-track {
  display: flex;
  width: calc(250px * 8);
  animation: scroll 20s linear infinite;
}


.slide-item {
  width: 250px;
  text-align: center;
  padding: 20px;
  transition: 0.3s;
  border-radius: 10px;
}

.slide-item img {
  width: 80px;
  margin-bottom: 10px;
  border-radius: 10px;
  /* filter: grayscale(100%); */
  transition: 0.3s;

}


.slide-item:hover img {
  /* filter: grayscale(0%); */
  transform: scale(1.1);
}

.slide-item p {
  margin: 0;
  font-weight: 500;
}


@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.slider:hover .slide-track {
  animation-play-state: paused;
}

/* MOBILE */
@media (max-width: 500px) {
  .slide-item {
    width: 180px;
  }

  .slide-item img {
    width: 60px;
  }
}

.learning-path-section {
  position: relative;
  height: 60vh;
  background-image: 'https://demo.junctionacademy.org/public/images/trading1-bg.jpg';
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}
.learning-path-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}


.learning-path-section .content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.main-heading {
  font-size: 48px;
  font-weight: bold;
  animation: fadeUp 1s ease forwards;
}

.sub-heading {
  font-size: 18px;
  color: #ccc;
  margin-top: 10px;
  animation: fadeUp 1.5s ease forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 30px;
  }

  .sub-heading {
    font-size: 14px;
  }
}



/* Footer */
.footer-section {
  background: #0b0f1a;
  color: #fff;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}


.footer-logo {
  font-size: 28px;
  font-weight: bold;
  background: linear-gradient(90deg, #00c6ff, #ff00cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.footer-text {
  color: #aaa;
  margin-top: 10px;
}

.footer-title {
  margin-bottom: 15px;
  font-weight: 600;
}


.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #aaa;
  transition: 0.3s;
}


.footer-links a:hover {
  color: #00c6ff;
  padding-left: 5px;
}


.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #aaa;
  transition: 0.4s;
}


.social-icons a:hover {
  color: #fff;
  transform: translateY(-5px) scale(1.2);
}


.social-icons a:nth-child(1):hover { color: #1877f2; } /* Facebook */
.social-icons a:nth-child(2):hover { color: #e4405f; } /* Instagram */
.social-icons a:nth-child(3):hover { color: #1da1f2; } /* Twitter */
.social-icons a:nth-child(4):hover { color: #0a66c2; } /* LinkedIn */


.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  color: #777;
}


@media(max-width:768px) {
  .footer-section {
    text-align: center;
  }
}

/* About us  */

.about-hero {
  position: relative;
  height: 50vh;
  background: url('/images/trading1-bg.jpg') no-repeat center center/cover;
  overflow: hidden;
  color: #fff;
}


.about-hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  top: 0;
  left: 0;
  z-index: 1;
}


.about-hero .content {
  position: relative;
  z-index: 2;
}


.hero-title {
  font-size: 50px;
  font-weight: bold;
  
}
.hero-title span {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-breadcrumb {
  margin-top: 10px;
  font-size: 18px;
  animation: fadeUp 1.5s ease forwards;
}

.hero-breadcrumb a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}


.hero-breadcrumb a:hover {
  color: #00c6ff;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


@media(max-width:768px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-breadcrumb {
    font-size: 14px;
  }
}

/* We Do */
.about-modern {
  background: #0b0f1a;
  color: #fff;
}

.about-title {
    font-size: 42px;
  font-weight: bold;
  
  margin-bottom: 10px;
}
 .about-title span {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text {
  color: #aaa;
}


.about-card {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 12px;
  transition: 0.4s;
  border: 1px solid rgba(4, 207, 238, 0.08);
  opacity: 0;
  transform: translateY(40px);
}


.about-card.show {
  opacity: 1;
  transform: translateY(0);
}


.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 10px rgba(226, 226, 226, 0.5);
}

.about-card {
  opacity: 1;
  transform: none;
}

.icon-box {
  width: 60px;
  height: 60px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 22px;
}


.pink { background: #ff00cc; }
.green { background: #00c851; }
.blue { background: #007bff; }
.orange { background: #ff5722; }

/* about value */

.values-section {
  background: #0f1422;
  color: #fff;
}

.values-heading {
  font-size: 42px;
  font-weight: bold;
}

.values-heading span {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.values-sub {
  color: #aaa;
}


.value-box {
  padding: 30px;
  border-radius: 15px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.4s;
  position: relative;

  opacity: 0;
  transform: translateY(40px);
}


.value-box.left {
  transform: translateX(-50px);
}
.value-box.right {
  transform: translateX(50px);
}


.value-box .icon {
  font-size: 30px;
  margin-bottom: 10px;
}


.value-box:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #00c6ff;
  box-shadow: 0 10px 30px rgba(0,198,255,0.2);
}


.value-box.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Contact Us*/
.contact-section {
  background: #101625;
  color: #fff;
}

/* Heading */
.contact-heading  {
  font-size: 42px;
  font-weight: bold;
}

.contact-heading span {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.contact-card {
  display: flex;
  gap: 15px;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  transition: 0.4s;

  opacity: 0;
  transform: translateX(-40px);
}

.contact-card .icon {
  font-size: 24px;
}

.contact-card:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(0, 162, 255, 0.1);
  box-shadow: 0 10px 20px rgba(112, 200, 251, 0.2);
}

.contact-form-box {
  padding: 30px;
  border-radius: 15px;
  background: rgba(255,255,255,0.05);

  opacity: 0;
  transform: translateX(40px);
}
.contact-form-box:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(1, 80, 126, 0.1);
  box-shadow: 0 10px 20px rgba(112, 200, 251, 0.2);
}

.form-control {
  background: rgba(109, 109, 109, 0.05);
  border: none;
  color:#afaeae;
}

.form-control:focus {
  box-shadow: 0 0 8px #00f7ff;
}

::placeholder{
  color: #afaeae !important;
}
.btn-send {
  padding: 10px 25px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(45deg, #00d0ff, #ff00e6);
  color: #ffffff;
  font-weight: bold;
  transition: 0.3s;
}

.btn-send:hover {
  transform: scale(1.05);
}


.show {
  opacity: 1 !important;
  transform: translateX(0) !important;
  transition: 0.6s ease;
}

/* register Now*/
.register-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #000, #0a0a0a);
}

.register-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgb(7 173 255 / 50%);
  padding: 40px;
  border-radius: 20px;
  color: #fff;
  max-width: 900px;
  margin: auto;
  animation: fadeUp 1s ease;
}

.register-box:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 255, 251, 0.4);
}
/* .form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid #999;
    border-radius: 4px;
    appearance: none;
    cursor: pointer;
} */

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.485 1.929l-7.071 7.07-3.182-3.182-1.414 1.414 4.596 4.596 8.485-8.485z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
  
}

/* .form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
    position: relative;
    color: #fff !important;
}

.form-check-input:checked::after {
    content: "✔";
    color: white !important;
    font-size: 12px;
    position: absolute;
    top: -2px;
    left: 0px;
} */
.form-control {
  background: transparent;
  border: 1px solid #444;
  color: #fff;
  border-radius: 10px;
  padding: 12px;
  transition: 0.3s;
}

.form-control::placeholder {
  color: #aaa;
}

.form-control:focus {
  border-color: #00bfff;
  box-shadow: 0 0 10px rgba(0, 234, 255, 0.4);
  background: rgba(255,255,255,0.05);
}

.toggle-pass {
  position: absolute;
  right: 15px;
  top: 12px;
  cursor: pointer;
  color: #00daff;
  font-size: 14px;
}

.btn-register {
  background: linear-gradient(45deg, #00eeff, #0040ff);
  border: none;
  padding: 12px 40px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.4s;
}

.btn-register:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 255, 251, 0.4);
}

.form-check-input {
  background: transparent;
  border: 1px solid #888;
}

.form-check-input:checked {
  background-color: #005eff;
  border-color: #00ffd0;
}

.login-text a {
  color: #00daff;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Login  */

.login-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0b0f1a, #000);
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-box {
  width: 100%;
  max-width: 380px;
  padding: 35px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgb(7 173 255 / 50%);
  color: #fff;
  animation: slideUp 0.8s ease;
}

/* Animation */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Inputs */
.custom-input {
  background: transparent;
  border: 1px solid #00c6fa;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  transition: 0.3s;
}

.custom-input::placeholder {
  color: #bbb;
}

.custom-input:focus {
  border-color: #00c6fa;
  box-shadow: 0 0 8px #00c6fa;
  background: transparent;
  color: #fff;
}

/* Button */
.login1-btn {
  background: linear-gradient(45deg, #00eeff, #0040ff);
  color: #000;
  padding: 10px 25px;
  border-radius: 8px;
  transition: 0.3s;
}

.login1-btn:hover {
  background: linear-gradient(45deg, #00eeff, #0040ff);
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 5px 12px rgba(7, 189, 255, 0.4);
}

/* Link */
.login-box a {
  color: #4da6ff;
  text-decoration: none;
}

.login-box a:hover {
  text-decoration: underline;
}



/* popup */
/* BACKDROP BLUR */
.modal-backdrop.show {
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.7);
}

/* MAIN MODAL */
.trading-modal {
  
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(4, 255, 238, 0.4);
  backdrop-filter: blur(15px);
  transition: 0.3s;
  background: 
linear-gradient(rgba(0, 0, 0, 0.79), rgba(0, 0, 0, 0.807)),
url('https://images.unsplash.com/photo-1640340434855-6084b1f4901c') center/cover no-repeat;
  
}

/* HOVER ON POPUP BOX 🔥 */
.trading-modal:hover {
  box-shadow: 0 0 30px rgba(0,255,136,0.3);
  /* transform: translateY(-5px); */
}


/* TEXT */
.modal-text {
  color: yellow;
  font-size: 14px;
}
.mb-2{
  color: white;
  border-radius: 30px;
}

/* MAIN BUTTON */
.btn-main {
  background: linear-gradient(45deg, #00ff88, #00c3ff);
  border: none;
  padding: 8px;
  border-radius: 30px;
  font-weight: 600;
  color: #000;
  /* transition: 0.3s; */
}

/* BUTTON HOVER 🔥 */
.btn-main:hover {
  /* transform: scale(1.05); */
  box-shadow: 0 0 20px #00ff88;
}

/* OUTLINE BUTTON */
.btn-custom {
  border-radius: 30px;
  transition: 0.3s;
   
}

.btn-custom:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 15px rgba(255,255,255,0.5);
}

/* DANGER BUTTON */
.btn-danger {
  border-radius: 30px;
  transition: 0.3s;
  padding: 7px;
    margin-top: 1px;
    color: #fff;
    text-decoration: none;
}

.btn-danger:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgb(255, 127, 127);
}

.trading-modal {
  animation: popupSlide 0.6s ease;
}

@keyframes popupSlide {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* MOBILE */
@media (max-width: 500px) {
.popup-mode{
  display: block;
}
  .popup-img {
    display: none;
  }

  .trading-modal {
    margin: 10px;
    padding: 10px;
  }
  .popup-btn{
  order: 1;
}

.footer-section {
  background: #0b0f1a;
  color: #fff;
  padding: 0px 0 20px;
  position: relative;
  overflow: hidden;
}

}



/* popup end  */

/* Disclaimer start */

.disclaimer-section {
  background: #0a0a0a;
}

/* Hover Effect 🔥 */

/* Title */
.disclaimer-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}

.disclaimer-section{
padding: 200px 0px;
}

.disclaimer-heading{
  margin-top: 10px;
}
.disclaimer-title span {
  color: #00ff9c;
}

/* Text */
.disclaimer-text {
  margin-top: 20px;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.7;
}

/* Animation show */
.disclaimer-box.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 576px) {
  .disclaimer-box {
    padding: 25px;
  }

  .disclaimer-title {
    font-size: 1.6rem;
  }

  .disclaimer-text {
    font-size: 0.95rem;
  }
}

/* Disclaimer  end*/


/* Responsive */
@media (max-width: 576px) {
  .login-box {
    padding: 25px;
  }
}
@media (max-width: 500px){
  .disclaimer-section {
    padding: 200px 0px 100px 0px;
}
  .navbar{
    background-color: #000;
  } 
  .navbar-toggler{
    background-color: #fff !important;
  }
.login-box {
    width: 90%;
    max-width: 380px;
    padding: 35px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(7 173 255 / 50%);
    color: #fff;
    animation: slideUp 0.8s ease;
}

.ms-4 {
    margin-left: 1.5rem !important;
    display: none;
}

.ms-3 {
    margin-left: 1rem !important;
    display: none;
}
.hero-content h1 {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    justify-content: center;
}
.about-heading {
    font-size: 34px;
    font-weight: bold;
}
.image-wrapper img {
    margin-top: 12px;
    transition: 0.5s;
}
.why-heading {
    font-size: 36px;
    font-weight: bold;
}
.approach-heading

 {
    font-size: 36px;
    font-weight: bold;
}
.testimonial-heading {
    font-size: 36px;
    font-weight: bold;
}

.login-btn {
    border: 2px solid #06f7f3;
    color: #fff;
    align-items: center;
    justify-content: center;
    padding: 6px 18px;
    margin-right: 20px;
    border-radius: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.register-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #00fffb, #2231ff);
    color: #fff;
    padding: 6px 18px;
    margin-right: 12px;
    margin-top: 11px;
    border-radius: 30px;
    border: none;
    transition: all 0.4s ease;
}
.contact-heading {
    font-size: 36px;
    font-weight: bold;
}
}

