        /* Hero Services Section */
        .services-hero {
            padding-top: 150px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .services-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .services-hero h1 span {
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .services-hero p {
            font-size: 1.3rem;
            color: var(--gray);
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .service-card {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: transform 0.4s, box-shadow 0.4s;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 25px;
            color: var(--primary);
            display: inline-block;
            width: 100px;
            height: 100px;
            line-height: 100px;
            border-radius: 50%;
            background: rgba(37, 99, 235, 0.1);
            transition: all 0.4s;
        }

        .service-card:hover .service-icon {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            transform: rotateY(180deg);
        }

        .service-card h3 {
            margin-bottom: 15px;
            font-size: 1.6rem;
        }

        .service-card p {
            color: var(--gray);
            margin-bottom: 25px;
        }

        .service-features {
            list-style: none;
            text-align: left;
            margin-bottom: 25px;
        }

        .service-features li {
            margin-bottom: 10px;
            color: var(--gray);
            display: flex;
            align-items: center;
        }

        .service-features li i {
            color: var(--success);
            margin-right: 10px;
        }

        /* Process Section */
        .process-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .process-step {
            flex: 1;
            text-align: center;
            position: relative;
        }

        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 60px;
            right: -50px;
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .process-number {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0 auto 25px;
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
        }

        .process-step h3 {
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .process-step p {
            color: var(--gray);
        }

        /* Pricing Section */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .pricing-card {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: transform 0.4s, box-shadow 0.4s;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }

        .pricing-card.featured {
            border: 2px solid var(--primary);
            transform: scale(1.05);
        }

        .pricing-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, var(--primary), var(--accent));
            color: white;
            padding: 5px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        /*best selers badge*/
        
 .badge {
  position: absolute;
  top: -14px;
  right: 14px;
  background: linear-gradient(135deg, #ff0048, #ff8c00);
  color: #fff;
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 0 12px rgba(255, 80, 0, 0.7);
  transform: rotate(3deg);
  animation: pulseGlow 2s infinite ease-in-out, shimmer 4s infinite linear;
  background-size: 200% 200%;
  transition: all 0.3s ease-in-out;
}

.badge:hover {
  transform: scale(1.1) rotate(0deg);
  box-shadow: 0 0 24px rgba(255, 80, 0, 1);
}

/* 🔥 Turbo pulse animation */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 80, 0, 0.6);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 80, 0, 1);
  }
}

/* ⚡ Subtle gradient shimmer (like a light sweep across the badge) */
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .pricing-header {
            margin-bottom: 30px;
        }

        .pricing-name {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

       .pricing-price {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }


.price-kes {
    font-size: 2rem;
    font-weight: 700;
}

.price-usd {
    font-size: 0.95rem;
    color: var(--gray);
}


        .pricing-period {
            color: var(--gray);
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }

        .pricing-features li {
            margin-bottom: 15px;
            color: var(--gray);
            display: flex;
            align-items: center;
        }

        .pricing-features li i {
            color: var(--success);
            margin-right: 10px;
        }

        /* -----------------------------------
   Animated Gradient Headings
----------------------------------- */

.pricing-subheading {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 60px 0 30px 0;
    letter-spacing: 0.5px;
    background: linear-gradient(
        -45deg,
        var(--primary),
        var(--secondary),
        var(--accent),
        var(--primary-dark)
    );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 8s ease infinite;
    position: relative;
}

/* Optional underline for structure */
.pricing-subheading::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    margin: 12px auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

/* Gradient Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


        /* Testimonials Section */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 30px;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .testimonial-card::before {
            content: "";
            font-size: 5rem;
            color: var(--primary);
            opacity: 0.2;
            position: absolute;
            top: 10px;
            left: 20px;
            font-family: Georgia, serif;
        }

        .testimonial-text {
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .author-info h4 {
            margin-bottom: 5px;
        }

        .author-info p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: var(--card-bg);
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
        }

        .faq-question i {
            transition: transform 0.3s;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
            color: var(--gray);
        }

        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 20px;
            padding: 80px 40px;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="rgba(255,255,255,0.05)"><circle cx="50" cy="50" r="2"/></svg>');
            background-size: 30px 30px;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: white;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button-light {
            background: white;
            color: var(--primary);
            border: none;
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .cta-button-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        /* Background Animation */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.1;
        }

        .code-line {
            position: absolute;
            font-family: monospace;
            color: var(--primary);
            font-size: 1rem;
            white-space: nowrap;
            animation: float 20s linear infinite;
        }

        @keyframes float {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100vw);
            }
        }

        /* Footer */
        footer {
            background-color: var(--header-bg);
            padding: 60px 0 30px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-col ul li a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--card-bg);
            border-radius: 50%;
            color: var(--light);
            transition: all 0.3s;
        }

        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 820px) {
            .hamburger {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background-color: var(--header-bg);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: right 0.3s;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu li {
                margin: 0 0 30px 0;
            }

            .services-hero h1 {
                font-size: 2.5rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .process-container {
                flex-direction: column;
                gap: 50px;
            }

            .process-step:not(:last-child)::after {
                display: none;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }
        }

        @media (max-width: 576px) {
            .services-hero h1 {
                font-size: 2rem;
            }
            .pricing-subheading {
                font-size: 1.2rem;
            }
               .services-grid{
            grid-template-columns: 1fr;
              gap: 20px;
              max-width: 100%;
              margin: 0 auto;
               }
           .service-card {
            background-color: var(--card-bg);
            max-width: 100%;
            margin: 0 auto;
            justify-content: center;
        }

            .services-hero p {
                font-size: 1rem;
            }

            section {
                padding: 60px 0;
            }
        }