:root {
            --primary-dark: #0a0f2b;
            --secondary-dark: #1a1f3a;
            --neon-green: #39ff14;
            --neon-green-glow: 0 0 20px #39ff14, 0 0 40px #39ff14;
            --gradient-bg: linear-gradient(135deg, #0a0f2b 0%, #1a1f3a 50%, #0a0f2b 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--gradient-bg);
            color: #ffffff;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Navigation */
        .navbar {
            background: rgba(10, 15, 43, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(57, 255, 20, 0.2);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            background: rgba(10, 15, 43, 0.98);
        }
        .navbar-brand{
            color:blue;
        }
        .navbar-brand:hover{
            color: var(--neon-green) !important;

        }

        .nav-link {
            color: #ffffff !important;
            font-weight: 500;
            margin: 0 0.5rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: var(--neon-green);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--neon-green) !important;
            text-shadow: var(--neon-green-glow);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(57, 255, 20, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(57, 255, 20, 0.1) 0%, transparent 50%);
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-20px) rotate(120deg); }
            66% { transform: translateY(-10px) rotate(240deg); }
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff, var(--neon-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            animation: slideInUp 1s ease-out;
        }

        .hero-content .lead {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
            animation: slideInUp 1s ease-out 0.2s both;
        }

        
     .btn-neon {
    background: linear-gradient(135deg, #39ff14, #22c55e);
    color: #000;
    border: none;
    border-radius: 14px;
    padding: 14px 32px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(57,255,20,0.25);
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.5),
        transparent
    );
    transition: 0.6s;
}

.btn-neon:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 0 15px rgba(57,255,20,0.6),
        0 0 35px rgba(57,255,20,0.35);
    color: #000;
}

.btn-neon:hover::before {
    left: 120%;
}

.btn-neon:active {
    transform: scale(0.96);
}
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, #ffffff, var(--neon-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .feature-card {
            background: rgba(26, 31, 58, 0.8);
            border: 1px solid rgba(57, 255, 20, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--neon-green), transparent);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--neon-green-glow);
            border-color: var(--neon-green);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--neon-green), #2ecc71);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: #000;
            box-shadow: 0 10px 30px rgba(57, 255, 20, 0.3);
        }

        /* Pricing Cards */
        .pricing-card {
            background: rgba(26, 31, 58, 0.8);
            border: 2px solid rgba(57, 255, 20, 0.2);
            border-radius: 25px;
            padding: 3rem 2rem;
            transition: all 0.4s ease;
            backdrop-filter: blur(15px);
            position: relative;
            max-width: 400px;
            margin: 0 auto;
        }

        .pricing-card.popular {
            border-color: var(--neon-green);
            transform: scale(1.05);
            box-shadow: var(--neon-green-glow);
        }

        .pricing-card:hover {
            transform: translateY(-15px) scale(1.02);
            border-color: var(--neon-green);
            box-shadow: var(--neon-green-glow), 0 30px 60px rgba(57, 255, 20, 0.3);
        }

        .price {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--neon-green);
            margin: 1rem 0;
        }

        /* Comparison Table */
        .comparison-table {
            background: rgba(26, 31, 58, 0.6);
            border-radius: 20px;
            overflow: hidden;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(57, 255, 20, 0.2);
        }

        .comparison-table th {
            background: linear-gradient(135deg, var(--neon-green), #2ecc71);
            color: #000;
            font-weight: 600;
            padding: 1.5rem;
        }

        .comparison-table td {
            padding: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            vertical-align: middle;
        }

        .feature-check {
            color: var(--neon-green);
            font-size: 1.5rem;
        }

        /* Reviews Carousel */
        .review-card {
            background: rgba(10, 15, 43, 0.8);
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid rgba(57, 255, 20, 0.2);
            backdrop-filter: blur(10px);
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .stars {
            color: var(--neon-green);
            font-size: 1.2rem;
        }

        /* FAQ Accordion */
        .faq-item {
            border: 1px solid rgba(57, 255, 20, 0.2);
            border-radius: 15px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-header {
            background: rgba(26, 31, 58, 0.8);
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-header:hover {
            background: rgba(57, 255, 20, 0.1);
            border-left: 4px solid var(--neon-green);
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            background: rgba(26, 31, 58, 0.6);
        }

        .faq-content.show {
            max-height: 500px;
            padding: 1.5rem 2rem;
        }

        /* Animations */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Footer */
        .footer {
            background: rgba(10, 15, 43, 0.95);
            border-top: 1px solid rgba(57, 255, 20, 0.2);
            padding: 3rem 0 1.5rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .pricing-card {
                margin-bottom: 2rem;
            }
        }

/* Product Card */
.product-card {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid rgba(57,255,20,0.1);
}

/* Hover Effect */
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(57,255,20,0.3);
}

/* Image */
.card-img-top {
    height: 220px;        /* adjust if needed */
    width: 100%;
    object-fit: contain;  /* 👈 IMPORTANT (no cutting) */
    background: #0f172a;  /* fills empty space nicely */
    padding: 10px;        /* gives spacing */
}

/* Card Body */
.card-body {
    padding: 15px;
}

/* Product Name */
.card-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Price */
.price {
    color: #39ff14;
    font-size: 1.3rem;
    font-weight: bold;
}

/* Product Detail Page */

.product-detail-card {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 30px rgba(0,0,0,0.4);
}

.product-detail-img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    background: #111827;
    padding: 20px;
    border-radius: 15px;
}

.product-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
}

.product-desc {
    color: #9ca3af;
    margin: 15px 0;
}

.product-price {
    color: #39ff14;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.product-trust {
    color: #39ff14;
    font-size: 0.9rem;
}

/* New css for customer modal*/
/* Overlay Background */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 40, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Modal Box */
.modal-box {
  background: linear-gradient(145deg, #0f172a, #020617);
  padding: 30px;
  border-radius: 20px;
  width: 350px;
  box-shadow: 0 0 25px rgba(0,255,100,0.2);
  animation: popUp 0.3s ease;
  text-align: center;
  color: white;
  position: relative;
}

/* Animation */
@keyframes popUp {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-box h2 {
  margin-bottom: 5px;
}

.subtitle {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 20px;
}

/* Floating Input */
.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group input {
  width: 100%;
  padding: 12px;
  border: none;
  outline: none;
  border-radius: 10px;
  background: #020617;
  color: white;
  border: 1px solid #1e293b;
}

.input-group label {
  position: absolute;
  left: 12px;
  top: 12px;
  font-size: 12px;
  color: #94a3b8;
  pointer-events: none;
  transition: 0.3s;
}

.input-group input:focus + label,
.input-group input:valid + label {
  top: -8px;
  left: 8px;
  font-size: 10px;
  background: #020617;
  padding: 0 5px;
  color: #22c55e;
}

/* Button */
.pay-btn {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.pay-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #22c55e;
}

/* Secure Text */
.secure-text {
  font-size: 12px;
  margin-top: 10px;
  color: #94a3b8;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 20px;
}

/* Center full page */
.center-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Card style */
.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    width: 400px;
    backdrop-filter: blur(10px);
}

/* Heading */
.card h1 {
    margin-bottom: 15px;
}

/* Expiry text */
.expiry {
    font-size: 14px;
    opacity: 0.8;
    margin: 10px 0;
}

/* Button */
.close_btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background: #00ff88;
    color: black;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}
