/* General Body Styling */

/* Base Styles */
   body {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    background: radial-gradient(circle at top, #0f0f0f 0%, #000000 100%);
    color: #00ffcc;
    overflow-x: hidden;
  }

  html {
    scroll-behavior: smooth;
  }

  .navbar {
    background-color: #0d0b1f;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 999;
  }

  header {
    background: linear-gradient(90deg, #ff00ff, #00ffff, #ff00ff);
    background-size: 300% 300%;
    animation: neonPulse 8s ease infinite;
    box-shadow: 0 0 20px #00ffff, 0 0 40px #ff00ff;
    z-index: 1000;
    position: sticky;
    top: 0;
  }

  @keyframes neonPulse {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  /* Logo Flicker */
  .logo {
    font-size: 2.5rem;
    color: #0ff;
    position: relative;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: glitch-animation 2s infinite;
  }

  .logo::before,
  .logo::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    overflow: hidden;
    color: #f0f;
    clip: rect(0, 900px, 0, 0);
  }

  .logo::before {
    animation: glitch-top 2s infinite linear alternate-reverse;
    color: #ff00c1;
  }

  .logo::after {
    animation: glitch-bottom 1.5s infinite linear alternate-reverse;
    color: #00ffff;
  }

  /* Keyframes (define these properly later) */
  @keyframes glitch-animation {}
  @keyframes glitch-top {}
  @keyframes glitch-bottom {}

  /* Navigation Links */
  .navbar-nav .nav-link {
    color: #ffffff;
    font-size: 1.0rem;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }

  .navbar-nav .nav-link:hover {
    color: #00ffe1;
    text-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 20px #ff00c1, 0 0 40px #ff00c1;
  }

  /* Dropdown Menu */
  .dropdown-menu {
    background-color: #1a1a2e;
  }

  .dropdown-item {
    color: #ffffff;
  }

  .dropdown-item:hover {
    background-color: #ff00ff;
    color: #0d0b1f;
  }

  /* Mobile Menu Toggle */
  .navbar-toggler {
    border: 2px solid #00ffff;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='cyan' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }

  /* Hover Dropdown for Desktop */
  @media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
      display: block;
      margin-top: 0;
      animation: dropdownFade 0.4s ease forwards;
    }
  }

  @keyframes dropdownFade {
    0% {
      opacity: 0;
      transform: translateY(10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0px);
    }
  }

  /* Glitch Effects */
  .glitch-text {
    position: relative;
    display: inline-block;
    font-weight: bold;
    font-size: 24px;
    animation: glitchText 1s infinite;
  }

  @keyframes glitchText {
    0% { text-shadow: 2px 2px red, -2px -2px blue; }
    20% { text-shadow: -2px 2px green, 2px -2px purple; }
    40% { text-shadow: 2px -2px orange, -2px 2px cyan; }
    60% { text-shadow: -2px -2px yellow, 2px 2px pink; }
    80% { text-shadow: 2px 2px white, -2px -2px black; }
    100% { text-shadow: 2px 2px red, -2px -2px blue; }
  }

  .glitch-image {
    position: relative;
    display: inline-block;
    animation: glitchImage 1s infinite;
  }

  @keyframes glitchImage {
    0%, 100% { transform: translate(0, 0); filter: hue-rotate(0deg); }
    20% { transform: translate(-2px, 2px); filter: hue-rotate(20deg); }
    40% { transform: translate(2px, -2px); filter: hue-rotate(-20deg); }
    60% { transform: translate(-2px, -2px); filter: hue-rotate(10deg); }
    80% { transform: translate(2px, 2px); filter: hue-rotate(-10deg); }
  }
  
  .nav-link i {
  color: #ffffff;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-link i:hover {
  color: #00ffe1;
  text-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 20px #ff00c1, 0 0 40px #ff00c1;
}



/*----------Swiper-----------*/

      .swiper {
      width: 100%;
      height: 100vh;
    }

    .swiper-slide {
      position: relative;
      background-size: cover;
      background-position: center;
    }

    .slide-content {
      position: absolute;
      bottom: 20%;
      left: 10%;
      color: #fff;
      background: rgba(0, 0, 0, 0.5);
      padding: 2rem;
      border-left: 5px solid #00fff7;
    }

    .slide-content h1 {
      font-size: 3rem;
      margin: 0;
      color: #00fff7;
    }

    .slide-content h4 {
      font-size: 1.5rem;
      margin: 1rem 0;
      color: #ffffffcc;
    }

    .slide-content button {
      padding: 0.75rem 1.5rem;
      background: #00fff7;
      border: none;
      color: #000;
      font-weight: bold;
      cursor: pointer;
      font-size: 1rem;
    }

    .swiper-pagination-bullets {
      bottom: 30px !important;
    }

    .swiper-button-next, .swiper-button-prev {
      color: #00fff7;
    }
   /* ---------- Mobile Responsive - Bootstrap Way ---------- */
@media (max-width: 768px) {
  .swiper {
    height: 80vh;
  }

  .slide-content {
    bottom: 10%;
    left: 5%;
    right: 5%;
    padding: 1.5rem;
    max-width: 90%;
    text-align: center;
    border-left: none;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 1rem;
  }

  .slide-content h1 {
    font-size: 2rem;
  }

  .slide-content h4 {
    font-size: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }

  .slide-content button {
    font-size: 0.95rem;
    padding: 0.5rem 1.2rem;
  }

  .swiper-button-next, .swiper-button-prev {
    display: none;
  }
}
/*-----------Cyber Section------------------*/

   .cyber-section {
    background-color: #0e0e1a;
    color: #ffffff;
    padding: 60px 0;
    font-family: 'Orbitron', sans-serif;
  }

  .cyber-title h4,
  .cyber-title h1,
  .cyber-title h2 {
    color: #00ffff;
  }

  .main-image {
    width: 100%;
    height: auto;
    border: 2px solid #00ffff;
    border-radius: 5px;
  }

  .thumbnail-row {
    display: flex;
    gap: 10px;
    margin-top: 15px;
  }

  .thumbnail-row img {
    width: 80px;
    height: 50px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s ease-in-out;
  }

  .thumbnail-row img:hover {
    border-color: #ff00ff;
  }

  .nav-tabs .nav-link {
    background: #1e1e2f;
    color: #fff;
    border: none;
    margin-right: 10px;
  }

  .nav-tabs .nav-link.active {
    background-color: #00ffff;
    color: #000;
  }

  .tab-content {
    background: #13132a;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
    border: 1px solid #00ffff;
  }
  
  /* Cyberpunk Background */
.cyber-tab-section {
  background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
  padding: 30px;
  color: #f0f0f0;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

/* Neon Tab Headers */
.nav-tabs .nav-link {
  background-color: transparent;
  color: #00ffff;
  border: 1px solid #00ffff;
  margin-right: 10px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
  background-color: #00ffff;
  color: #000;
  box-shadow: 0 0 15px #00ffff;
}

/* Tab Content Box */
.tab-content {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  padding: 20px;
  color: #fff;
}

/* Neon Glow Button */
.btn-cyberpunk {
  background-color: transparent;
  border: 2px solid #ff00ff;
  color: #ff00ff;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
  box-shadow: 0 0 5px #ff00ff;
}

.btn-cyberpunk:hover {
  background-color: #ff00ff;
  color: #000;
  box-shadow: 0 0 20px #ff00ff, 0 0 40px #ff00ff;
}

/*Feature Section*/
 .glass-effect {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px #00fff7;
  }

  .glass-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px #ff00ff, 0 0 35px #00fff7;
  }

  .feature-title a {
    color: #00fff7;
    font-family: 'Orbitron', sans-serif;
    text-decoration: none;
    font-size: 1.8rem;
    transition: color 0.3s;
  }

  .feature-title a:hover {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
  }

  .features-section {
    background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
    color: #fff;
  }

  .features-section p {
    font-family: 'Rajdhani', sans-serif;
    color: #ccc;
  }
  
  /*--------what we offer section------------------*/
  
  .text-accent {
  color: #00fff7;
  letter-spacing: 1px;
}

.neon-box {
  border: 2px solid #0ff;
  background-color: #0c0c0c;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 8px #00fff7aa;
}

.neon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px #00fff7, 0 0 30px #0ff;
}

.product-link {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-link:hover {
  color: #00fff7;
  text-shadow: 0 0 5px #0ff;
}

/*------Blog Section-------------*/

.text-neon {
  color: #00fff7;
  text-shadow: 0 0 5px #00fff7, 0 0 10px #00fff7;
}

.text-gradient {
  background: linear-gradient(to right, #00fff7, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-neon-dark {
  background: #121212;
  border-radius: 12px;
  transition: transform 0.3s;
}

.bg-neon-dark:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px #00fff7;
}

.btn-outline-neon {
  color: #00fff7;
  border: 1px solid #00fff7;
  transition: all 0.3s ease;
}

.btn-outline-neon:hover {
  background-color: #00fff7;
  color: #000;
  box-shadow: 0 0 10px #00fff7;
}
.card-text{
    color: #ff00ff;
}

.blog-date {
  font-size: 0.85rem;
  color: #aaaaaa;
  font-style: italic;
  text-shadow: 0 0 3px rgba(0, 255, 247, 0.3);
}

/*--------team-gallery-footer------------*/

.text-neon {
  color: #00f0ff;
  text-shadow: 0 0 6px #00f0ff, 0 0 10px #00f0ff;
}

.bg-neon-dark {
  background: linear-gradient(to right, #050510, #111122);
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  display: block;
  padding: 2px 0;
  transition: color 0.3s, text-shadow 0.3s;
}

.footer-link:hover {
  color: #00f0ff;
  text-shadow: 0 0 6px #00f0ff;
}

.team-scroll {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding: 1rem 0;
  scroll-behavior: smooth;
}

.team-member {
  min-width: 240px;
  background-color: #111;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
  transition: transform 0.3s ease;
}
.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 3px solid #00f0ff;
}

.social-icons a {
  font-size: 18px;
  margin: 0 5px;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #00f0ff;
  text-shadow: 0 0 5px #00f0ff;
}
.btn-neon {
  background-color: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
  transition: all 0.3s ease;
}

.btn-neon:hover {
  background-color: #00ffff;
  color: #000;
  box-shadow: 0 0 10px #00ffff;
}

.bg-neon {
  border-color: #00ffff;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #0ff;
  color: #000;
  font-size: 20px;
  padding: 12px 15px;
  border-radius: 50%;
  z-index: 999;
  box-shadow: 0 0 12px #0ff;
  transition: all 0.4s ease;
  display: none;
}

.back-to-top:hover {
  background: #1affff;
  box-shadow: 0 0 20px #1affff, 0 0 30px #1affff;
  color: #000;
  transform: scale(1.1);
}

.quick-links li {
  position: relative;
  margin-bottom: 10px;
}

.quick-links li a {
  color: #0ff;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: padding-left 0.3s ease, color 0.3s ease;
}

.quick-links li a::before {
  content: "→";
  display: inline-block;
  margin-right: 8px;
  transition: transform 0.3s ease;
  color: #fff;
}

.quick-links li a:hover {
  padding-left: 10px;
  color: #1affff;
}

.quick-links li a:hover::before {
  transform: translateX(-4px);
  color: #1affff;
}
.neon-border {
    border: 2px solid #0ff;
    box-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
    transition: transform 0.3s ease;
  }

  .neon-border:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
  }



    /* Responsive */
    @media (max-width: 768px) {
      .menu {
        display: none;
      }
    }