  
    body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #3b495eff;
      color: #fff;
      overflow-x: hidden;
    }
.navbar {
  background-color: #000 !important;
  padding: 0.8rem 1.5rem;
}

.navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s;
}

.navbar .nav-link:hover {
  color: #ffc107 !important;
}

.navbar-brand img {
  height: 40px;
}

   
    .hero-carousel {
      position: relative;
      height: 100vh;
      min-height: 500px;
      width: 100%;
    }

    .hero-carousel .carousel-item {
      height: 100vh;
      min-height: 500px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .hero-carousel .carousel-caption {
      z-index: 10;
    }

    .carousel-caption h1 {
      font-size: 3.5rem;
      font-weight: bold;
    }

    .carousel-caption p {
      font-size: 1.25rem;
    }

    .btn-explore {
      margin-top: 20px;
      background: #ff6f00;
      border: none;
      padding: 12px 30px;
      font-weight: bold;
      border-radius: 4px;
      transition: 0.3s ease;
    }

    .btn-explore:hover {
      background: #ffa726;
    }

   
    .section-title {
      font-size: 2.5rem;
      margin-bottom: 30px;
    }

    .info-card {
      background-color: #111;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
      transition: transform 0.3s;
    }

    .info-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    }

    footer {
      background: #111;
      color: #bbb;
      padding: 40px 0;
    }

    footer a {
      color: #ff6f00;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    
    .scroll-container::-webkit-scrollbar {
      display: none;
    }

    .card-img {
      transition: transform 0.3s ease;
    }

    .card:hover .card-img {
      transform: scale(1.05);
    }

    .card-stack {
      min-height: 340px;
    }

    .stack {
      opacity: 0.2;
    }

    .video-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .video-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    }

    .reality-card {
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      border: none;
      overflow: hidden;
      background-color: #ffffff;
    }

    .reality-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(255, 140, 0, 0.25);
    }

    .reality-card .card-body {
      transition: background-color 0.4s ease;
    }

    .reality-card:hover .card-body {
      background-color: rgba(255, 140, 0, 0.05);
    }

    .reality-card h5,
    .reality-card p {
      color: #000 !important;
    }

    .reality-card iframe {
      border-radius: 0;
    }

    @media (max-width: 768px) {
      .hero-carousel {
        height: 80vh;
        min-height: 400px;
      }

      .hero-carousel .carousel-item {
        height: 80vh;
        min-height: 400px;
      }

      .hero-carousel .carousel-caption {
        padding: 20px;
        text-align: center;
      }

      .carousel-caption h1 {
        font-size: 2rem;
      }

      .carousel-caption p {
        font-size: 1rem;
      }

      .btn-explore {
        font-size: 0.9rem;
        padding: 10px 20px;
      }
    }

    @media (max-width: 576px) {
      .hero-carousel {
        height: 70vh;
        min-height: 350px;
      }

      .hero-carousel .carousel-item {
        height: 70vh;
        min-height: 350px;
      }

      .carousel-caption h1 {
        font-size: 1.5rem;
      }

      .carousel-caption p {
        font-size: 0.9rem;
      }
    }
     .video-hover:hover .video-frame {
      transform: scale(1.03);
      transition: transform 0.4s ease-in-out;
    }

    .video-frame {
      transition: transform 0.4s ease-in-out;
    }

    /* ✨ Right section hover glow effect */
    .text-hover-section:hover {
      background-color: #1a1a1a;
      box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.05);
      transition: background-color 0.4s ease, box-shadow 0.4s ease;
    }

    /* 🔘 Button hover */
    .explore-btn {
      transition: all 0.3s ease-in-out;
    }

    .explore-btn:hover {
      background-color: #ffc107;
      color: #000;
      box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
      transform: translateY(-2px);
    }
    .bg-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* Or rgba(0, 0, 50, 0.6) for navy tone */
}

.typing-text {
  display: inline-block;
  border-right: 2px solid #fff;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: typing 2.5s steps(20, end) forwards, blink 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 8.5ch }
}

@keyframes blink {
  from, to { border-color: transparent }
  50% { border-color: white }
}

.glowing-text {
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%   { text-shadow: 0 0 10px #fff2, 0 0 20px #fff3; }
  50%  { text-shadow: 0 0 20px #ffd700, 0 0 40px #ffc107; }
  100% { text-shadow: 0 0 10px #fff2, 0 0 20px #fff3; }
}

.video-hover:hover iframe {
  transform: scale(1.03);
  transition: transform 0.3s ease;
}

/* 🔴 Live Label Pulse */
.live-label {
  font-size: 1rem;
  font-weight: bold;
  animation: pulseLive 1.5s infinite;
}

@keyframes pulseLive {
  0%, 100% { box-shadow: 0 0 8px rgba(255,0,0,0.4); }
  50%      { box-shadow: 0 0 20px rgba(255,0,0,0.9); }
}


    .section-title {
      font-size: 2.2rem;
      font-weight: 700;
    }

  
  .glass-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  }

  .glass-card:hover {
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6) !important;
  transition: box-shadow 0.3s ease;
}

  .card-badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: bold;
    padding: 0.3rem 0.6rem;
    border-radius: 0.5rem;
    display: inline-block;
    margin-bottom: 1rem;
  }

  .card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }

  .card-desc {
    font-size: 1rem;
    color: #ccc;
  }

  .validity {
    font-weight: bold;
    margin-top: 1rem;
  }



    .bg-success.card-badge {
      background: #198754;
    }

    @keyframes badgePop {
      0% { transform: translateX(-50%) scale(0.9); opacity: 0; }
      100% { transform: translateX(-50%) scale(1); opacity: 1; }
    }

    

    @media (max-width: 768px) {
      .card-desc {
        min-height: auto;
      }

      .card-title {
        margin-top: 2rem;
      }
    }

    .image-wrapper {
      position: relative;
      display: inline-block;
      max-width: 100%;
    }

    .image-wrapper img {
      display: block;
      width: 300px;
      height: 50px;
    }

    .overlay-text {
    position: absolute;
    top: 4px;
    left: 56%;
    transform: translateX(-50%);
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-shadow: 2px 2px 8px #000;
    font-family: sans-serif;
}
.bg-dark{
    background-color: #3d3f42ff;
}
.scroll-box {
    height: 400px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding-right: 8px;
  }

  .scroll-box.scroll-enabled {
    overflow-y: auto;
  }

  .scroll-box::-webkit-scrollbar {
    width: 6px;
  }

  .scroll-box::-webkit-scrollbar-thumb {
    background-color: rgba(255,255,255,0.2);
    border-radius: 4px;
  }

  /* ✨ Hover glow effect for both cards */
  .about-card,
  .video-card {
    transition: box-shadow 0.4s ease, transform 0.3s ease;
    background-color: rgba(0, 0, 0, 0.6); /* optional for dark blur look */
    backdrop-filter: blur(6px);
  }

  .about-card:hover,
  .video-card:hover {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    transform: translateY(-4px);
    border-color: rgba(0, 255, 255, 0.4);
  }
  
 
  