 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 body {
   background-color: #000;
   font-family: 'Arial', sans-serif;
 }

body {
  margin: 0;
  padding: 0;
  background: #0a0a0a;
  font-family: 'Orbitron', sans-serif;
}

.neo-navbar {
  position: fixed;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background: rgba(20, 20, 20, 0.6);
  border: 2px solid #a020f0;
  border-radius: 40px;
  padding: 7px 30px;
  backdrop-filter: blur(10px);
  z-index: 999;
  box-shadow: 0 0 30px rgba(160, 32, 240, 0.3);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  position: relative;
  transition: 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: #a020f0;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #00ffe7;
}

.nav-links a:hover::after {
  width: 100%;
}

.logo-center {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 3px;
  background: linear-gradient(to right, #a020f0, #00ffe7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px #a020f0;
}
.nav-links a:hover {
  animation: pulseGlow 0.8s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  from {
    text-shadow: 0 0 6px #a020f0, 0 0 12px #00ffe7;
  }
  to {
    text-shadow: 0 0 12px #a020f0, 0 0 20px #00ffe7;
  }
}


@media (max-width: 768px) {
  .nav-inner {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
}


.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* Logo and toggle wrapper */
.nav-logo-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
    display: none;
    animation: fadeIn 0.4s ease;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .logo-center {
    font-size: 20px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}



 .hero {
   display: flex;
   justify-content: center;
   align-items: center;
   padding: 50px 0;
 }

 .hero img {
   max-width: 100%;
   height: auto;
 }



 .hero-banner {
   position: relative;
   background-image: url('assets/hero.png');
   background-size: cover;
   background-position: center;
   height: 100vh;
 }

 /* Button positioned over image */
 .hero-read-more {
   position: absolute;
   bottom: 687px;
   right: 180px;
   background: #8000ff;
   color: white;
   padding: 18px 36px;
   border-radius: 12px;
   font-family: 'Arial', sans-serif;
   font-size: 17px;
   font-weight: 700;
   text-decoration: none;
   border: none;
   display: inline-block;
   transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
   box-shadow: 0 4px 10px rgba(128, 0, 255, 0.3);
 }

 .hero-read-more:hover {
   background-color: #aa00ff;
   box-shadow: 0 6px 20px rgba(170, 0, 255, 0.6);
   transform: translateY(-3px) scale(1.05);
   color: white;
   /* Text stays white always */
 }


 .hero-read-more:hover {
   background: #aa00ff;
 }



 .about-section {
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 80px 60px;
   gap: 50px;
   flex-wrap: wrap;
 }

 .about-left {
   flex: 1;
   position: relative;
 }

 .about-left img {
   width: 100%;
   max-width: 450px;
   height: auto;
   border-radius: 5px;
 }

 .about-right {
   flex: 1;
   max-width: 600px;
 }

 .about-right h2 {
   font-size: 32px;
   margin-bottom: 20px;
   font-weight: bold;
 }

 .about-right p {
   font-size: 14px;
   line-height: 1.8;
   color: #ccc;
   margin-bottom: 20px;
 }

 .about-right button {
   background-color: #6a0dad;
   color: white;
   border: none;
   padding: 12px 24px;
   font-weight: bold;
   cursor: pointer;
   transition: 0.3s;
 }

 .about-right button:hover {
   background-color: #521092;
 }

 .about-wrapper {
   display: flex;
   justify-content: space-between;
   gap: 40px;
   align-items: center;
   padding: 40px 20px;
   flex-wrap: wrap;
 }

 /* ABOUT section full responsive for mobile view */
 @media (max-width: 768px) {
   .about-wrapper {
     flex-direction: column;
     align-items: center;
     text-align: center;
   }

   .about-left img {
     width: 90%;
     max-width: 300px;
     margin-bottom: 20px;
   }

   .about-right {
     padding: 0 20px;
   }

   .angled-heading {
     text-align: center;
     margin-bottom: 20px;
   }
 }

 .about-left img {
   width: 100%;
   max-width: 400px;
   border-radius: 10px;
 }

 .about-right {
   flex: 1;
 }

 @media (max-width: 768px) {
   .about-wrapper {
     flex-direction: column;
     text-align: center;
   }

   .about-left,
   .about-right {
     width: 100%;
   }

   .about-left img {
     max-width: 100%;
     margin-bottom: 20px;
   }

   .about-right p {
     font-size: 15px;
     padding: 0 10px;
   }
 }

 .purple-bar {
  position: absolute;
  height: 100%;
  width: 12px;
  left: -20px;
  top: 0;
  border-radius: 30px;
  background: #00e5ff; /* pure cyan */
  
  box-shadow:
    0 0 10px #00e5ff,
    0 0 30px #00e5ff,
    0 0 60px #00e5ff,
    0 0 100px #00e5ff,
    0 0 140px #00e5ff;

  overflow: hidden;
}

/* Inner cyan shine only */
.purple-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 3px;
  width: 6px;
  height: 100%;
  background: #00e5ff;
  opacity: 0.7;
  filter: blur(6px);
  border-radius: 50px;
}



.sepration {
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #8000ff, #aa00ff);
  border: none;
  margin: 2px 0;

  /* box-shadow:
    0 0 10px #8000ff,
    0 0 20px #aa00ff,
    0 0 40px #aa00ff,
    0 0 60px #aa00ff; */

  position: relative;
  z-index: 1;
}



 /* WebKit browsers (Chrome, Edge, Safari) */
 ::-webkit-scrollbar {
   width: 8px;
 }

 ::-webkit-scrollbar-track {
   background: transparent;
   /* transparent track */
 }

 ::-webkit-scrollbar-thumb {
   background: linear-gradient(#8000ff, #aa00ff);
   border-radius: 10px;
   box-shadow: 0 0 8px #8000ff88;
 }

 ::-webkit-scrollbar-thumb:hover {
   background: linear-gradient(#aa00ff, #ff00ff);
 }

 /* Firefox */
 * {
   scrollbar-width: thin;
   scrollbar-color: #8000ff transparent;
 }



 .products-section {
   text-align: center;
   padding: 60px 20px;
   background: #000;
   color: white;
 }

 .products-section h2 {
   font-size: 36px;
   margin-bottom: 10px;
 }

 .products-section p {
   font-size: 14px;
   color: #ccc;
   max-width: 600px;
   margin: 0 auto 40px;
 }

 .slider-container {
   overflow: hidden;
   position: relative;
   max-width: 100%;
   margin: 0 auto;
 }

 .slider {
   display: flex;
   transition: transform 0.5s ease;
   gap: 30px;
   justify-content: center;
 }

 .card {
   background: #eee;
   border-radius: 20px;
   padding: 30px 20px;
   min-width: 200px;
   text-align: center;
   flex-shrink: 0;
 }

 .card img {
   width: 100px;
   height: auto;
   margin-bottom: 15px;
 }

 .card p {
   color: #000;
   font-weight: bold;
   font-size: 14px;
   margin-bottom: 10px;
 }

 .card .arrow {
   background: #000;
   color: white;
   border-radius: 50%;
   width: 25px;
   height: 25px;
   line-height: 25px;
   font-size: 16px;
   margin: 0 auto;
 }

 .card.featured {
   background: #8000ff;
   color: white;
   transform: scale(1.1);
 }

 .card.featured p {
   color: white;
 }

 .card.featured .arrow {
   background: white;
   color: #8000ff;
 }

 .slider-buttons {
   margin-top: 30px;
 }

 .slider-buttons button {
   background: #8000ff;
   border: none;
   color: white;
   font-size: 26px;
   padding: 10px 15px;
   margin: 0 10px;
   border-radius: 8px;
   cursor: pointer;
 }

 .slider-buttons button:hover {
   background: #aa00ff;
 }


 .view-all-btn {
   margin-top: 40px;
 }

 .view-all-btn button {
   background: #8000ff;
   color: white;
   padding: 12px 30px;
   font-size: 14px;
   border: none;
   border-radius: 8px;
   cursor: pointer;
   font-weight: bold;
   transition: 0.3s;
   box-shadow: 0 0 10px #8000ff88;
 }

 .view-all-btn button:hover {
   background: #aa00ff;
   box-shadow: 0 0 15px #aa00ffcc;
 }


 .helmet-banner {
   width: 100%;
   height: 64vh;
   background: url('assets/banner.23.png') no-repeat right center;
   background-size: cover;
   display: flex;
   align-items: center;
   justify-content: flex-start;
   padding-left: 8%;
   background-color: #1a001f;
   /* backup color if image fails */
   background-attachment: fixed;
 }

 .helmet-banner .content {
   max-width: 500px;
   color: white;
 }

 .helmet-banner h2 {
   font-size: 48px;
   font-weight: 700;
   margin-bottom: 20px;
 }

 .helmet-banner p {
   font-size: 16px;
   color: #ccc;
   line-height: 1.6;
   margin-bottom: 30px;
 }

 .helmet-banner .btn {
   background: #000;
   color: white;
   padding: 12px 30px;
   text-decoration: none;
   font-weight: bold;
   border: none;
   transition: background 0.3s;
 }

 .helmet-banner .btn:hover {
   background: #8000ff;
 }


 .contact-section {
   display: flex;
   justify-content: space-between;
   padding: 80px 10%;
   background: #000;
   color: white;
   flex-wrap: wrap;
   gap: 40px;
 }

 .contact-left,
 .contact-right {
   flex: 1;
   min-width: 300px;
 }

 .contact-left h2,
 .contact-right h2 {
   font-size: 28px;
   margin-bottom: 20px;
 }

 .contact-left p,
 .contact-right p {
   font-size: 14px;
   color: #ccc;
   margin-bottom: 15px;
   line-height: 1.6;
 }

 .contact-left p strong {
   color: white;
 }

 .social-icons i {
   color: white;
   margin-right: 15px;
   font-size: 18px;
   cursor: pointer;
 }

 form input,
 form textarea {
   width: 100%;
   padding: 12px 15px;
   background: transparent;
   border: 1px solid #aaa;
   color: white;
   margin-bottom: 15px;
   border-radius: 4px;
   font-family: inherit;
 }

 form textarea {
   min-height: 120px;
   resize: vertical;
 }

 form button {
   background: white;
   color: black;
   padding: 12px 30px;
   font-weight: bold;
   border: none;
   cursor: pointer;
   transition: 0.3s;
 }

 form button:hover {
   background: #8000ff;
   color: white;
 }


 .modern-footer {
   position: relative;
   background: url('assets/2nd\ banner.png') no-repeat center/cover;
   color: #fff;
   padding: 60px 10%;
   font-family: 'Poppins', sans-serif;
   background-attachment: fixed;
   z-index: 1;
   overflow: hidden;
 }

 /* Overlay with opacity */
 .modern-footer::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(33, 2, 50, 0.5);

   z-index: -1;
 }


 .footer-container {
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 40px;
 }

 .footer-column {
   flex: 1;
   min-width: 200px;
 }

 .footer-logo {
   font-size: 32px;
   font-weight: 800;
   color: white;
   margin-bottom: 10px;
 }

 .footer-desc {
   color: #ccc;
   font-size: 14px;
   line-height: 1.6;
 }

 .footer-column h4 {
   font-size: 16px;
   margin-bottom: 15px;
   font-weight: 600;
   color: #fff;
   position: relative;
 }

 .footer-column ul {
   list-style: none;
   padding: 0;
 }

 .footer-column ul li {
   margin-bottom: 10px;
 }

 .footer-column ul li a {
   text-decoration: none;
   color: #ddd;
   font-size: 14px;
   transition: color 0.3s;
 }

 .footer-column ul li a:hover {
   color: #fff;
 }

 .footer-bottom {
   text-align: center;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   margin-top: 40px;
   padding-top: 20px;
   font-size: 13px;
   color: #ccc;
 }


 /* --------all media query------ */

 /* ========== Mobile: up to 480px ========== */
 @media (max-width: 480px) {
   .navbar {
     flex-direction: column;
     gap: 10px;
     padding: 10px 15px;
   }

   .hero {
     flex-direction: column;
     padding: 40px 20px;
     text-align: center;
   }

   .hero .hero-content {
     align-items: center;
   }

   .products-section h2 {
     font-size: 24px;
   }

   .card {
     min-width: 250px;
     padding: 20px;
   }

   .helmet-banner h2 {
     font-size: 32px;
   }

   .contact-section {
     flex-direction: column;
     padding: 50px 20px;
   }

   .footer-top,
   .footer-bottom {
     flex-direction: column;
     gap: 15px;
     text-align: center;
   }
 }

 /* ========== Tablets: 481px to 768px ========== */
 @media (max-width: 768px) {
   .navbar {
     justify-content: center;
     gap: 30px;
     padding: 15px 25px;
   }

   .products-carousel {
     gap: 20px;
   }

   .product-card {
     min-width: 220px;
   }

   .helmet-banner {
     padding: 60px 20px;
     background-position: center;
   }

   .contact-left,
   .contact-right {
     min-width: 100%;
     margin-bottom: 40px;
   }

   .footer-content {
     flex-direction: column;
     gap: 25px;
   }
 }

 /* ========== Small Laptops: 769px to 1024px ========== */
 @media (max-width: 1024px) {
   .hero {
     padding: 60px 30px;
   }

   .hero h1 {
     font-size: 40px;
   }

   .products-section {
     padding: 60px 30px;
   }

   .contact-section {
     padding: 80px 40px;
   }

   .modern-footer {
     padding: 60px 30px;
   }
 }


 /* ------------all animation------------ */

 /* === ANIMATIONS === */
 @keyframes fadeIn {
   0% {
     opacity: 0;
     transform: translateY(30px);
   }

   100% {
     opacity: 1;
     transform: translateY(0);
   }
 }

 @keyframes slideUp {
   0% {
     opacity: 0;
     transform: translateY(60px);
   }

   100% {
     opacity: 1;
     transform: translateY(0);
   }
 }

 @keyframes slideRight {
   0% {
     opacity: 0;
     transform: translateX(-60px);
   }

   100% {
     opacity: 1;
     transform: translateX(0);
   }
 }

 @keyframes zoomIn {
   0% {
     transform: scale(0.8);
     opacity: 0;
   }

   100% {
     transform: scale(1);
     opacity: 1;
   }
 }

 /* === Classes === */
 .fade-in {
   opacity: 0;
   transform: translateY(30px);
   transition: all 1s ease;
 }

 .fade-in.animate {
   opacity: 1;
   transform: translateY(0);
 }

 .slide-up {
   opacity: 0;
   transform: translateY(60px);
   transition: all 1s ease;
 }

 .slide-up.animate {
   opacity: 1;
   transform: translateY(0);
 }

 .slide-right {
   opacity: 0;
   transform: translateX(-60px);
   transition: all 1s ease;
 }

 .slide-right.animate {
   opacity: 1;
   transform: translateX(0);
 }

 .zoom-in {
   opacity: 0;
   transform: scale(0.8);
   transition: all 0.8s ease;
 }

 .zoom-in.animate {
   opacity: 1;
   transform: scale(1);
 }

 html {
   scroll-behavior: smooth;
 }
@keyframes pulseCyan {
  0% {
    box-shadow:
      0 0 10px #00e5ff,
      0 0 30px #00e5ff,
      0 0 60px #00e5ff,
      0 0 100px #00e5ff;
  }
  100% {
    box-shadow:
      0 0 20px #00e5ff,
      0 0 40px #00e5ff,
      0 0 80px #00e5ff,
      0 0 120px #00e5ff;
  }
}

.purple-bar {
  animation: pulseCyan 2s ease-in-out infinite alternate;
}



 .angled-heading {
   display: inline-block;
   background: linear-gradient(90deg, #8000ff, #aa00ff);
   /* Green gradient */
   transform: skew(-12deg);
   padding: 8px 20px;
   margin: 6px;
 }

 .angled-heading span {
   display: inline-block;
   transform: skew(12deg);
   /* Reverses parent skew */
   font-family: 'Arial Black', sans-serif;
   text-transform: uppercase;
   font-size: 24px;
   color: black;
   letter-spacing: 1px;
 }

 .read-more-wrapper {
   margin-top: 30px;
 }

 .read-more-btn {
   background-color: #8000ff;
   color: white;
   padding: 12px 28px;
   border: none;
   border-radius: 6px;
   font-size: 14px;
   font-weight: bold;
   cursor: pointer;
   transition: background 0.3s ease, box-shadow 0.3s ease;
   box-shadow: 0 0 10px #8000ff88;
 }

 .read-more-btn:hover {
   background-color: #aa00ff;
   box-shadow: 0 0 15px #aa00ffcc;
 }

 a {
   text-decoration: none;
 }

 .blogs-section {
   background-color: #000000;
   color: #fff;
   padding: 80px 20px;
   text-align: center;
 }

 .section-title {
   font-size: 2.5rem;
   margin-bottom: 10px;
 }

 .section-title .highlight {
   color: #a855f7;
 }

 .section-subtitle {
   color: #aaa;
   margin-bottom: 50px;
   font-size: 1rem;
 }

 .articles-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
   gap: 30px;
 }

 .article-card {
   background-color: #1a1a1a;
   border-radius: 16px;
   overflow: hidden;
   position: relative;
   transition: transform 0.3s ease;
 }

 .article-card:hover {
   transform: translateY(-10px);
 }

 .article-card img {
   width: 100%;
   height: 180px;
   object-fit: cover;
 }

 .article-content {
   padding: 20px;
   text-align: left;
 }

 .article-content h3 {
   font-size: 1.2rem;
   margin: 10px 0;
   color: #fff;
 }

 .article-content p {
   font-size: 0.9rem;
   color: #ccc;
 }

 .tag {
   background-color: #a855f7;
   color: #fff;
   font-size: 0.7rem;
   padding: 4px 10px;
   border-radius: 999px;
   display: inline-block;
 }

 .tags {
   margin-top: 10px;
 }

 .tags span {
   background-color: #333;
   color: #bbb;
   font-size: 0.7rem;
   padding: 5px 8px;
   border-radius: 999px;
   margin-right: 5px;
 }

 .read-more {
   display: inline-block;
   margin-top: 15px;
   color: #a855f7;
   font-weight: bold;
   text-decoration: none;
 }

 .date-label {
   position: absolute;
   top: 10px;
   right: 10px;
   background-color: #fff;
   color: #000;
   font-weight: bold;
   padding: 6px 10px;
   font-size: 0.75rem;
   border-radius: 6px;
 }

 .highlight {
   color: #a855f7;
   /* Neon purple or your brand color */
   font-weight: bold;
 }


 @media (max-width: 768px) {
   .banner-header {
     padding: 60px 10px;
     background-attachment: scroll;
   }

   .banner-header .overlay {
     padding: 20px;
   }

   .banner-header h1 {
     font-size: 28px;
   }

   .banner-header p {
     font-size: 14px;
     max-width: 90%;
   }

   .about-section {
     padding: 0 15px;
     font-size: 15px;
     line-height: 1.7;
   }

   .angled-heading span {
     font-size: 18px;
     text-align: center;
   }

   .back-btn {
     padding: 10px 20px;
     font-size: 14px;
     margin: 30px auto;
   }

   ul {
     padding-left: 20px;
   }

   ul li {
     font-size: 14px;
     margin-bottom: 10px;
   }

   .footer-container {
     flex-direction: column;
     text-align: center;
   }

   .footer-column {
     min-width: 100%;
   }

   .footer-logo {
     font-size: 24px;
   }

   .footer-column ul li a {
     font-size: 13px;
   }

   .footer-bottom {
     font-size: 12px;
   }
 }

 body,
 html {
   overflow-x: hidden;
 }