 html {
   scroll-behavior: smooth;
 }

 .glass {
   background: rgba(255, 255, 255, 0.7);
   backdrop-filter: blur(6px);
 }

 /* ===============================
       EVURJAA Landing Page Custom CSS
       =============================== */
 /* nav {
   transition: background-color 0.3s ease, box-shadow 0.3s ease;
 }

 .navbar-transparent {
   background-color: transparent;
 }

 .navbar-scrolled {
   background-color: white;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }

 .nav-link {
   transition: color 0.3s ease;
 }

 /* Hover effect for desktop nav links */
 /* .nav-link:hover {
   color: #00ad34;
   /* neon green */


 /* Mobile drawer links hover */
 /* .mobile-link:hover {
   color: #007e11;
 } */

 /* --- Mobile Drawer Animation --- */
 /* #mobile-menu {
   left: -100%;
   transition: left 0.4s ease;
 } */

 /* #mobile-menu.open {
   left: 0;
 } */
 */

 /* === HERO SECTION === */
 .hero-section {
   position: relative;
   height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   overflow: hidden;
   background: #000;
 }

 .hero-bg {
   position: absolute;
   inset: 0;
   overflow: hidden;
 }

 .hero-img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transform: scale(1.1);
   filter: brightness(0.5) saturate(1.2);
   animation: zoomSlow 20s ease-in-out infinite alternate;
 }

 .hero-overlay {
   position: absolute;
   inset: 0;
   background: radial-gradient(circle at center, rgba(0, 255, 224, 0.15) 0%, rgba(0, 0, 0, 0.9) 100%);
 }

 /* === Content === */
 .hero-content {
   position: relative;
   z-index: 2;
   padding: 0 20px;
   animation: fadeIn 2s ease forwards;
 }

 .hero-title {
   font-size: 2.8rem;
   font-weight: 800;
   text-shadow: 0 0 15px #00ffe0, 0 0 25px #00bfa0;
   opacity: 0;
   animation: slideUp 1.5s ease forwards;
 }

 .hero-subtext {
   margin-top: 1rem;
   font-size: 1.25rem;
   color: #cceeea;
   max-width: 700px;
   margin-left: auto;
   margin-right: auto;
   opacity: 0;
   animation: fadeIn 2.5s ease 0.5s forwards;
 }

 /* === Buttons === */
 .hero-buttons {
   margin-top: 2rem;
   display: flex;
   justify-content: center;
   gap: 1rem;
   opacity: 0;
   animation: fadeIn 3s ease 1s forwards;
 }

 .btn-primary,
 .btn-secondary {
   padding: 12px 28px;
   border-radius: 8px;
   font-weight: 600;
   transition: all 0.3s ease;
   box-shadow: 0 0 10px rgba(0, 255, 224, 0.3);
 }

 .btn-primary {
   background: linear-gradient(90deg, #00ffe0, #00bfa0);
   color: #000;
 }

 .btn-primary:hover {
   box-shadow: 0 0 20px #00ffe0;
   transform: scale(1.05);
 }

 .btn-secondary {
   border: 1px solid #00ffe0;
   color: #00ffe0;
 }

 .btn-secondary:hover {
   background: rgba(0, 255, 224, 0.1);
   box-shadow: 0 0 15px #00bfa0;
   transform: scale(1.05);
 }

 /* === Scroll Indicator === */
 .scroll-indicator {
   position: absolute;
   bottom: 20px;
   left: 50%;
   transform: translateX(-50%);
   height: 40px;
   width: 25px;
   border: 2px solid #00ffe0;
   border-radius: 20px;
   display: flex;
   justify-content: center;
   align-items: flex-start;
 }

 .scroll-indicator span {
   display: block;
   width: 6px;
   height: 6px;
   background: #00ffe0;
   border-radius: 50%;
   margin-top: 6px;
   animation: scrollDown 2s infinite;
 }

 /* === Particles (subtle glow dots) === */
 .particles::before,
 .particles::after {
   content: '';
   position: absolute;
   inset: 0;
   background: radial-gradient(circle, rgba(0, 255, 224, 0.2) 2px, transparent 2px);
   background-size: 100px 100px;
   opacity: 0.2;
   animation: moveParticles 60s linear infinite;
 }

 /* === Animations === */
 @keyframes slideUp {
   from {
     transform: translateY(30px);
     opacity: 0;
   }

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

 @keyframes fadeIn {
   from {
     opacity: 0;
   }

   to {
     opacity: 1;
   }
 }

 @keyframes zoomSlow {
   from {
     transform: scale(1.1);
   }

   to {
     transform: scale(1.2);
   }
 }

 @keyframes scrollDown {
   0% {
     transform: translateY(0);
     opacity: 1;
   }

   50% {
     transform: translateY(10px);
     opacity: 0.5;
   }

   100% {
     transform: translateY(0);
     opacity: 1;
   }
 }

 @keyframes moveParticles {
   from {
     background-position: 0 0;
   }

   to {
     background-position: 1000px 1000px;
   }
 }

 @keyframes blob {

   0%,
   100% {
     transform: translate(0, 0) scale(1);
   }

   33% {
     transform: translate(30px, -50px) scale(1.1);
   }

   66% {
     transform: translate(-20px, 20px) scale(0.9);
   }
 }

 .animate-blob {
   animation: blob 12s infinite ease-in-out;
 }

 .animation-delay-4000 {
   animation-delay: 4s;
 }

 .animation-delay-7000 {
   animation-delay: 7s;
 }

 @keyframes slowZoom {
   from {
     transform: scale(1);
   }

   to {
     transform: scale(1.08);
   }
 }

 .animate-slow-zoom {
   animation: slowZoom 20s ease-in-out infinite alternate;
 }




 @keyframes blob {

   0%,
   100% {
     transform: translate(0, 0) scale(1);
   }

   33% {
     transform: translate(30px, -50px) scale(1.1);
   }

   66% {
     transform: translate(-20px, 20px) scale(0.9);
   }
 }

 .animate-blob {
   animation: blob 12s infinite ease-in-out;
 }

 .animation-delay-4000 {
   animation-delay: 4s;
 }

 /* Section */
 .ev-network-section {
   width: 100%;
   padding: 80px 20px;
   background: radial-gradient(circle at center, #08131b, #0b1c26, #142a38);
   color: #fff;
   text-align: center;
   overflow: hidden;
   position: relative;
   z-index: 1;
 }

 .network-content {
   max-width: 850px;
   margin: 0 auto 50px;
   position: relative;
   z-index: 2;
 }

 .ev-network-section h2 {
   font-size: 38px;
   color: #00fff2;
   text-shadow: 0 0 15px #00fff2, 0 0 25px #0099ff;
   margin-bottom: 10px;
   letter-spacing: 1px;
   animation: glowText 3s infinite alternate;
 }

 .ev-network-section p {
   color: #c9f9f5;
   font-size: 18px;
   opacity: 0.9;
   line-height: 1.6;
 }

 /* Map Container */
 .network-container {
   position: relative;
   width: 90%;
   max-width: 1000px;
   height: 520px;
   margin: 0 auto;
   border-radius: 25px;
   background: radial-gradient(circle at center, #0a1015, #000);
   overflow: hidden;
   box-shadow: 0 0 60px rgba(0, 255, 255, 0.25);
 }

 /* Map Background */
 .map-bg {
   position: absolute;
   width: 100%;
   height: 100%;
   object-fit: contain;
   opacity: 0.35;
   filter: brightness(0.9) contrast(1.25) saturate(1.1);
   z-index: 0;
   pointer-events: none;
   transition: opacity 1s ease;
 }

 /* City Dots */
 .city {
   position: absolute;
   width: 14px;
   height: 14px;
   background: radial-gradient(circle, #00ffff 0%, #007777 70%);
   border-radius: 50%;
   box-shadow: 0 0 15px #00ffff, 0 0 25px #00eaff inset;
   transform: translate(-50%, -50%) scale(0);
   cursor: pointer;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   z-index: 5;
 }


 /* Cities */
 .city {
   transform: translate(-50%, -50%) scale(0);
   opacity: 0;
   transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.5s ease;
 }

 /* Hover effect */
 .city:hover {
   transform: translate(-50%, -50%) scale(1.3);
   box-shadow: 0 0 25px #00ffcc, 0 0 40px #00ffff inset;
 }

 /* Connecting lines */
 .line {
   width: 0;
   /* start hidden */
   height: 2px;
   background: linear-gradient(90deg, #00ffff, transparent);
   transform-origin: 0 0;
   opacity: 0.8;
   box-shadow: 0 0 12px #00ffff;
   transition: width 0.8s ease-out, opacity 0.8s ease;
 }

 /* Pulse effect */
 .line.pulse {
   animation: pulseLine 2s infinite ease-in-out;
 }

 /* Scroll reveal */
 .network-container.in-view .city {
   transform: translate(-50%, -50%) scale(1);
   opacity: 1;
 }

 .network-container.in-view .line {
   width: var(--line-length);
   /* set dynamically in JS */
 }

 .city:hover {
   transform: translate(-50%, -50%) scale(1.4);
   box-shadow: 0 0 25px #00ffcc, 0 0 40px #00ffff inset;
 }

 /* Popup */
 .city-popup {
   position: absolute;
   background: rgba(0, 255, 255, 0.85);
   color: #000;
   font-weight: 600;
   padding: 6px 12px;
   border-radius: 8px;
   pointer-events: none;
   opacity: 0;
   transform: translate(-50%, -15px);
   transition: opacity 0.4s ease, transform 0.4s ease;
   white-space: nowrap;
   box-shadow: 0 0 10px #00ffff, 0 0 25px #00ffff inset;
   z-index: 10;
 }

 /* Connecting Lines */
 .line {
   position: absolute;
   height: 2px;
   background: linear-gradient(90deg, #00ffff, transparent);
   transform-origin: 0 0;
   opacity: 0.8;
   box-shadow: 0 0 12px #00ffff;
   animation: pulseLine 2s infinite ease-in-out;
   z-index: 3;
 }

 /* City Coordinates */
 .city.indore {
   top: 52%;
   left: 37%;
 }

 .city.ujjain {
   top: 50%;
   left: 35%;
 }

 .city.bhopal {
   top: 48%;
   left: 41%;
 }

 .city.chhatarpur {
   top: 43%;
   left: 45%;
 }

 .city.gwalior {
   top: 38%;
   left: 40%;
 }

 .city.lucknow {
   top: 36%;
   left: 47%;
 }

 .city.sitapur {
   top: 34%;
   left: 45%;
 }

 .city.jabalpur {
   top: 50%;
   left: 46%;
 }

 /* Animations */
 @keyframes cityReveal {
   0% {
     opacity: 0;
     transform: translate(-50%, -50%) scale(0);
   }

   100% {
     opacity: 1;
     transform: translate(-50%, -50%) scale(1);
   }
 }

 @keyframes pulseLine {

   0%,
   100% {
     opacity: 0.5;
     box-shadow: 0 0 10px #00ffff;
   }

   50% {
     opacity: 1;
     box-shadow: 0 0 20px #00ffff, 0 0 30px #00eaff;
   }
 }

 @keyframes glowText {
   0% {
     text-shadow: 0 0 10px #00ffff, 0 0 20px #0077ff;
   }

   100% {
     text-shadow: 0 0 25px #00ffff, 0 0 40px #00eaff;
   }
 }

 /* Responsive */
 @media (max-width: 768px) {
   .ev-network-section h2 {
     font-size: 28px;
   }

   .network-container {
     height: 400px;
   }

   .city {
     width: 10px;
     height: 10px;
   }
 }



 /* .city {
    position: absolute;
    width: 18px;
    height: 18px;
    background: #00ffe0;
    border-radius: 50%;
    box-shadow: 0 0 20px #00ffe0, 0 0 40px #00bfa0;
    animation: pulse 2s infinite;
    cursor: pointer;
    z-index: 2;
  } */

 /* City name popup */

 /* .city-popup {
    position: absolute;
   background: rgba(0, 255, 224, 0.15);
   color: #00ffe0;
   padding: 6px 10px;
   border: 1px solid #00ffe0;
   border-radius: 8px;
   text-shadow: 0 0 5px #00ffe0;
   font-size: 14px;
   font-weight: bold;
   opacity: 0;
   pointer-events: none;
   transition: opacity 0.5s;
   z-index: 3;
 }

 .city:hover {
   transform: scale(1.3);
 } */


 /* Lines */
 /* .line {
   position: absolute;
   height: 3px;
   background: linear-gradient(90deg, #00ffe0, #00bfa0);
   transform-origin: 0 0;
   animation: glowLine 2s infinite alternate;
   border-radius: 2px;
   z-index: 1;
 } */

 /* @keyframes pulse {

   0%,
   100% {
     transform: scale(1);
     opacity: 1;
   }

   50% {
     transform: scale(1.4);
     opacity: 0.6;
   }
 }

 @keyframes glowLine {
   0% {
     box-shadow: 0 0 5px #00ffe0;
   }

   100% {
     box-shadow: 0 0 20px #00ffe0;
   }
 } */

 /* ================= CREATIVE PRODUCTS ================= */
 #products {
   position: relative;
   overflow: hidden;
 }

 .product-card {
   position: relative;
   background: rgba(255, 255, 255, 0.9);
   backdrop-filter: blur(8px);
   border-radius: 2rem;
   padding: 2rem;
   box-shadow: 0 15px 35px rgba(34, 197, 94, 0.2);
   transition: transform 0.5s ease, box-shadow 0.5s ease;
 }

 .product-card:hover {
   transform: translateY(-12px) scale(1.05);
   box-shadow: 0 25px 50px rgba(34, 197, 94, 0.35), 0 0 20px rgba(34, 197, 94, 0.2) inset;
 }

 .product-card svg {
   transition: transform 0.5s ease, filter 0.5s ease;
 }

 .product-card:hover svg {
   transform: scale(1.3) rotate(5deg);
   filter: drop-shadow(0 0 15px #22c55e);
 }

 #products h3 {
   position: relative;
   z-index: 2;
   color: #065f46;
 }

 #products::before {
   content: '';
   position: absolute;
   inset: -50%;
   background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 80%);
   pointer-events: none;
   z-index: 0;
   animation: pulseBG 6s infinite alternate;
 }

 @keyframes pulseBG {
   0% {
     opacity: 0.05;
     transform: scale(1);
   }

   100% {
     opacity: 0.1;
     transform: scale(1.05);
   }
 }

 .network-container .city {
   background-color: #22c55e;
   /* bright green */
   box-shadow: 0 0 10px #22c55e66;
 }

 #full-hero {
   background: linear-gradient(180deg, #f0fff4 0%, #d9f2e6 100%);
   color: #1f2937;
   /* dark text instead of white */
 }

 .glow-text {
   text-shadow: 0 0 10px #00fff2, 0 0 25px #0099ff, 0 0 40px #22eaff;
   animation: glowText 3s infinite alternate;
 }

 @keyframes glowText {
   0% {
     text-shadow: 0 0 10px #00fff2, 0 0 25px #0099ff;
   }

   100% {
     text-shadow: 0 0 25px #00fff2, 0 0 40px #22eaff;
   }
 }

 .product-card {
   backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .product-card:hover {
   box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
 }

 .network-container img {
   border-radius: 2rem;
   box-shadow: 0 0 50px rgba(0, 255, 255, 0.2);
 }

 /* Responsive */
 @media (max-width: 768px) {
   .products-wrapper {
     grid-template-columns: 1fr;
   }

   .network-container img {
     height: 300px;
   }
 }

 .youtube-showcase-section {
   width: 100%;
   padding: 80px 20px;
   background: transparent;
   color: #333;
   font-family: 'Arial', sans-serif;
   text-align: center;
   position: relative;
 }

 .youtube-showcase-section .section-header h2 {
   font-size: 40px;
   font-weight: bolder;
   font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
   color: #003129;
   margin-bottom: 10px;
 }

 .youtube-showcase-section .section-header p {
   font-size: 18px;
   color: #4b4b4b;
 }

 /* Grid of Video Cards */
 .video-cards-grid {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 30px;
   margin-top: 50px;
 }

 /* Individual Video Card */
 .video-card {
   background: linear-gradient(135deg, #00ffe194, #00bf9f88, #90f5e47e);
   border-radius: 20px;
   box-shadow: 0 15px 25px rgba(0, 191, 160, 0.3);
   overflow: hidden;
   transition: transform 0.4s, box-shadow 0.4s;
   max-width: 320px;
   width: 100%;
 }

 .video-card:hover {
   transform: translateY(-10px) scale(1.05);
   box-shadow: 0 20px 40px rgba(0, 191, 160, 0.5);
 }

 /* Video Frame */
 .video-frame {
   border-radius: 15px;
   overflow: hidden;
 }

 .video-frame iframe {
   width: 100%;
   height: 180px;
   border: none;
 }

 /* Video Content */
 .video-content {
   padding: 15px;
   text-align: left;
 }

 .video-content h3 {
   color: #004d40;
   font-size: 20px;
   margin-bottom: 5px;
   transition: color 0.3s;
 }

 .video-card:hover .video-content h3 {
   color: #013a24;
 }

 .video-content p {
   font-size: 14px;
   color: #000000;
 }

 /* Responsive */
 @media (max-width: 1024px) {
   .video-cards-grid {
     gap: 20px;
   }
 }

 @media (max-width: 768px) {
   .video-cards-grid {
     flex-direction: column;
     gap: 25px;
   }

   .video-content {
     text-align: center;
   }
 }


 /* join us Section Styling */
 .join-section {
   background: radial-gradient(circle at center, #0a0a0a 0%, #000 100%);
   color: #e0e0e0;
   padding: 80px 10%;
   font-family: "Poppins", sans-serif;
   position: relative;
   overflow: hidden;
 }

 .join-section::before {
   content: "";
   position: absolute;
   top: -100px;
   left: -100px;
   width: 300px;
   height: 300px;
   background: rgba(0, 255, 170, 0.2);
   filter: blur(150px);
 }

 .join-section::after {
   content: "";
   position: absolute;
   bottom: -100px;
   right: -100px;
   width: 300px;
   height: 300px;
   background: rgba(0, 200, 255, 0.2);
   filter: blur(150px);
 }

 .section-title {
   text-align: center;
   font-size: 2.8rem;
   color: #00ffaa;
   margin-bottom: 10px;
 }

 .section-subtitle {
   text-align: center;
   font-size: 1.2rem;
   color: #bbb;
   margin-bottom: 40px;
 }

 .section-subtitle span {
   color: #00e0ff;
   font-weight: 600;
 }

 /* Calculator */
 .revenue-calculator {
   background: rgba(255, 255, 255, 0.05);
   border: 1px solid rgba(0, 255, 170, 0.3);
   padding: 30px;
   border-radius: 20px;
   margin-bottom: 60px;
   box-shadow: 0 0 20px rgba(0, 255, 170, 0.1);
 }

 .calc-box {
   display: flex;
   flex-basis: 1;
   flex-direction: row;
   gap: 20px;
 }

 .calc-box label {
   font-size: 1rem;
   font-weight: 500;
   color: #ccc;
 }

 .calc-box select,
 .calc-box input[type="range"] {
   width: 100%;
   background: #111;
   border: 1px solid rgba(0, 255, 170, 0.3);
   color: #eee;
   padding: 10px 15px;
   border-radius: 10px;
   outline: none;
   font-size: 1rem;
 }

 .calc-box input[type="range"] {
   accent-color: #00ffaa;
 }

 .revenue-output {
   background: #0f0f0f;
   flex-basis: 2;
   border: 1px solid rgba(0, 255, 170, 0.4);
   border-radius: 15px;
   text-align: center;
   padding: 20px;
 }

 #revenueValue {
   font-size: 2rem;
   color: #00ffaa;
   font-weight: 700;
   margin-top: 5px;
 }

 /* Why Join Us */
 .why-join {
   text-align: center;
   margin-top: 80px;
   position: relative;
 }

 .why-join h2 {
   font-size: 2.2rem;
   color: #00ffaa;
   margin-bottom: 15px;
   text-shadow: 0 0 15px rgba(0, 255, 170, 0.3);
 }

 .why-intro {
   color: #bbb;
   font-size: 1.1rem;
   max-width: 700px;
   margin: 0 auto 50px auto;
   line-height: 1.6;
 }

 .why-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 35px;
   justify-content: center;
   align-items: stretch;
 }

 .why-item {
   background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.95));
   padding: 35px 25px;
   border-radius: 20px;
   border: 1px solid rgba(0, 255, 170, 0.25);
   transition: all 0.3s ease;
   box-shadow: 0 0 15px rgba(0, 255, 170, 0.05);
   position: relative;
   overflow: hidden;
 }

 .why-item:hover {
   transform: translateY(-8px);
   box-shadow: 0 0 25px rgba(0, 255, 170, 0.3);
   border-color: rgba(0, 255, 170, 0.5);
 }

 .icon-glow {
   width: 70px;
   height: 70px;
   margin: 0 auto 20px;
   border-radius: 50%;
   background: radial-gradient(circle, rgba(0, 255, 170, 0.3), transparent 70%);
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.4s ease;
 }

 .why-item:hover .icon-glow {
   background: radial-gradient(circle, rgba(0, 255, 255, 0.5), transparent 70%);
 }

 .why-item i {
   font-size: 2rem;
   color: #00ffaa;
   transition: transform 0.3s ease;
 }

 .why-item:hover i {
   transform: scale(1.2);
   color: #00e0ff;
 }

 .why-item h3 {
   color: #fff;
   margin-bottom: 10px;
   font-weight: 600;
   font-size: 1.2rem;
 }

 .why-item p {
   color: #bbb;
   font-size: 0.95rem;
   line-height: 1.6;
 }

 /* Responsive */
 @media (max-width: 768px) {
   .why-grid {
     gap: 25px;
   }
 }



 /* ----------Join Form------------------ */
 .join-form {
   margin-top: 60px;
   background: rgba(255, 255, 255, 0.05);
   border-radius: 15px;
   padding: 40px;
   border: 1px solid rgba(0, 255, 170, 0.3);
 }

 .form-group {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }

 .join-form input,
 .join-form textarea {
   width: 100%;
   background: #111;
   border: 1px solid rgba(0, 255, 170, 0.3);
   color: #eee;
   padding: 10px 15px;
   border-radius: 8px;
   margin-bottom: 15px;
   outline: none;
 }

 .join-form button {
   background: linear-gradient(90deg, #00ffaa, #00e0ff);
   border: none;
   color: #000;
   font-weight: 700;
   padding: 12px 25px;
   border-radius: 10px;
   cursor: pointer;
   transition: all 0.3s ease;
 }

 .join-form button:hover {
   transform: scale(1.05);
   box-shadow: 0 0 20px #00ffaa;
 }

 /* Responsive */
 @media (max-width: 768px) {
   .form-group {
     flex-direction: column;
   }
 }

 .products-section {
   background: radial-gradient(circle at center, #0a0a0a 0%, #000 100%);
   color: #e0e0e0;
   padding: 100px 10%;
   font-family: "Poppins", sans-serif;
   position: relative;
   overflow: hidden;
 }

 .products-section::before {
   content: "";
   position: absolute;
   top: -100px;
   left: -100px;
   width: 300px;
   height: 300px;
   background: rgba(0, 255, 170, 0.2);
   filter: blur(150px);
 }

 .products-section::after {
   content: "";
   position: absolute;
   bottom: -100px;
   right: -100px;
   width: 300px;
   height: 300px;
   background: rgba(0, 200, 255, 0.2);
   filter: blur(150px);
 }

 .section-title {
   text-align: center;
   font-size: 2.8rem;
   color: #00ffaa;
   margin-bottom: 10px;
 }

 .section-subtitle {
   text-align: center;
   font-size: 1.2rem;
   color: #bbb;
   margin-bottom: 60px;
 }

 /* ------------------Product Grid---------- */
 .product-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 35px;
   margin-bottom: 80px;
 }

 .product-card {
   background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.95));
   border: 1px solid rgba(0, 255, 170, 0.25);
   padding: 35px 25px;
   border-radius: 20px;
   text-align: center;
   transition: all 0.3s ease;
   box-shadow: 0 0 15px rgba(0, 255, 170, 0.05);
 }

 .product-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 0 25px rgba(0, 255, 170, 0.3);
   border-color: rgba(0, 255, 170, 0.5);
 }

 .icon-glow {
   width: 80px;
   height: 80px;
   margin: 0 auto 20px;
   border-radius: 50%;
   background: radial-gradient(circle, rgba(0, 255, 170, 0.3), transparent 70%);
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .icon-glow i {
   font-size: 2rem;
   color: #00ffaa;
 }

 .product-card h3 {
   color: #fff;
   margin-bottom: 10px;
   font-size: 1.3rem;
 }

 .product-card p {
   color: #bbb;
   font-size: 0.95rem;
   line-height: 1.6;
 }

 /* Coming Soon */
 .coming-soon {
   text-align: center;
   margin-top: 40px;
   margin-bottom: 80px;
 }

 .coming-soon h2 {
   font-size: 2rem;
   color: #00e0ff;
   margin-bottom: 25px;
 }

 .coming-card {
   display: inline-block;
   background: rgba(255, 255, 255, 0.05);
   border: 1px solid rgba(0, 255, 255, 0.3);
   padding: 35px 30px;
   border-radius: 20px;
   max-width: 350px;
   transition: all 0.3s ease;
 }

 .coming-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
 }

 .coming-badge {
   display: inline-block;
   margin-top: 15px;
   background: rgba(0, 255, 255, 0.2);
   color: #00e0ff;
   font-weight: 600;
   padding: 5px 12px;
   border-radius: 8px;
 }

 /* Service Section */
 /* .service-section {
  text-align: center;
}
.service-section h2 {
  font-size: 2rem;
  color: #00ffaa;
  margin-bottom: 40px;
}
.service-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.95));
  border: 1px solid rgba(0, 255, 170, 0.25);
  padding: 40px 30px;
  border-radius: 25px;
  box-shadow: 0 0 20px rgba(0, 255, 170, 0.1);
}
.icon-glow.large {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0, 255, 170, 0.3), transparent 70%);
}
.icon-glow.large i {
  font-size: 3rem;
  color: #00ffaa;
}
.service-content {
  max-width: 600px;
  text-align: left;
}
.service-content h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.6rem;
}
.service-content p {
  color: #bbb;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.cta-btn {
  background: linear-gradient(90deg, #00ffaa, #00e0ff);
  border: none;
  color: #000;
  font-weight: 700;
  padding: 12px 25px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00ffaa;
}

/* Responsive */
 @media (max-width: 768px) {
   .service-card {
     flex-direction: column;
     text-align: center;
   }

   .service-content {
     text-align: center;
   }
 }

 */

 /* --------product page styling -------*/
 :root {
   --green: #00b67a;
   --light-green: #b2ffcb;
   --dark: #1a1a1a;
   --bg: #f9fffb;
 }

 .products-section {
   background: var(--bg);
   color: var(--dark);
   padding: 80px 10%;
   font-family: "Poppins", sans-serif;
   position: relative;
 }

 .section-title {
   text-align: center;
   font-size: 2.6rem;
   color: var(--green);
   margin-bottom: 10px;
 }

 .section-subtitle {
   text-align: center;
   font-size: 1.1rem;
   color: #555;
   margin-bottom: 60px;
 }

 /* Product Grid */
 .product-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 35px;
   margin-bottom: 80px;
 }

 .product-card {
   background: #fff;
   border-radius: 20px;
   overflow: hidden;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
   transition: all 0.35s ease;
   cursor: pointer;
 }

 .product-card img {
   width: 100%;
   height: 200px;
   object-fit: cover;
   transition: transform 0.5s ease;
 }

 .product-card:hover img {
   transform: scale(1.08);
 }

 .product-info {
   padding: 25px;
 }

 .product-info h3 {
   color: var(--dark);
   margin-bottom: 10px;
 }

 .product-info p {
   color: #555;
   font-size: 0.95rem;
   line-height: 1.6;
 }

 /* Coming Soon */
 .coming-soon {
   text-align: center;
   margin-bottom: 100px;
 }

 .coming-soon h2 {
   font-size: 2rem;
   color: var(--green);
   margin-bottom: 25px;
 }

 .coming-card {
   display: inline-block;
   background: linear-gradient(145deg, #ffffff, #eafff4);
   border-radius: 20px;
   overflow: hidden;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
   transition: all 0.3s ease;
   max-width: 380px;
 }

 .coming-card img {
   width: 100%;
   height: 220px;
   object-fit: cover;
 }

 .coming-info {
   padding: 25px;
 }

 .coming-badge {
   display: inline-block;
   background: var(--green);
   color: #fff;
   padding: 6px 14px;
   border-radius: 8px;
   font-size: 0.85rem;
   margin-top: 12px;
 }

 /* Service Section */
 .service-section {
   text-align: center;
 }

 .service-section h2 {
   font-size: 2rem;
   color: var(--green);
   margin-bottom: 40px;
 }

 .service-card {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: center;
   gap: 40px;
   background: linear-gradient(145deg, #ffffff, #ecfff4);
   border-radius: 25px;
   box-shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
   padding: 40px 30px;
 }

 .service-card img {
   width: 350px;
   border-radius: 15px;
   object-fit: cover;
 }

 .service-content {
   max-width: 500px;
   text-align: left;
 }

 .service-content h3 {
   color: var(--dark);
   margin-bottom: 10px;
   font-size: 1.5rem;
 }

 .service-content p {
   color: #555;
   font-size: 1rem;
   line-height: 1.7;
   margin-bottom: 20px;
 }

 .cta-btn {
   background: var(--green);
   border: none;
   color: #fff;
   font-weight: 700;
   padding: 12px 25px;
   border-radius: 8px;
   cursor: pointer;
   transition: all 0.3s ease;
 }

 .cta-btn:hover {
   background: #009e6d;
   transform: translateY(-3px);
 }

 /* Responsive */
 @media (max-width: 768px) {
   .service-card {
     flex-direction: column;
     text-align: center;
   }

   .service-content {
     text-align: center;
   }

   .service-card img {
     width: 100%;
   }
 }